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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/tcmalloc/chromium/src/
maybe_threads.h 45 int perftools_pthread_key_create(pthread_key_t *key,
47 void *perftools_pthread_getspecific(pthread_key_t key);
48 int perftools_pthread_setspecific(pthread_key_t key, void *val);
maybe_threads.cc 60 int pthread_key_create (pthread_key_t*, void (*)(void*))
62 void *pthread_getspecific(pthread_key_t)
64 int pthread_setspecific(pthread_key_t, const void*)
74 int perftools_pthread_key_create(pthread_key_t *key,
80 *key = (pthread_key_t)(next_key++);
85 void *perftools_pthread_getspecific(pthread_key_t key) {
93 int perftools_pthread_setspecific(pthread_key_t key, void *val) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/
maybe_threads.h 45 int perftools_pthread_key_create(pthread_key_t *key,
47 void *perftools_pthread_getspecific(pthread_key_t key);
48 int perftools_pthread_setspecific(pthread_key_t key, void *val);
maybe_threads.cc 60 int pthread_key_create (pthread_key_t*, void (*)(void*))
62 void *pthread_getspecific(pthread_key_t)
64 int pthread_setspecific(pthread_key_t, const void*)
74 int perftools_pthread_key_create(pthread_key_t *key,
80 *key = (pthread_key_t)(next_key++);
85 void *perftools_pthread_getspecific(pthread_key_t key) {
93 int perftools_pthread_setspecific(pthread_key_t key, void *val) {
  /ndk/tests/device/issue38121/jni/
main.c 4 void dodgy_function(pthread_key_t* key)
11 pthread_key_t mykey;
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_key_create.c 47 pthread_key_create (pthread_key_t * key, void (PTW32_CDECL *destructor) (void *))
59 * pointer to an instance of pthread_key_t
79 pthread_key_t newkey;
81 if ((newkey = (pthread_key_t) calloc (1, sizeof (*newkey))) == NULL)
global.c 45 pthread_key_t ptw32_selfThreadKey = NULL;
46 pthread_key_t ptw32_cleanupKey = NULL;
pthread_getspecific.c 42 pthread_getspecific (pthread_key_t key)
52 * an instance of pthread_key_t
ptw32_tkAssocCreate.c 43 ptw32_tkAssocCreate (ptw32_thread_t * sp, pthread_key_t key)
  /external/llvm/lib/Support/
ThreadLocal.cpp 53 typedef int SIZE_TOO_BIG[sizeof(pthread_key_t) <= sizeof(data) ? 1 : -1];
54 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
61 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
68 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
75 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
  /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/lib/lsan/lit_tests/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;
disabler_in_tsd_destructor.cc 13 pthread_key_t key;
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadIdentifierDataPthreads.h 73 static pthread_key_t m_key;
  /external/chromium_org/third_party/skia/src/ports/
SkTLS_pthread.cpp 12 static pthread_key_t gSkTLSKey;
  /external/skia/src/ports/
SkTLS_pthread.cpp 12 static pthread_key_t gSkTLSKey;
  /ndk/sources/android/support/src/locale/
uselocale.c 32 static pthread_key_t s_locale_key;
  /bionic/libc/bionic/
pthread_key.cpp 66 static inline bool IsValidUserKey(pthread_key_t key) {
93 for (pthread_key_t key = 0; key < TLS_SLOT_FIRST_USER_SLOT; ++key) {
104 int CreateKey(pthread_key_t* result, void (*key_destructor)(void*)) {
118 void DeleteKey(pthread_key_t key) {
123 bool IsInUse(pthread_key_t key) {
127 void SetInUse(pthread_key_t key, void (*key_destructor)(void*)) {
196 int pthread_key_create(pthread_key_t* key, void (*key_destructor)(void*)) {
201 // Deletes a pthread_key_t. note that the standard mandates that this does
205 int pthread_key_delete(pthread_key_t key) {
233 void* pthread_getspecific(pthread_key_t key)
    [all...]
  /bionic/libc/private/
thread_private.h 29 pthread_key_t _private_key;
  /external/chromium_org/third_party/angle_dx11/src/compiler/
ossource_posix.cpp 21 pthread_key_t pPoolIndex;
  /frameworks/native/opengl/libs/EGL/
egldefs.h 55 extern pthread_key_t gGLWrapperKey;
  /external/chromium/base/threading/
thread_local_storage.h 65 pthread_key_t key_;
  /external/chromium_org/base/threading/
thread_local_storage.h 66 pthread_key_t key_;
  /external/chromium_org/gpu/command_buffer/common/
thread_local.h 21 typedef pthread_key_t ThreadLocalKey;

Completed in 1154 milliseconds

1 2 3 4 5 6 7 8 91011>>