reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/Unix/ThreadLocal.inc
   30   static_assert(sizeof(pthread_key_t) <= sizeof(data), "size too big");
   31   pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
   38   pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
   45   pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
   52   pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
projects/compiler-rt/lib/asan/asan_posix.cpp
   87 static pthread_key_t tsd_key;
projects/compiler-rt/lib/builtins/emutls.c
   53 static pthread_key_t emutls_pthread_key;
projects/compiler-rt/lib/hwasan/hwasan_linux.cpp
  299 static pthread_key_t tsd_key;
projects/compiler-rt/lib/msan/msan_linux.cpp
  222 static pthread_key_t tsd_key;
projects/compiler-rt/lib/safestack/safestack.cpp
  113 pthread_key_t thread_cleanup_key;
projects/compiler-rt/lib/scudo/scudo_tsd_exclusive.cpp
   20 static pthread_key_t PThreadKey;
projects/compiler-rt/lib/scudo/standalone/tsd_exclusive.h
   82   pthread_key_t PThreadKey;
projects/compiler-rt/lib/scudo/standalone/tsd_shared.h
  147   pthread_key_t PThreadKey;
projects/compiler-rt/lib/xray/xray_basic_logging.cpp
   74 static pthread_key_t PThreadKey;
projects/compiler-rt/lib/xray/xray_fdr_logging.cpp
   77 static pthread_key_t Key;
projects/compiler-rt/lib/xray/xray_profiling.cpp
   47 static pthread_key_t ProfilingKey;
projects/openmp/runtime/src/kmp.h
 1361 typedef pthread_key_t kmp_key_t;
usr/include/pthread.h
 1112 extern int pthread_key_create (pthread_key_t *__key,
 1117 extern int pthread_key_delete (pthread_key_t __key) __THROW;
 1120 extern void *pthread_getspecific (pthread_key_t __key) __THROW;
 1123 extern int pthread_setspecific (pthread_key_t __key,
usr/include/x86_64-linux-gnu/c++/7.4.0/bits/gthr-default.h
   48 typedef pthread_key_t __gthread_key_t;
utils/unittest/googletest/include/gtest/internal/gtest-port.h
 2075   static pthread_key_t CreateKey() {
 2076     pthread_key_t key;
 2130   const pthread_key_t key_;