Searched refs:threadid (Results 1 – 11 of 11) sorted by relevance
/external/ltp/testcases/kernel/mem/mtest07/ |
D | shm_test.c | 87 pthread_t threadid; member 330 (&chld_args[i].threadid, NULL, shmat_rd_wr, &chld_args[i])) { in main() 338 (&chld_args[i + 1].threadid, NULL, shmat_rd_wr, &chld_args[i + 1])) { in main() 347 if (pthread_join(chld_args[i].threadid, &th_status) != 0) { in main() 355 (long)chld_args[i].threadid); in main()
|
/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/python/cpython3/Python/ |
D | thread_pthread.h | 315 volatile pthread_t threadid; in PyThread_get_thread_ident() local 318 threadid = pthread_self(); in PyThread_get_thread_ident() 319 return (unsigned long) threadid; in PyThread_get_thread_ident()
|
/external/boringssl/src/include/openssl/ |
D | thread.h | 140 void (*threadid_func)(CRYPTO_THREADID *threadid));
|
/external/scapy/scapy/ |
D | automaton.py | 634 self.threadid = None 711 self.threadid = threading.currentThread().ident 727 self.debug(3, "Starting control thread [tid=%i]" % self.threadid) 759 …self.debug(3, "Transfering exception from tid=%i:\n%s"% (self.threadid, traceback.format_exception… 762 self.debug(3, "Stopping control thread (tid=%i)"%self.threadid) 763 self.threadid = None
|
/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/ |
D | sqlite3.c | 32830 #define threadid pthread_self() 32832 #define threadid 0 33317 threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len,
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 32826 #define threadid pthread_self() 32828 #define threadid 0 33307 threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len,
|