Searched refs:Thread (Results 1 - 25 of 663) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/tsan/lit_tests/
H A Dthread_leak3.c4 void *Thread(void *x) { function
10 pthread_create(&t, 0, Thread, 0);
H A Dsleep_sync.cc11 void *Thread(void *p) { function
19 pthread_create(&t, 0, Thread, 0);
30 // CHECK-NEXT: #2 Thread
H A Dsleep_sync2.cc7 void *Thread(void *p) { function
15 pthread_create(&t, 0, Thread, 0);
H A Dstack_race.cc5 void *Thread(void *a) { function
13 pthread_create(&t, 0, Thread, &Var);
H A Dthread_leak.c5 void *Thread(void *x) { function
11 pthread_create(&t, 0, Thread, 0);
H A Dthread_leak2.c5 void *Thread(void *x) { function
11 pthread_create(&t, 0, Thread, 0);
H A Dtls_race.cc5 void *Thread(void *a) { function
13 pthread_create(&t, 0, Thread, &Var);
H A Dstatic_init1.cc11 void *Thread(void *x) { function
20 pthread_create(&t[0], 0, Thread, 0);
21 pthread_create(&t[1], 0, Thread, 0);
/external/valgrind/main/helgrind/tests/
H A Dtc04_free_lock.stderr.exp2 ---Thread-Announcement------------------------------------------
4 Thread #x is the program's root thread
8 Thread #x: Exiting thread still holds 2 locks
H A Dtc22_exit_w_lock.stderr.exp2 ---Thread-Announcement------------------------------------------
4 Thread #x was created
12 Thread #x: Exiting thread still holds 2 locks
15 ---Thread-Announcement------------------------------------------
17 Thread #x was created
25 Thread #x: Exiting thread still holds 1 lock
28 ---Thread-Announcement------------------------------------------
30 Thread #x is the program's root thread
34 Thread #x: Exiting thread still holds 1 lock
H A Dcond_timedwait_invalid.stderr.exp2 ---Thread-Announcement------------------------------------------
4 Thread #x is the program's root thread
8 Thread #x's call to pthread_cond_timedwait failed
H A Dpth_destroy_cond.stderr.exp1 ---Thread-Announcement------------------------------------------
3 Thread #x was created
11 Thread #x: pthread_cond_destroy: destruction of condition variable being waited upon
18 ---Thread-Announcement------------------------------------------
20 Thread #x is the program's root thread
24 Thread #x: condition variable has been destroyed while being waited upon
/external/valgrind/main/gdbserver_tests/
H A Dmcbreak.stdout.exp1 pid .... Thread .... first
2 pid .... Thread .... second
3 pid .... Thread .... third
4 pid .... Thread .... fourth
5 pid .... Thread .... after next: inferior call pushed from mcbreak.stdinB.gdb
6 pid .... Thread .... called from level
8 pid .... Thread .... called from main
/external/regex-re2/util/
H A Dthread.cc10 Thread::Thread() { function in class:Thread
16 Thread::~Thread() {
20 Thread* t = (Thread*)v;
25 void Thread::Start() {
33 void Thread::Join() {
41 void Thread::SetJoinable(bool j) {
H A Dthread.h10 class Thread { class
12 Thread();
13 virtual ~Thread();
/external/valgrind/main/drd/tests/
H A Dboost_thread.stderr.exp2 Thread 1.
3 Thread 2.
/external/v8/test/cctest/
H A Dtest-platform-tls.cc11 using v8::internal::Thread;
15 static Thread::LocalStorageKey keys[kValueCount];
23 CHECK(!Thread::HasThreadLocal(keys[i]));
26 Thread::SetThreadLocal(keys[i], GetValue(i));
29 CHECK(Thread::HasThreadLocal(keys[i]));
32 CHECK_EQ(GetValue(i), Thread::GetThreadLocal(keys[i]));
33 CHECK_EQ(GetValue(i), Thread::GetExistingThreadLocal(keys[i]));
36 Thread::SetThreadLocal(keys[i], GetValue(kValueCount - i - 1));
39 CHECK(Thread::HasThreadLocal(keys[i]));
43 Thread
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DThreadControllerWrapper.java33 public static Thread runThread(Runnable runnable, int priority)
38 public static void waitThread(Thread worker, Runnable task)
45 * Thread controller utility class for incremental SAX source. Must
66 public Thread run(Runnable task, int priority)
69 Thread t = new Thread(task);
87 public void waitThread(Thread worker, Runnable task)
/external/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DNamedRunnable.java30 String oldName = Thread.currentThread().getName();
31 Thread.currentThread().setName(name);
35 Thread.currentThread().setName(oldName);
/external/chromium/base/threading/
H A Dthread.cc19 // Thread to setup and run a MessageLoop.
30 Thread::SetThreadWasQuitProperly(true);
36 struct Thread::StartupData {
38 const Thread::Options& options;
48 Thread::Thread(const char* name) function in class:base::Thread
58 Thread::~Thread() {
62 bool Thread::Start() {
66 bool Thread
[all...]
/external/chromium/net/base/
H A Dnetwork_change_notifier_linux.cc25 class NetworkChangeNotifierLinux::Thread class in class:net::NetworkChangeNotifierLinux
26 : public base::Thread, public MessageLoopForIO::Watcher {
28 Thread();
29 virtual ~Thread();
36 // base::Thread
59 ScopedRunnableMethodFactory<Thread> method_factory_;
61 DISALLOW_COPY_AND_ASSIGN(Thread);
64 NetworkChangeNotifierLinux::Thread::Thread() function in class:net::NetworkChangeNotifierLinux::Thread
65 : base::Thread("NetworkChangeNotifie
[all...]
H A Dnetwork_change_notifier_linux.h20 class Thread;
30 scoped_ptr<Thread> notifier_thread_;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dthread.h48 class Thread;
55 static Thread *CurrentThread();
56 static void SetCurrent(Thread *thread);
57 void Add(Thread *thread);
58 void Remove(Thread *thread);
62 // If there already *is* a Thread object corresponding to this thread,
63 // this method will return that. Otherwise it creates a new Thread
73 static Thread *WrapCurrentThread();
79 Thread *main_thread_;
80 std::vector<Thread *> threads
114 class Thread : public MessageQueue { class in namespace:talk_base
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DThreadTest.java20 import java.lang.Thread.UncaughtExceptionHandler;
64 Thread parent;
76 Thread.sleep(100);
83 Thread.sleep(500);
87 while (!Thread.currentThread().isInterrupted()) {
90 Thread.sleep(50);
103 public ResSupThread(Thread t) {
121 Thread st, ct, spinner;
124 * @tests java.lang.Thread#Thread(jav
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DInterruptionUtil.java44 private final Thread interruptee;
47 Interruptenator(Thread interruptee, long everyMillis) {
56 Thread.sleep(everyMillis);
76 final Thread interruptee = Thread.currentThread();
77 new Thread(new Runnable() {
93 new Interruptenator(Thread.currentThread(), interruptPeriodMillis);
94 final Thread interruptingThread = new Thread(interruptingTask);
101 Thread
[all...]

Completed in 480 milliseconds

1234567891011>>