Searched defs:Thread (Results 26 - 50 of 122) sorted by relevance

12345

/external/compiler-rt/test/tsan/
H A Dignore_malloc.cc16 void *Thread(void *a) { function
26 pthread_create(&t, 0, Thread, 0);
H A Dignore_sync.cc11 void *Thread(void *x) { function
22 pthread_create(&t, 0, Thread, 0);
H A Djava_finalizer.cc4 void *Thread(void *p) { function
18 pthread_create(&th, 0, Thread, (void*)jheap);
H A Djava_race.cc4 void *Thread(void *p) { function
16 pthread_create(&th, 0, Thread, (void*)jheap);
H A Drace_on_read.cc14 void *Thread(void *x) { function
27 pthread_create(&t[0], NULL, Thread, NULL);
28 pthread_create(&t[1], NULL, Thread, NULL);
H A Dsleep_sync.cc11 void *Thread(void *p) { function
19 pthread_create(&t, 0, Thread, 0);
30 // CHECK-NEXT: #2 Thread
H A Dstack_race2.cc12 void *Thread(void *a) { function
23 pthread_create(&t, 0, Thread, 0);
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);
H A Dtls_race2.cc12 void *Thread(void *a) { function
23 pthread_create(&t, 0, Thread, 0);
H A Ddeep_stack1.cc18 void *Thread(void *p) { function
33 pthread_create(&t, &a, Thread, 0);
H A Djava_alloc.cc16 void *Thread(void *p) { function
25 pthread_create(&th, 0, Thread, (void*)(jheap + kHeapSize / 4));
H A Djava_lock.cc8 void *Thread(void *p) { function
25 pthread_create(&th, 0, Thread, 0);
H A Djava_lock_rec.cc8 void *Thread(void *p) { function
38 pthread_create(&th, 0, Thread, 0);
H A Djava_lock_rec_race.cc8 void *Thread(void *p) { function
36 pthread_create(&th, 0, Thread, 0);
H A Djava_race_move.cc7 void *Thread(void *p) { function
23 pthread_create(&th, 0, Thread, 0);
H A Djava_rwlock.cc8 void *Thread(void *p) { function
25 pthread_create(&th, 0, Thread, 0);
H A Dstatic_init2.cc19 void *Thread(void *x) { function
26 pthread_create(&t[0], 0, Thread, 0);
27 pthread_create(&t[1], 0, Thread, 0);
/external/deqp/framework/delibs/decpp/
H A DdeThread.hpp23 * \brief Thread base class.
35 * Thread provides base class for implementing threads. To leverage that
36 * functionality, inherit Thread in your class and implement virtual run()
39 * \note Thread class is not thread-safe, i.e. thread control functions
43 class Thread class in namespace:de
46 Thread (void);
47 virtual ~Thread (void);
55 /** Thread entry point. */
59 Thread (const Thread
[all...]
/external/lzma/CPP/7zip/Common/
H A DVirtThread.h7 #include "../../Windows/Thread.h"
13 NWindows::CThread Thread; member in struct:CVirtThread
/external/chromium_org/mojo/public/cpp/utility/lib/
H A Dthread.cc11 Thread::Thread() function in class:mojo::Thread
18 Thread::Thread(const Options& options) function in class:mojo::Thread
25 Thread::~Thread() {
30 void Thread::Start() {
52 void Thread::Join() {
63 void* Thread::ThreadRunTrampoline(void* arg) {
64 Thread* sel
[all...]
/external/chromium_org/third_party/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) {
/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) {
/external/compiler-rt/lib/tsan/benchmarks/
H A Dstart_many_threads.cc19 void* Thread(void *unused) { function
40 int status = pthread_create(&t[i], 0, Thread, (void*)i);
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dtsd_dtor_leak.cc13 void *Thread(void *) { function
31 pthread_create(&t, 0, Thread, 0);
/external/libunwind/doc/
H A Dunw_init_local.tex52 \section{Thread and Signal Safety}

Completed in 309 milliseconds

12345