/external/valgrind/drd/ |
D | drd_vc.c | 91 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 …]
|
D | drd_vc.h | 60 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/ |
D | sigalrm.c | 58 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()
|
D | linuxthreads_det.c | 29 pthread_t threadid; in main() local 32 pthread_create(&threadid, 0, thread_func, 0); in main() 33 pthread_join(threadid, 0); in main()
|
D | pth_cond_race.c | 28 pthread_t threadid; in main() local 46 pthread_create(&threadid, 0, thread_func, 0); in main() 51 pthread_join(threadid, 0); in main()
|
D | sem_as_mutex.c | 36 pthread_t threadid; in main() local 72 pthread_create(&threadid, 0, thread_func, 0); in main() 83 pthread_join(threadid, 0); in main()
|
D | pth_cond_destroy_busy.c | 39 pthread_t threadid; in main() local 45 pthread_create(&threadid, 0, thread_func, 0); in main() 61 pthread_join(threadid, 0); in main()
|
D | fp_race.c | 35 pthread_t threadid; in main() local 71 pthread_create(&threadid, 0, thread_func, 0); in main() 82 pthread_join(threadid, 0); in main()
|
D | sem_open.c | 36 pthread_t threadid; in main() local 85 pthread_create(&threadid, 0, thread_func, 0); in main() 96 pthread_join(threadid, 0); in main()
|
D | dlopen_lib.c | 6 void *PrintHello(void *threadid) in PrintHello() argument 8 const long tid = (uintptr_t)threadid; in PrintHello()
|
/external/python/cpython2/Python/ |
D | thread_pth.h | 69 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()
|
D | thread_pthread.h | 229 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/ |
D | windowsaio.c | 116 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/ |
D | thread.h | 140 void (*threadid_func)(CRYPTO_THREADID *threadid));
|
/external/valgrind/docs/internals/ |
D | xml-output-protocol4.txt | 366 <threadid>17</threadid> 369 And presumably the <threadid>17</threadid> refers to some previously
|
/external/stressapptest/src/ |
D | worker.h | 542 virtual bool SpawnSlave(int newsock, int threadid);
|
D | worker.cc | 2262 bool NetworkListenThread::SpawnSlave(int newsock, int threadid) { in SpawnSlave() argument 2268 child_worker->thread.InitThread(threadid, sat_, os_, patternlist_, in SpawnSlave()
|
/external/dlmalloc/ |
D | malloc.c | 1916 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/ |
D | sqlite3.c | 30253 #define threadid pthread_self() 30255 #define threadid 0 30708 threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len,
|
/external/sqlite/dist/ |
D | sqlite3.c | 30253 #define threadid pthread_self() 30255 #define threadid 0 30708 threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len,
|