| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_posix.cc | 50 struct tsd_key { struct in namespace:__asan 51 tsd_key() : key(nullptr) {} function in struct:__asan::tsd_key 52 ~tsd_key() { 60 static thread_local struct tsd_key key; 88 static pthread_key_t tsd_key; member in namespace:__asan 93 CHECK_EQ(0, pthread_key_create(&tsd_key, destructor)); 98 return pthread_getspecific(tsd_key); 103 pthread_setspecific(tsd_key, tsd); 110 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd));
|
| /src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| asan_posix.cpp | 78 struct tsd_key { struct in namespace:__asan 79 tsd_key() : key(nullptr) {} function in struct:__asan::tsd_key 80 ~tsd_key() { 88 static thread_local struct tsd_key key; 116 static pthread_key_t tsd_key; member in namespace:__asan 121 CHECK_EQ(0, pthread_key_create(&tsd_key, destructor)); 126 return pthread_getspecific(tsd_key); 131 pthread_setspecific(tsd_key, tsd); 138 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd));
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_posix.cpp | 77 struct tsd_key { struct in namespace:__asan 78 tsd_key() : key(nullptr) {} function in struct:__asan::tsd_key 79 ~tsd_key() { 87 static thread_local struct tsd_key key; 115 static pthread_key_t tsd_key; member in namespace:__asan 120 CHECK_EQ(0, pthread_key_create(&tsd_key, destructor)); 125 return pthread_getspecific(tsd_key); 130 pthread_setspecific(tsd_key, tsd); 137 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd));
|
| /src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
| msan_linux.cc | 185 struct tsd_key { struct in namespace:__msan 186 tsd_key() : key(nullptr) {} function in struct:__msan::tsd_key 187 ~tsd_key() { 195 static thread_local struct tsd_key key; 223 static pthread_key_t tsd_key; member in namespace:__msan 229 CHECK_EQ(0, pthread_key_create(&tsd_key, destructor)); 244 pthread_setspecific(tsd_key, (void *)t); 251 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd));
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/ |
| hwasan_linux.cpp | 265 static pthread_key_t tsd_key; member in namespace:__hwasan 270 CHECK_EQ(0, pthread_setspecific(tsd_key, 277 CHECK_EQ(0, pthread_setspecific(tsd_key, (void *)(iterations - 1))); 286 CHECK_EQ(0, pthread_key_create(&tsd_key, HwasanTSDDtor));
|
| /src/external/gpl3/binutils/dist/gprofng/libcollector/ |
| jprofile.c | 91 static unsigned tsd_key = COLLECTOR_TSD_INVALID_KEY; variable 204 tsd_key = collector_interface->createKey (sizeof ( TSD_Entry), NULL, NULL); 205 if (tsd_key == (unsigned) - 1) 213 Tprintf (DBG_LT2, "jprofile: TSD key create succeeded %d.\n", tsd_key); 306 tsd_key = COLLECTOR_TSD_INVALID_KEY; 324 tsd_key = COLLECTOR_TSD_INVALID_KEY; 628 TSD_Entry *tsd = collector_interface->getKey (tsd_key); 648 TSD_Entry *tsd = collector_interface->getKey (tsd_key); 1057 TSD_Entry *tsd = collector_interface->getKey (tsd_key); 1067 TSD_Entry *tsd = collector_interface->getKey (tsd_key); [all...] |
| /src/external/gpl3/binutils.old/dist/gprofng/libcollector/ |
| jprofile.c | 91 static unsigned tsd_key = COLLECTOR_TSD_INVALID_KEY; variable 204 tsd_key = collector_interface->createKey (sizeof ( TSD_Entry), NULL, NULL); 205 if (tsd_key == (unsigned) - 1) 213 Tprintf (DBG_LT2, "jprofile: TSD key create succeeded %d.\n", tsd_key); 306 tsd_key = COLLECTOR_TSD_INVALID_KEY; 324 tsd_key = COLLECTOR_TSD_INVALID_KEY; 628 TSD_Entry *tsd = collector_interface->getKey (tsd_key); 648 TSD_Entry *tsd = collector_interface->getKey (tsd_key); 1057 TSD_Entry *tsd = collector_interface->getKey (tsd_key); 1067 TSD_Entry *tsd = collector_interface->getKey (tsd_key); [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/hwasan/ |
| hwasan_linux.cpp | 317 static pthread_key_t tsd_key; member in namespace:__hwasan 322 CHECK_EQ(0, pthread_setspecific(tsd_key, 329 CHECK_EQ(0, pthread_setspecific(tsd_key, (void *)(iterations - 1))); 338 CHECK_EQ(0, pthread_key_create(&tsd_key, HwasanTSDDtor));
|