Searched refs:thread (Results 201 - 225 of 1148) sorted by relevance

1234567891011>>

/external/syslinux/core/thread/
H A Dschedule.c3 #include "thread.h"
15 struct thread *curr = current();
16 struct thread *st, *nt, *best;
45 * the thread *following* curr, and curr may not actually be part
49 nt = st = container_of(curr->list.next, struct thread, list);
52 dprintf("Invalid thread on thread list %p magic = 0x%08x\n",
65 nt = container_of(nt->list.next, struct thread, list);
69 kaboom(); /* No runnable thread */
/external/testng/src/main/java/org/testng/internal/thread/
H A DThreadTimeoutException.java1 package org.testng.internal.thread;
4 * Exception used to signal a thread timeout.
/external/testng/src/test/java/test/thread/
H A DSample2.java1 package test.thread;
H A DSequentialSample2Test.java1 package test.thread;
H A DSequentialSample3Test.java1 package test.thread;
H A DSequentialSampleTest.java1 package test.thread;
H A DSingleThreadedSample2Test.java1 package test.thread;
H A DSingleThreadedSample3Test.java1 package test.thread;
H A DSingleThreadedSampleTest.java1 package test.thread;
H A DTest1Test.java1 package test.thread;
H A DTest2Test.java1 package test.thread;
H A DThreadPoolSizeBase.java1 package test.thread;
H A DThreadTest.java1 package test.thread;
/external/valgrind/drd/tests/
H A Dpth_detached.c54 // thread attributes.
57 pthread_t thread; local
58 pthread_create(&thread, &attr, thread_func1, NULL);
66 pthread_t thread; local
67 pthread_create(&thread, &attr, thread_func2, NULL);
H A Dpth_detached_sem.c4 * in this test program the main thread uses a counting semaphore instead
61 // thread attributes.
64 pthread_t thread; local
65 pthread_create(&thread, &attr, thread_func1, &thread_arg[i]);
73 pthread_t thread; local
74 pthread_create(&thread, &attr, thread_func2, &thread_arg[i]);
H A Dtc01_simple_race.stderr.exp2 Conflicting load by thread 1 at 0x........ size 4
7 Conflicting store by thread 1 at 0x........ size 4
/external/webrtc/webrtc/base/
H A Dmaccocoasocketserver_unittest.mm13 #include "webrtc/base/thread.h"
43 WakeThread thread(&server);
45 thread.Start();
/external/chromium-trace/catapult/devil/devil/utils/
H A Dreraiser_thread_unittest.py28 thread = reraiser_thread.ReraiserThread(f, [1], {'b': 2})
29 thread.start()
30 thread.join()
38 thread = reraiser_thread.ReraiserThread(f)
39 thread.start()
40 thread.join()
42 thread.ReraiseIfException()
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A DMoreExecutorsDirectExecutorBenchmark.java71 Thread thread = new Thread() {
80 threads.add(thread);
85 for (Thread thread : threads) {
86 thread.interrupt(); // try to get them to exit
106 for (Thread thread : threads) {
107 if (!thread.isAlive()) {
108 thread.start();
/external/libmojo/third_party/catapult/devil/devil/utils/
H A Dreraiser_thread_unittest.py28 thread = reraiser_thread.ReraiserThread(f, [1], {'b': 2})
29 thread.start()
30 thread.join()
38 thread = reraiser_thread.ReraiserThread(f)
39 thread.start()
40 thread.join()
42 thread.ReraiseIfException()
/external/valgrind/memcheck/tests/
H A Derr_disable4.stderr.exp4 WARNING: exiting thread has error reporting disabled.
7 WARNING: exiting thread has error reporting disabled.
10 WARNING: exiting thread has error reporting disabled.
13 WARNING: exiting thread has error reporting disabled.
16 WARNING: exiting thread has error reporting disabled.
19 WARNING: exiting thread has error reporting disabled.
22 WARNING: exiting thread has error reporting disabled.
25 WARNING: exiting thread has error reporting disabled.
28 WARNING: exiting thread has error reporting disabled.
31 WARNING: exiting thread ha
[all...]
/external/libchrome/base/win/
H A Dscoped_handle_test_dll.cc69 for (const auto& thread : threads_)
70 ::CloseHandle(thread);
77 for (const auto& thread : threads_) {
78 ::WaitForSingleObject(thread, INFINITE);
79 ::CloseHandle(thread);
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
H A Dmutex.pass.cpp22 #include <thread>
74 std::vector<std::thread> v;
78 v.push_back(std::thread(f));
87 t = std::thread(g);
88 std::thread q(f);
H A Dmutex_duration.pass.cpp23 #include <thread>
74 std::vector<std::thread> v;
76 v.push_back(std::thread(f1));
84 std::vector<std::thread> v;
86 v.push_back(std::thread(f2));
H A Dmutex_time_point.pass.cpp23 #include <thread>
73 std::vector<std::thread> v;
75 v.push_back(std::thread(f1));
83 std::vector<std::thread> v;
85 v.push_back(std::thread(f2));

Completed in 589 milliseconds

1234567891011>>