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

References

lib/Support/Unix/ThreadLocal.inc
   46   int errorcode = pthread_setspecific(*key, d);
projects/compiler-rt/lib/asan/asan_posix.cpp
  102   pthread_setspecific(tsd_key, tsd);
  109     CHECK_EQ(0, pthread_setspecific(tsd_key, tsd));
projects/compiler-rt/lib/builtins/emutls.c
   93   pthread_setspecific(emutls_pthread_key, (void *)value);
projects/compiler-rt/lib/hwasan/hwasan_linux.cpp
  304     CHECK_EQ(0, pthread_setspecific(tsd_key,
  311     CHECK_EQ(0, pthread_setspecific(tsd_key, (void *)(iterations - 1)));
projects/compiler-rt/lib/msan/msan_linux.cpp
  243   pthread_setspecific(tsd_key, (void *)t);
  250     CHECK_EQ(0, pthread_setspecific(tsd_key, tsd));
projects/compiler-rt/lib/safestack/safestack.cpp
  138   pthread_setspecific(thread_cleanup_key, (void *)1);
  162   pthread_setspecific(thread_cleanup_key, NULL);
projects/compiler-rt/lib/scudo/scudo_tsd_exclusive.cpp
   40     if (LIKELY(pthread_setspecific(PThreadKey,
   59   CHECK_EQ(pthread_setspecific(PThreadKey, reinterpret_cast<void *>(
projects/compiler-rt/lib/scudo/standalone/tsd_exclusive.h
   77         pthread_setspecific(PThreadKey, reinterpret_cast<void *>(Instance)), 0);
  108     if (LIKELY(pthread_setspecific(Instance->getTSDRegistry()->PThreadKey,
projects/compiler-rt/lib/xray/xray_basic_logging.cpp
  132     pthread_setspecific(PThreadKey, &TLD);
projects/compiler-rt/lib/xray/xray_fdr_logging.cpp
  136     pthread_setspecific(Key, &TLDStorage);
projects/compiler-rt/lib/xray/xray_profiling.cpp
   76     pthread_setspecific(ProfilingKey, &TLD);
projects/openmp/runtime/src/z_Linux_util.cpp
 1711     status = pthread_setspecific(__kmp_gtid_threadprivate_key,
usr/include/x86_64-linux-gnu/c++/7.4.0/bits/gthr-default.h
  103 __gthrw(pthread_setspecific)
utils/unittest/googletest/include/gtest/internal/gtest-port.h
 2093     GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));