Home
last modified time | relevance | path

Searched refs:threadid (Results 1 – 20 of 20) sorted by relevance

/external/valgrind/drd/
Ddrd_vc.c91 if (vc->vc[i].threadid == tid) in DRD_()
139 while (i < result->size && result->vc[i].threadid < rhs->vc[j].threadid) in DRD_()
149 if (result->vc[i].threadid <= rhs->vc[j].threadid) in DRD_()
153 tl_assert(result->vc[i].threadid == rhs->vc[j].threadid); in DRD_()
181 while (j < rhs->size && rhs->vc[j].threadid < result->vc[i].threadid) in DRD_()
185 if (result->vc[i].threadid == rhs->vc[j].threadid) in DRD_()
203 while (i < result->size && result->vc[i].threadid < rhs->vc[j].threadid) in DRD_()
214 else if (result->vc[i].threadid > rhs->vc[j].threadid) in DRD_()
228 tl_assert(result->vc[i].threadid == rhs->vc[j].threadid); in DRD_()
281 vc->vc[i].threadid, vc->vc[i].count); in DRD_()
[all …]
Ddrd_vc.h60 DrdThreadId threadid; member
109 while (j < vc2->size && vc2->vc[j].threadid < vc1->vc[i].threadid) in DRD_()
111 if (j >= vc2->size || vc2->vc[j].threadid > vc1->vc[i].threadid) in DRD_()
118 tl_assert(j < vc2->size && vc2->vc[j].threadid == vc1->vc[i].threadid); in DRD_()
/external/valgrind/drd/tests/
Dsigalrm.c58 pthread_t threadid; in main() local
75 if (pthread_create(&threadid, 0, thread_func, 0) != 0) { in main()
84 pthread_kill(threadid, SIGALRM); in main()
85 pthread_join(threadid, 0); in main()
Dlinuxthreads_det.c29 pthread_t threadid; in main() local
32 pthread_create(&threadid, 0, thread_func, 0); in main()
33 pthread_join(threadid, 0); in main()
Dpth_cond_race.c28 pthread_t threadid; in main() local
46 pthread_create(&threadid, 0, thread_func, 0); in main()
51 pthread_join(threadid, 0); in main()
Dsem_as_mutex.c36 pthread_t threadid; in main() local
72 pthread_create(&threadid, 0, thread_func, 0); in main()
83 pthread_join(threadid, 0); in main()
Dpth_cond_destroy_busy.c39 pthread_t threadid; in main() local
45 pthread_create(&threadid, 0, thread_func, 0); in main()
61 pthread_join(threadid, 0); in main()
Dfp_race.c35 pthread_t threadid; in main() local
71 pthread_create(&threadid, 0, thread_func, 0); in main()
82 pthread_join(threadid, 0); in main()
Dsem_open.c36 pthread_t threadid; in main() local
85 pthread_create(&threadid, 0, thread_func, 0); in main()
96 pthread_join(threadid, 0); in main()
Ddlopen_lib.c6 void *PrintHello(void *threadid) in PrintHello() argument
8 const long tid = (uintptr_t)threadid; in PrintHello()
/external/python/cpython2/Python/
Dthread_pth.h69 volatile pth_t threadid; in PyThread_get_thread_ident() local
73 threadid = pth_self(); in PyThread_get_thread_ident()
74 return (long) *(long *) &threadid; in PyThread_get_thread_ident()
Dthread_pthread.h229 volatile pthread_t threadid; in PyThread_get_thread_ident() local
233 threadid = pthread_self(); in PyThread_get_thread_ident()
235 return (long) threadid; in PyThread_get_thread_ident()
237 return (long) *(long *) &threadid; in PyThread_get_thread_ident()
/external/fio/engines/
Dwindowsaio.c116 DWORD threadid; in fio_windowsaio_init() local
120 wd->iothread = CreateThread(NULL, 0, IoCompletionRoutine, ctx, 0, &threadid); in fio_windowsaio_init()
123 fio_setaffinity(threadid, td->o.cpumask); in fio_windowsaio_init()
/external/boringssl/src/include/openssl/
Dthread.h140 void (*threadid_func)(CRYPTO_THREADID *threadid));
/external/valgrind/docs/internals/
Dxml-output-protocol4.txt366 <threadid>17</threadid>
369 And presumably the <threadid>17</threadid> refers to some previously
/external/stressapptest/src/
Dworker.h542 virtual bool SpawnSlave(int newsock, int threadid);
Dworker.cc2262 bool NetworkListenThread::SpawnSlave(int newsock, int threadid) { in SpawnSlave() argument
2268 child_worker->thread.InitThread(threadid, sat_, os_, patternlist_, in SpawnSlave()
/external/dlmalloc/
Dmalloc.c1916 THREAD_ID_T threadid; member
1935 lk->threadid = mythreadid; in recursive_acquire_lock()
1940 else if (EQ_OWNER(lk->threadid, mythreadid)) { in recursive_acquire_lock()
1954 lk->threadid = mythreadid; in recursive_try_lock()
1959 else if (EQ_OWNER(lk->threadid, mythreadid)) { in recursive_try_lock()
1969 #define INITIAL_LOCK(lk) ((lk)->threadid = (THREAD_ID_T)0, (lk)->sl = 0, (lk)->c = 0)
/external/sqlite/dist/orig/
Dsqlite3.c30253 #define threadid pthread_self()
30255 #define threadid 0
30708 threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len,
/external/sqlite/dist/
Dsqlite3.c30253 #define threadid pthread_self()
30255 #define threadid 0
30708 threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len,