Searched defs:tid (Results 1 - 25 of 328) sorted by relevance

1234567891011>>

/external/compiler-rt/test/tsan/
H A Dbench_acquire_only.cc8 void thread(int tid) { argument
H A Dbench_acquire_release.cc8 void thread(int tid) { argument
H A Dbench_rwmutex.cc8 void thread(int tid) { argument
H A Dbench_single_writer.cc8 void thread(int tid) { argument
9 if (tid == 0) {
H A Dbench_local_mutex.cc9 void thread(int tid) { argument
11 pthread_mutex_lock(&mtx[tid * kStride]);
12 pthread_mutex_unlock(&mtx[tid * kStride]);
H A Dbench_release_only.cc9 void thread(int tid) { argument
10 __atomic_load_n(&x[tid * kStride], __ATOMIC_ACQUIRE);
12 __atomic_store_n(&x[tid * kStride], 0, __ATOMIC_RELEASE);
H A Dbench_mutex.cc10 void thread(int tid) { argument
13 while (x != i * 2 + tid)
H A Dbench_ten_mutexes.cc9 void thread(int tid) { argument
12 if (tid == 0)
/external/valgrind/main/coregrind/m_coredump/
H A Dcoredump-macho.c39 void VG_(make_coredump)(ThreadId tid, const vki_siginfo_t *si, ULong max_size) argument
/external/chromium_org/third_party/skia/src/utils/
H A DSkThreadUtils_pthread_mach.cpp21 mach_port_t tid = pthread_mach_thread_np(pthreadData->fPThread); local
26 return 0 == thread_policy_set(tid,
/external/skia/src/utils/
H A DSkThreadUtils_pthread_mach.cpp21 mach_port_t tid = pthread_mach_thread_np(pthreadData->fPThread); local
26 return 0 == thread_policy_set(tid,
/external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/
H A Dthread_creator.c15 static int thread_create(uintptr_t *tid, argument
24 return pthread_create((pthread_t *) tid, NULL,
29 static int thread_join(uintptr_t tid) { argument
30 return pthread_join((pthread_t) tid, NULL);
/external/lldb/include/lldb/Target/
H A DOperatingSystem.h82 CreateThread (lldb::tid_t tid, lldb::addr_t context) argument
/external/valgrind/main/drd/tests/
H A Dpth_barrier_race.c30 pthread_t tid; local
35 pthread_create(&tid, NULL, thread, NULL);
46 pthread_join(tid, NULL);
H A Dannotate_hb_race.c31 pthread_t tid[2]; local
35 pthread_create(&tid[0], 0, thread_func, &result[0]);
36 pthread_create(&tid[1], 0, thread_func, &result[1]);
42 pthread_join(tid[0], NULL);
43 pthread_join(tid[1], NULL);
H A Dannotate_static.cpp38 pthread_t tid; local
40 pthread_create(&tid, 0, thread_func, NULL);
43 pthread_join(tid, NULL);
H A Dpth_cancel_locked.c27 pthread_t tid; local
36 pthread_create(&tid, 0, &thread, 0);
43 pthread_cancel(tid);
46 pthread_join(tid, 0);
49 pthread_cancel(tid);
/external/compiler-rt/lib/lsan/
H A Dlsan.cc58 u32 tid = ThreadCreate(0, 0, true); local
59 CHECK_EQ(tid, 0);
60 ThreadStart(tid, GetTid());
61 SetCurrentThread(tid);
/external/compiler-rt/test/lsan/TestCases/
H A Dfork_threaded.cc20 pthread_t tid; local
22 res = pthread_create(&tid, 0, exit_thread_func, 0);
24 pthread_join(tid, 0);
/external/oprofile/daemon/liblegacy/
H A Dopd_proc.h34 pid_t tid; member in struct:opd_proc
86 * @param tid tid for this process
91 void opd_handle_exec(pid_t tid, pid_t tgid);
107 * @param tid tid for this process
110 * A process with pid tid is searched on the process list,
114 struct opd_proc * opd_get_proc(pid_t tid, pid_t tgid);
118 * @param tid tid fo
[all...]
/external/valgrind/main/helgrind/tests/
H A Dfree_is_write.c21 pthread_t tid; local
32 pthread_create(&tid, NULL, thread_func, NULL);
39 pthread_join(tid, NULL);
/external/valgrind/main/none/tests/
H A Dpth_cancel1.c40 pthread_t tid; local
43 if (pthread_create(&tid, NULL, thread_main, NULL) != 0)
51 if (pthread_cancel(tid) != 0)
57 if (pthread_join(tid, &result) != 0)
/external/chromium-trace/trace-viewer/src/cc/
H A Dpicture_view_test_data.js10 'tid': 1799,
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dcreate.c45 pthread_create (pthread_t * tid, argument
55 * via 'tid', which should not be NULL.
58 * tid
76 * via 'tid', which should not be the NULL pointer.
98 * Before doing anything, check that tid can be stored through
101 * This is assured by conditionally assigning *tid again at the end.
103 tid->x = 0;
128 parms->tid = thread;
299 *tid = thread;
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_posix_test.cc44 pthread_t tid; local
45 ASSERT_EQ(0, pthread_create(&tid, 0, &thread_func,
48 ASSERT_EQ(0, pthread_join(tid, &retval));

Completed in 674 milliseconds

1234567891011>>