Searched refs:PThreadKey (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/compiler-rt/lib/scudo/ |
| H A D | scudo_tsd_exclusive.cpp | 21 static pthread_key_t PThreadKey; variable 41 if (LIKELY(pthread_setspecific(PThreadKey, in teardownThread() 51 CHECK_EQ(pthread_key_create(&PThreadKey, teardownThread), 0); in initOnce() 60 CHECK_EQ(pthread_setspecific(PThreadKey, reinterpret_cast<void *>( in initThread()
|
| H A D | scudo_tsd_shared.cpp | 21 pthread_key_t PThreadKey; variable 35 CHECK_EQ(pthread_key_create(&PThreadKey, NULL), 0); in initOnce() 57 CHECK_EQ(pthread_setspecific(PThreadKey, reinterpret_cast<void *>(TSD)), 0); in setCurrentTSD()
|
| H A D | scudo_tsd_shared.inc | 20 extern pthread_key_t PThreadKey; 33 return reinterpret_cast<ScudoTSD *>(pthread_getspecific(PThreadKey));
|
| /freebsd-12.1/contrib/compiler-rt/lib/xray/ |
| H A D | xray_basic_logging.cc | 75 static pthread_key_t PThreadKey; variable 133 pthread_setspecific(PThreadKey, &TLD); in getThreadLocalData() 386 pthread_key_create(&PThreadKey, TLDDestructor); in basicLoggingInit()
|