HomeSort by relevance Sort by last modified time
    Searched refs:pthread_key_t (Results 1 - 25 of 415) 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 54 static_assert(sizeof(pthread_key_t) <= sizeof(data), "size too big");
55 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
62 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
69 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
76 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
  /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;
  /bionic/libc/bionic/
malloc_debug_disable.h 39 extern pthread_key_t g_debug_calls_disabled;
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...]
  /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;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
h_errno.c 12 static pthread_key_t s_h_errno_key;
  /external/chromium_org/third_party/angle/src/common/
tls.h 21 typedef pthread_key_t TLSIndex;
  /frameworks/native/opengl/libs/EGL/
egldefs.h 56 extern pthread_key_t gGLWrapperKey;
  /external/chromium_org/gpu/command_buffer/common/
thread_local.h 21 typedef pthread_key_t ThreadLocalKey;
  /external/chromium_org/mojo/public/cpp/utility/lib/
thread_local.h 22 typedef pthread_key_t SlotType;
  /external/compiler-rt/test/asan/TestCases/Linux/
tsd_dtor_leak.cc 11 static pthread_key_t tsd_key;

Completed in 1291 milliseconds

1 2 3 4 5 6 7 8 91011>>