HomeSort by relevance Sort by last modified time
    Searched refs:ptw32_selfThreadKey (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
ptw32_processTerminate.c 70 if (ptw32_selfThreadKey != NULL)
73 * Release ptw32_selfThreadKey
75 pthread_key_delete (ptw32_selfThreadKey);
77 ptw32_selfThreadKey = NULL;
ptw32_processInitialize.c 83 if ((pthread_key_create (&ptw32_selfThreadKey, NULL) != 0) ||
pthread_self.c 67 if (!ptw32_selfThreadKey)
71 sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
135 pthread_setspecific (ptw32_selfThreadKey, (void *) sp);
pthread_exit.c 74 sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
global.c 45 pthread_key_t ptw32_selfThreadKey = NULL;
pthread_win32_attach_detach_np.c 147 ptw32_thread_t * sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
158 TlsSetValue (ptw32_selfThreadKey->key, NULL);
206 ptw32_thread_t * sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
244 TlsSetValue (ptw32_selfThreadKey->key, NULL);
pthread_setspecific.c 71 if (key != ptw32_selfThreadKey)
90 ptw32_thread_t * sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
ptw32_throw.c 71 ptw32_thread_t * sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
ptw32_threadStart.c 168 pthread_setspecific (ptw32_selfThreadKey, sp);
170 pthread_setspecific (ptw32_selfThreadKey, sp);
implement.h 580 extern pthread_key_t ptw32_selfThreadKey;
    [all...]

Completed in 2959 milliseconds