Home
last modified time | relevance | path

Searched defs:Thread (Results 1 – 25 of 1378) sorted by relevance

12345678910>>...56

/aosp_15_r20/external/starlark-go/starlark/
H A Dlibrary.go164 func all(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) {
181 func any(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) {
198 func bool_(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) {
207 func bytes_(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) {
246 func chr(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) {
267 func dict(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) {
279 func dir(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) {
300 func enumerate(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) {
336 func fail(thread *Thread, b *Builtin, args Tuple, kwargs []Tuple) (Value, error) {
357 func float(thread *Thread, b *Builtin, args Tuple, kwargs []Tuple) (Value, error) {
[all …]
H A Deval.go30 type Thread struct { struct
32 Name string
35 stack []*frame
40 Print func(thread *Thread, msg string)
48 Load func(thread *Thread, module string) (StringDict, error)
51 steps, maxSteps uint64
54 cancelReason *string
58 locals map[string]interface{}
61 proftime time.Duration
70 func (thread *Thread) ExecutionSteps() uint64 {
[all …]
/aosp_15_r20/external/llvm-libc/src/__support/threads/
H A Dthread.h144 struct Thread { struct
151 ThreadAttributes *attrib; argument
153 constexpr Thread() : attrib(nullptr) {} in Thread() argument
154 constexpr Thread(ThreadAttributes *attr) : attrib(attr) {} in Thread() argument
160 ThreadRunner runner; argument
170 ThreadRunner runner; argument
177 ThreadReturnValue retval; in join() argument
187 ThreadReturnValue retval; in join() argument
/aosp_15_r20/external/pigweed/pw_thread/
H A Dthread_facade_test.cc28 TEST(Thread, DefaultIds) { in TEST() argument
34 TEST(Thread, DefaultConstructedThreadIsNotJoinable) { in TEST() argument
39 TEST(Thread, JoinWaitsForLambdaCompletion) { in TEST() argument
51 TEST(Thread, DetachAllowsThreadToRunAfterExitingScope) { in TEST() argument
74 TEST(Thread, SwapWithoutExecution) { in TEST() argument
82 TEST(Thread, SwapWithOneExecuting) { in TEST() argument
103 TEST(Thread, SwapWithTwoExecuting) { in TEST() argument
130 TEST(Thread, MoveOperator) { in TEST() argument
162 TEST(Thread, ThreadCore) { in TEST() argument
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/pal/hermit/
H A Dthread.rs14 pub struct Thread { struct
18 unsafe impl Send for Thread {} argument
19 unsafe impl Sync for Thread {} implementation
23 impl Thread { impl
28 ) -> io::Result<Thread> { in new_with_coreid()
58 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/pal/hermit/
H A Dthread.rs14 pub struct Thread { struct
18 unsafe impl Send for Thread {} implementation
19 unsafe impl Sync for Thread {} implementation
23 impl Thread { implementation
28 ) -> io::Result<Thread> { in new_with_coreid()
58 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/sys/pal/hermit/
H A Dthread.rs13 pub struct Thread { struct
17 unsafe impl Send for Thread {} implementation
18 unsafe impl Sync for Thread {} implementation
22 impl Thread { implementation
27 ) -> io::Result<Thread> { in new_with_coreid()
57 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/pal/hermit/
H A Dthread.rs13 pub struct Thread { struct
17 unsafe impl Send for Thread {} argument
18 unsafe impl Sync for Thread {} implementation
22 impl Thread { impl
27 ) -> io::Result<Thread> { in new_with_coreid()
57 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/pal/hermit/
H A Dthread.rs13 pub struct Thread { struct
17 unsafe impl Send for Thread {} argument
18 unsafe impl Sync for Thread {} implementation
22 impl Thread { implementation
27 ) -> io::Result<Thread> { in new_with_coreid()
57 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/pal/itron/
H A Dthread.rs21 pub struct Thread { struct
22 p_inner: NonNull<ThreadInner>, argument
28 // Safety: There's nothing in `Thread` that ties it to the original creator. It argument
30 unsafe impl Send for Thread {} implementation
32 unsafe impl Sync for Thread {} implementation
90 impl Thread { implementation
94 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
272 impl Drop for Thread { implementation
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/pal/itron/
H A Dthread.rs21 pub struct Thread { struct
22 p_inner: NonNull<ThreadInner>, argument
28 // Safety: There's nothing in `Thread` that ties it to the original creator. It argument
30 unsafe impl Send for Thread {} implementation
32 unsafe impl Sync for Thread {} implementation
90 impl Thread { impl
94 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
272 impl Drop for Thread { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/pal/itron/
H A Dthread.rs21 pub struct Thread { struct
22 p_inner: NonNull<ThreadInner>, argument
28 // Safety: There's nothing in `Thread` that ties it to the original creator. It argument
30 unsafe impl Send for Thread {} implementation
32 unsafe impl Sync for Thread {} implementation
90 impl Thread { impl
94 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
272 impl Drop for Thread { implementation
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/pal/itron/
H A Dthread.rs21 pub struct Thread { struct
22 p_inner: NonNull<ThreadInner>, argument
28 // Safety: There's nothing in `Thread` that ties it to the original creator. It argument
30 unsafe impl Send for Thread {} implementation
32 unsafe impl Sync for Thread {} implementation
90 impl Thread { impl
94 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
272 impl Drop for Thread { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/sys/pal/itron/
H A Dthread.rs21 pub struct Thread { struct
22 p_inner: NonNull<ThreadInner>, argument
28 // Safety: There's nothing in `Thread` that ties it to the original creator. It argument
30 unsafe impl Send for Thread {} implementation
32 unsafe impl Sync for Thread {} implementation
90 impl Thread { implementation
94 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
272 impl Drop for Thread { implementation
/aosp_15_r20/libcore/ojluni/annotations/sdk/nullability/java/lang/
H A DThread.annotated.java38 public class Thread implements java.lang.Runnable { class
40 public Thread() { throw new RuntimeException("Stub!"); } in Thread() method in Thread
42 public Thread(@libcore.util.Nullable java.lang.Runnable target) { throw new RuntimeException("Stub!… in Thread() method in Thread
44 public Thread(@libcore.util.Nullable java.lang.ThreadGroup group, @libcore.util.Nullable java.lang.… in Thread() method in Thread
46 public Thread(@libcore.util.NonNull java.lang.String name) { throw new RuntimeException("Stub!"); } in Thread() method in Thread
48 public Thread(@libcore.util.Nullable java.lang.ThreadGroup group, @libcore.util.NonNull java.lang.S… in Thread() method in Thread
50 public Thread(@libcore.util.Nullable java.lang.Runnable target, @libcore.util.NonNull java.lang.Str… in Thread() method in Thread
52 public Thread(@libcore.util.Nullable java.lang.ThreadGroup group, @libcore.util.Nullable java.lang.… in Thread() method in Thread
54 public Thread(@libcore.util.Nullable java.lang.ThreadGroup group, @libcore.util.Nullable java.lang.… in Thread() method in Thread
56 public Thread(@libcore.util.Nullable java.lang.ThreadGroup group, @libcore.util.Nullable java.lang.… in Thread() method in Thread
/aosp_15_r20/external/rust/android-crates-io/crates/thread_local/src/
Dthread_id.rs52 pub(crate) struct Thread { struct
62 impl Thread { implementation
63 fn new(id: usize) -> Thread { in new()
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/pal/teeos/
H A Dthread.rs14 pub struct Thread { struct
20 unsafe impl Send for Thread {} implementation
21 unsafe impl Sync for Thread {} implementation
27 impl Thread { implementation
29 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
136 impl Drop for Thread { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/pal/teeos/
H A Dthread.rs14 pub struct Thread { struct
20 unsafe impl Send for Thread {} argument
21 unsafe impl Sync for Thread {} implementation
27 impl Thread { implementation
29 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
136 impl Drop for Thread { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/sys/pal/teeos/
H A Dthread.rs14 pub struct Thread { struct
20 unsafe impl Send for Thread {} implementation
21 unsafe impl Sync for Thread {} implementation
27 impl Thread { impl
29 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
136 impl Drop for Thread { implementation
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/pal/teeos/
H A Dthread.rs14 pub struct Thread { struct
20 unsafe impl Send for Thread {} implementation
21 unsafe impl Sync for Thread {} implementation
27 impl Thread { implementation
29 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
134 impl Drop for Thread { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/pal/teeos/
H A Dthread.rs14 pub struct Thread { struct
20 unsafe impl Send for Thread {} argument
21 unsafe impl Sync for Thread {} implementation
27 impl Thread { implementation
29 pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> { in new()
134 impl Drop for Thread { implementation
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/lang/
H A DThread.annotated.java31 public class Thread implements java.lang.Runnable { class
33 public Thread() { throw new RuntimeException("Stub!"); } in Thread() method in Thread
35 public Thread(java.lang.Runnable target) { throw new RuntimeException("Stub!"); } in Thread() method in Thread
37 public Thread(java.lang.Runnable target, java.lang.String name) { throw new RuntimeException("Stub!… in Thread() method in Thread
39 public Thread(java.lang.String name) { throw new RuntimeException("Stub!"); } in Thread() method in Thread
41 public Thread(java.lang.ThreadGroup group, java.lang.Runnable target) { throw new RuntimeException(… in Thread() method in Thread
43 public Thread(java.lang.ThreadGroup group, java.lang.Runnable target, java.lang.String name) { thro… in Thread() method in Thread
45 public Thread(java.lang.ThreadGroup group, java.lang.Runnable target, java.lang.String name, long s… in Thread() method in Thread
47 public Thread(java.lang.ThreadGroup group, java.lang.Runnable target, java.lang.String name, long s… in Thread() method in Thread
49 public Thread(java.lang.ThreadGroup group, java.lang.String name) { throw new RuntimeException("Stu… in Thread() method in Thread
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/4/libcore/ojluni/src/main/java/java/lang/
DThread.java145 class Thread implements Runnable { class
509 private Thread(ThreadGroup g, Runnable target, String name, in Thread() method in Thread
640 Thread(String name, int characteristics, boolean bound) { in Thread() method in Thread
696 public Thread() { in Thread() method in Thread
712 public Thread(Runnable target) { in Thread() method in Thread
721 Thread(Runnable target, AccessControlContext acc) { in Thread() method in Thread
748 public Thread(ThreadGroup group, Runnable target) { in Thread() method in Thread
760 public Thread(String name) { in Thread() method in Thread
784 public Thread(ThreadGroup group, String name) { in Thread() method in Thread
790 Thread(ThreadGroup group, String name, int priority, boolean daemon) { in Thread() method in Thread
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/lang/
H A DThread.java145 class Thread implements Runnable { class
509 private Thread(ThreadGroup g, Runnable target, String name, in Thread() method in Thread
640 Thread(String name, int characteristics, boolean bound) { in Thread() method in Thread
696 public Thread() { in Thread() method in Thread
712 public Thread(Runnable target) { in Thread() method in Thread
721 Thread(Runnable target, AccessControlContext acc) { in Thread() method in Thread
748 public Thread(ThreadGroup group, Runnable target) { in Thread() method in Thread
760 public Thread(String name) { in Thread() method in Thread
784 public Thread(ThreadGroup group, String name) { in Thread() method in Thread
790 Thread(ThreadGroup group, String name, int priority, boolean daemon) { in Thread() method in Thread
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/lang/
DThread.java145 class Thread implements Runnable { class
509 private Thread(ThreadGroup g, Runnable target, String name, in Thread() method in Thread
640 Thread(String name, int characteristics, boolean bound) { in Thread() method in Thread
696 public Thread() { in Thread() method in Thread
712 public Thread(Runnable target) { in Thread() method in Thread
721 Thread(Runnable target, AccessControlContext acc) { in Thread() method in Thread
748 public Thread(ThreadGroup group, Runnable target) { in Thread() method in Thread
760 public Thread(String name) { in Thread() method in Thread
784 public Thread(ThreadGroup group, String name) { in Thread() method in Thread
790 Thread(ThreadGroup group, String name, int priority, boolean daemon) { in Thread() method in Thread
[all …]

12345678910>>...56