Searched refs:PThreadKey (Results 1 - 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_tsd_exclusive.cpp20 static pthread_key_t PThreadKey; member in namespace:__scudo
40 if (LIKELY(pthread_setspecific(PThreadKey,
50 CHECK_EQ(pthread_key_create(&PThreadKey, teardownThread), 0);
59 CHECK_EQ(pthread_setspecific(PThreadKey, reinterpret_cast<void *>(
H A Dscudo_tsd_shared.inc19 extern pthread_key_t PThreadKey;
32 return reinterpret_cast<ScudoTSD *>(pthread_getspecific(PThreadKey));
H A Dscudo_tsd_shared.cpp20 pthread_key_t PThreadKey; member in namespace:__scudo
34 CHECK_EQ(pthread_key_create(&PThreadKey, NULL), 0);
56 CHECK_EQ(pthread_setspecific(PThreadKey, reinterpret_cast<void *>(TSD)), 0);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtsd_exclusive.h27 CHECK_EQ(pthread_key_create(&PThreadKey, teardownThread<Allocator>), 0);
90 pthread_setspecific(PThreadKey, reinterpret_cast<void *>(Instance)), 0);
96 pthread_key_t PThreadKey; member in struct:scudo::TSDRegistryExT
123 if (LIKELY(pthread_setspecific(Instance->getTSDRegistry()->PThreadKey,
H A Dtsd_shared.h20 CHECK_EQ(pthread_key_create(&PThreadKey, nullptr), 0); // For non-TLS
52 pthread_key_delete(PThreadKey);
93 pthread_setspecific(PThreadKey, reinterpret_cast<void *>(CurrentTSD)),
104 return reinterpret_cast<TSD<Allocator> *>(pthread_getspecific(PThreadKey));
160 pthread_key_t PThreadKey; member in struct:scudo::TSDRegistrySharedT
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_basic_logging.cpp74 static pthread_key_t PThreadKey; member in namespace:__xray
132 pthread_setspecific(PThreadKey, &TLD);
385 pthread_key_create(&PThreadKey, TLDDestructor);

Completed in 111 milliseconds