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

1234567891011>>

/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 Dbar_bad.stderr.exp3 ---Thread-Announcement------------------------------------------
5 Thread #x is the program's root thread
9 Thread #x: pthread_barrier_init: 'count' argument is zero
15 Thread #x's call to pthread_barrier_init failed
24 Thread #x: pthread_barrier_init: barrier is already initialised
32 Thread #x: pthread_barrier_init: barrier is already initialised
38 Thread #x: pthread_barrier_init: threads are waiting at barrier
46 Thread #x: pthread_barrier_destroy: threads are waiting at barrier
52 Thread #x's call to pthread_barrier_destroy failed
61 Thread #
[all...]
H A Dtc18_semabuse.stderr.exp2 ---Thread-Announcement------------------------------------------
4 Thread #x is the program's root thread
8 Thread #x's call to sem_init failed
16 Thread #x: Bug in libpthread: sem_wait succeeded on semaphore without prior sem_post
23 Thread #x's call to sem_post failed
H A Dtc23_bogus_condwait.stderr.exp2 ---Thread-Announcement------------------------------------------
4 Thread #x is the program's root thread
8 Thread #x: pthread_cond_{timed}wait called with invalid mutex
15 Thread #x: pthread_cond_{timed}wait called with un-held mutex
22 Thread #x: pthread_cond_{timed}wait: cond is associated with a different mutex
29 Thread #x: pthread_cond_{timed}wait called with mutex of type pthread_rwlock_t*
36 Thread #x: pthread_cond_{timed}wait: cond is associated with a different mutex
43 Thread #x: pthread_cond_{timed}wait called with mutex held by a different thread
50 Thread #x: pthread_cond_{timed}wait: cond is associated with a different mutex
/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
H A Dnlcontrolc.stdoutB.exp4 [New Thread ....]
5 [New Thread ....]
6 [New Thread ....]
7 4 Thread .... (tid 4 VgTs_WaitSys) 0x........ in syscall ...
8 3 Thread .... (tid 3 VgTs_WaitSys) 0x........ in syscall ...
9 2 Thread .... (tid 2 VgTs_WaitSys) 0x........ in syscall ...
10 * 1 Thread .... (tid 1 VgTs_WaitSys) 0x........ in syscall ...
/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/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...]
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DThreadingManager.java61 public Thread newThread(Runnable r) {
62 Thread t = new Thread(r, "pool" + (nextThreadId++));
64 t.setPriority(Thread.MIN_PRIORITY);
99 return Thread.currentThread().getName().startsWith("pool");
/external/valgrind/main/helgrind/
H A Dhg_errors.h51 void HG_(record_error_Race) ( Thread* thr,
53 Thread* h1_confthr,
56 void HG_(record_error_UnlockUnlocked) ( Thread*, Lock* );
57 void HG_(record_error_UnlockForeign) ( Thread*, Thread*, Lock* );
58 void HG_(record_error_UnlockBogus) ( Thread*, Addr );
59 void HG_(record_error_PthAPIerror) ( Thread*, HChar*, Word, HChar* );
62 void HG_(record_error_LockOrder) ( Thread*, Addr, Addr,
66 void HG_(record_error_Misc_w_aux) ( Thread*, HChar* errstr,
68 void HG_(record_error_Misc) ( Thread* th
[all...]
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dmediamonitor.cc42 MediaMonitor::MediaMonitor(talk_base::Thread* worker_thread,
43 talk_base::Thread* monitor_thread)
71 ASSERT(talk_base::Thread::Current() == worker_thread_);
79 ASSERT(talk_base::Thread::Current() == worker_thread_);
87 ASSERT(talk_base::Thread::Current() == worker_thread_);
92 ASSERT(talk_base::Thread::Current() == monitor_thread_);
100 ASSERT(talk_base::Thread::Current() == worker_thread_);
H A Dsoundclip.h36 class Thread;
46 Soundclip(talk_base::Thread* thread, SoundclipMedia* soundclip_media);
64 talk_base::Thread* worker_thread_;
/external/webkit/Source/JavaScriptCore/heap/
H A DMachineStackMarker.h54 class Thread;
59 void gatherFromOtherThread(ConservativeRoots&, Thread*);
66 Thread* m_registeredThreads;
/external/chromium/android/autofill/
H A Dandroid_url_request_context_getter.h37 AndroidURLRequestContextGetter(net::URLRequestContext* context, base::Thread* ioThread)
51 mutable base::Thread* io_thread_;

Completed in 428 milliseconds

1234567891011>>