HomeSort by relevance Sort by last modified time
    Searched refs:pthread_key_t (Results 1 - 25 of 171) sorted by null

1 2 3 4 5 6 7

  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/pthread_h/
3-6-buildonly.c 8 Test pthread_key_t
13 pthread_key_t dummy;
  /external/swiftshader/third_party/LLVM/lib/Support/
ThreadLocal.cpp 44 pthread_key_t* key = new pthread_key_t;
52 pthread_key_t* key = static_cast<pthread_key_t*>(data);
60 pthread_key_t* key = static_cast<pthread_key_t*>(data);
67 pthread_key_t* key = static_cast<pthread_key_t*>(data);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
posix_tss_ptr.hpp 28 ASIO_DECL void posix_tss_ptr_create(pthread_key_t& key);
62 pthread_key_t tss_key_;
  /external/deqp/framework/delibs/dethread/unix/
deThreadLocalUnix.c 34 DE_STATIC_ASSERT(sizeof(pthread_key_t) <= sizeof(deThreadLocal));
36 /* \note 0 is valid pthread_key_t, but not valid for deThreadLocal */
38 DE_INLINE deThreadLocal keyToThreadLocal (pthread_key_t key)
43 DE_INLINE pthread_key_t threadLocalToKey (deThreadLocal threadLocal)
46 return (pthread_key_t)(threadLocal - 1);
51 pthread_key_t key = (pthread_key_t)0;
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
ServerConnection.h 44 static pthread_key_t s_glKey;
45 static pthread_key_t s_connectionKey;
  /external/compiler-rt/test/lsan/TestCases/
use_tls_pthread_specific_dynamic.cc 19 pthread_key_t dummy_keys[kDummyKeysCount];
24 pthread_key_t key;
use_tls_pthread_specific_static.cc 17 pthread_key_t key;
cleanup_in_tsd_destructor.c 18 pthread_key_t key;
disabler_in_tsd_destructor.c 13 pthread_key_t key;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getspecific/
3-1.c 15 * 1. Create pthread_key_t object and do no specify a key accociated with this key
28 pthread_key_t key;
1-1.c 15 * 1. Create NUM_OF_KEYS pthread_key_t objects
32 pthread_key_t keys[NUM_OF_KEYS];
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_delete/
1-1.c 35 pthread_key_t keys[NUM_OF_KEYS];
1-2.c 36 pthread_key_t keys[NUM_OF_KEYS];
  /external/skia/src/ports/
SkTLS_pthread.cpp 13 static pthread_key_t gSkTLSKey;
  /external/skqp/src/ports/
SkTLS_pthread.cpp 13 static pthread_key_t gSkTLSKey;
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/OSDependent/Unix/
ossource.cpp 102 inline OS_TLSIndex PthreadKeyToTLSIndex(pthread_key_t key)
107 inline pthread_key_t TLSIndexToPthreadKey(OS_TLSIndex nIndex)
109 return (pthread_key_t)((uintptr_t)nIndex - 1);
114 pthread_key_t pPoolIndex;
  /bionic/libc/malloc_debug/
debug_disable.cpp 35 pthread_key_t g_disable_key;
  /external/ImageMagick/MagickCore/
thread_.h 38 typedef pthread_key_t MagickThreadKey;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_create/
2-1.c 28 pthread_key_t key;
1-1.c 32 pthread_key_t keys[NUM_OF_KEYS];
3-1.c 31 pthread_key_t key;
  /external/swiftshader/src/OpenGL/compiler/
ossource_posix.cpp 29 pthread_key_t pPoolIndex;
  /frameworks/native/opengl/libs/EGL/
egldefs.h 56 extern pthread_key_t gGLWrapperKey;
  /build/kati/
thread_local.h 58 template <typename Type, pthread_key_t* key>
64 template <typename Type, pthread_key_t* key, pthread_once_t* once>
89 pthread_key_t name##_key; \
  /bionic/libc/bionic/
pthread_key.cpp 63 static_assert(sizeof(pthread_key_t) == sizeof(int) && static_cast<pthread_key_t>(-1) < 0,
64 "pthread_key_t should be typedef to int");
66 static inline bool KeyInValidRange(pthread_key_t key) {
120 int pthread_key_create(pthread_key_t* key, void (*key_destructor)(void*)) {
134 // Deletes a pthread_key_t. note that the standard mandates that this does
139 int pthread_key_delete(pthread_key_t key) {
155 void* pthread_getspecific(pthread_key_t key) {
174 int pthread_setspecific(pthread_key_t key, const void* ptr) {

Completed in 507 milliseconds

1 2 3 4 5 6 7