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

1 2

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_getunique_np.c 46 return ((ptw32_thread_t*)thread.p)->seqNumber;
pthread_getw32threadhandle_np.c 52 return ((ptw32_thread_t *)thread.p)->threadH;
64 return ((ptw32_thread_t *)thread.p)->thread;
ptw32_threadDestroy.c 45 ptw32_thread_t * tp = (ptw32_thread_t *) thread.p;
46 ptw32_thread_t threadCopy;
pthread_exit.c 68 ptw32_thread_t * sp;
74 sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
ptw32_new.c 46 ptw32_thread_t * tp;
55 tp = (ptw32_thread_t *) t.p;
60 tp = (ptw32_thread_t *) calloc (1, sizeof(ptw32_thread_t));
67 /* ptHandle.p needs to point to it's parent ptw32_thread_t. */
ptw32_reuse.c 50 * ptw32_thread_t contains the original copy of it's pthread_t.
54 * linked list element in the ptw32_thread_t.
56 * Each time a thread is destroyed, the ptw32_thread_t address is pushed onto the
60 * - two pthread_t's are identical if their ptw32_thread_t reference pointers
68 * threadDestroyed = (copy.x != ((ptw32_thread_t *)copy.p)->ptHandle.x)
85 ptw32_thread_t * tp;
116 ptw32_thread_t * tp = (ptw32_thread_t *) thread.p;
123 memset(tp, 0, sizeof(ptw32_thread_t));
pthread_kill.c 79 ptw32_thread_t * tp;
84 tp = (ptw32_thread_t *) thread.p;
pthread_testcancel.c 73 ptw32_thread_t * sp = (ptw32_thread_t *) self.p;
pthread_self.c 64 ptw32_thread_t * sp;
71 sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
84 sp = (ptw32_thread_t *) self.p;
global.c 43 ptw32_thread_t * ptw32_threadReuseTop = PTW32_THREAD_REUSE_EMPTY;
44 ptw32_thread_t * ptw32_threadReuseBottom = PTW32_THREAD_REUSE_EMPTY;
pthread_getschedparam.c 72 param->sched_priority = ((ptw32_thread_t *)thread.p)->sched_priority;
pthread_setspecific.c 90 ptw32_thread_t * sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
114 ptw32_thread_t * sp = (ptw32_thread_t *) self.p;
pthread_detach.c 79 ptw32_thread_t * tp = (ptw32_thread_t *) thread.p;
97 * Joinable ptw32_thread_t structs are not scavenged until
pthread_join.c 87 ptw32_thread_t * tp = (ptw32_thread_t *) thread.p;
pthread_setcancelstate.c 85 ptw32_thread_t * sp = (ptw32_thread_t *) self.p;
pthread_setcanceltype.c 85 ptw32_thread_t * sp = (ptw32_thread_t *) self.p;
pthread_setschedparam.c 76 ptw32_thread_t * tp = (ptw32_thread_t *) thread.p;
pthread_mutex_consistent.c 120 ptw32_thread_t* tp = (ptw32_thread_t*)self.p;
142 ptw32_robust_mutex_remove(pthread_mutex_t* mutex, ptw32_thread_t* otp)
148 list = &(((ptw32_thread_t*)mx->ownerThread.p)->robustMxList);
ptw32_processTerminate.c 67 ptw32_thread_t * tp, * tpNext;
create.c 87 ptw32_thread_t * tp;
119 tp = (ptw32_thread_t *) thread.p;
138 tp->sigmask = ((ptw32_thread_t *)self.p)->sigmask;
176 priority = ((ptw32_thread_t *) self.p)->sched_priority;
pthread_win32_attach_detach_np.c 147 ptw32_thread_t * sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
206 ptw32_thread_t * sp = (ptw32_thread_t *) pthread_getspecific (ptw32_selfThreadKey);
ptw32_tkAssocCreate.c 43 ptw32_tkAssocCreate (ptw32_thread_t * sp, pthread_key_t key)
pthread_cancel.c 101 ptw32_thread_t * tp;
124 tp = (ptw32_thread_t *) thread.p;
pthread_delay_np.c 89 ptw32_thread_t * sp;
133 sp = (ptw32_thread_t *) self.p;
ptw32_callUserDestroyRoutines.c 85 ptw32_thread_t * sp = (ptw32_thread_t *) thread.p;

Completed in 76 milliseconds

1 2