HomeSort by relevance Sort by last modified time
    Searched defs:pthread_key_t (Results 1 - 11 of 11) sorted by null

  /external/clang/test/Analysis/Inputs/
system-header-simulator.h 38 typedef __darwin_pthread_key_t pthread_key_t; typedef
39 int pthread_setspecific(pthread_key_t, const void *);
  /bionic/libc/include/
pthread.h 120 typedef int pthread_key_t; typedef
189 void* pthread_getspecific(pthread_key_t);
195 int pthread_key_create(pthread_key_t*, void (*)(void*)) __nonnull((1));
196 int pthread_key_delete(pthread_key_t);
237 int pthread_setspecific(pthread_key_t, const void*);
  /development/ndk/platforms/android-3/include/
pthread.h 84 typedef int pthread_key_t; typedef
196 int pthread_key_create(pthread_key_t *key, void (*destructor_function)(void *));
197 int pthread_key_delete (pthread_key_t);
198 int pthread_setspecific(pthread_key_t key, const void *value);
199 void *pthread_getspecific(pthread_key_t key);
  /development/ndk/platforms/android-5/include/
pthread.h 84 typedef int pthread_key_t; typedef
223 int pthread_key_create(pthread_key_t *key, void (*destructor_function)(void *));
224 int pthread_key_delete (pthread_key_t);
225 int pthread_setspecific(pthread_key_t key, const void *value);
226 void *pthread_getspecific(pthread_key_t key);
  /development/ndk/platforms/android-8/include/
pthread.h 84 typedef int pthread_key_t; typedef
228 int pthread_key_create(pthread_key_t *key, void (*destructor_function)(void *));
229 int pthread_key_delete (pthread_key_t);
230 int pthread_setspecific(pthread_key_t key, const void *value);
231 void *pthread_getspecific(pthread_key_t key);
  /development/ndk/platforms/android-9/include/
pthread.h 84 typedef int pthread_key_t; typedef
265 int pthread_key_create(pthread_key_t *key, void (*destructor_function)(void *));
266 int pthread_key_delete (pthread_key_t);
267 int pthread_setspecific(pthread_key_t key, const void *value);
268 void *pthread_getspecific(pthread_key_t key);
  /development/ndk/platforms/android-L/include/
pthread.h 120 typedef int pthread_key_t; typedef
189 void* pthread_getspecific(pthread_key_t);
193 int pthread_key_create(pthread_key_t*, void (*)(void*)) __nonnull((1));
194 int pthread_key_delete(pthread_key_t);
235 int pthread_setspecific(pthread_key_t, const void*);
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.h 125 typedef DWORD pthread_key_t; typedef
139 EXTERN_C pthread_key_t PthreadKeyCreate(void (*destr_fn)(void*)); /* port.cc */
141 inline int perftools_pthread_key_create(pthread_key_t *pkey,
143 pthread_key_t key = PthreadKeyCreate(destructor);
159 inline int perftools_pthread_setspecific(pthread_key_t key, const void *value) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.h 122 typedef DWORD pthread_key_t; typedef
136 EXTERN_C pthread_key_t PthreadKeyCreate(void (*destr_fn)(void*)); /* port.cc */
138 inline int perftools_pthread_key_create(pthread_key_t *pkey,
140 pthread_key_t key = PthreadKeyCreate(destructor);
156 inline int perftools_pthread_setspecific(pthread_key_t key, const void *value) {
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread.h 588 typedef struct pthread_key_t_ * pthread_key_t; typedef in typeref:struct:pthread_key_t_
981 PTW32_DLLPORT int PTW32_CDECL pthread_key_create (pthread_key_t * key,
984 PTW32_DLLPORT int PTW32_CDECL pthread_key_delete (pthread_key_t key);
986 PTW32_DLLPORT int PTW32_CDECL pthread_setspecific (pthread_key_t key,
989 PTW32_DLLPORT void * PTW32_CDECL pthread_getspecific (pthread_key_t key);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_platform_limits_posix.cc 860 CHECK_TYPE_SIZE(pthread_key_t); variable
    [all...]

Completed in 329 milliseconds