OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full: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/
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
));
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_threadDestroy.c
45
ptw32_thread_t
* tp = (
ptw32_thread_t
*) thread.p;
46
ptw32_thread_t
threadCopy;
pthread_getw32threadhandle_np.c
52
return ((
ptw32_thread_t
*)thread.p)->threadH;
64
return ((
ptw32_thread_t
*)thread.p)->thread;
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);
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_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);
global.c
43
ptw32_thread_t
* ptw32_threadReuseTop = PTW32_THREAD_REUSE_EMPTY;
44
ptw32_thread_t
* ptw32_threadReuseBottom = PTW32_THREAD_REUSE_EMPTY;
pthread_exit.c
68
ptw32_thread_t
* sp;
74
sp = (
ptw32_thread_t
*) pthread_getspecific (ptw32_selfThreadKey);
pthread_kill.c
79
ptw32_thread_t
* tp;
84
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_testcancel.c
73
ptw32_thread_t
* sp = (
ptw32_thread_t
*) self.p;
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_getunique_np.c
46
return ((
ptw32_thread_t
*)thread.p)->seqNumber;
pthread_detach.c
79
ptw32_thread_t
* tp = (
ptw32_thread_t
*) thread.p;
97
* Joinable
ptw32_thread_t
structs are not scavenged until
pthread_self.c
64
ptw32_thread_t
* sp;
71
sp = (
ptw32_thread_t
*) pthread_getspecific (ptw32_selfThreadKey);
84
sp = (
ptw32_thread_t
*) self.p;
pthread_getschedparam.c
72
param->sched_priority = ((
ptw32_thread_t
*)thread.p)->sched_priority;
implement.h
152
typedef struct ptw32_thread_t_
ptw32_thread_t
;
typedef in typeref:struct:ptw32_thread_t_
160
ptw32_thread_t
* prevReuse; /* Links threads on reuse stack */
502
ptw32_thread_t
* thread;
575
#define PTW32_THREAD_REUSE_EMPTY ((
ptw32_thread_t
*)(size_t) 1)
578
extern
ptw32_thread_t
* ptw32_threadReuseTop;
579
extern
ptw32_thread_t
* ptw32_threadReuseBottom;
626
void ptw32_robust_mutex_remove(pthread_mutex_t* mutex,
ptw32_thread_t
* otp);
661
int ptw32_tkAssocCreate (
ptw32_thread_t
* thread, pthread_key_t key);
[
all
...]
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;
pthread_join.c
87
ptw32_thread_t
* tp = (
ptw32_thread_t
*) thread.p;
ptw32_throw.c
71
ptw32_thread_t
* sp = (
ptw32_thread_t
*) pthread_getspecific (ptw32_selfThreadKey);
w32_CancelableWait.c
59
ptw32_thread_t
* sp;
67
sp = (
ptw32_thread_t
*) self.p;
Completed in 2110 milliseconds
1
2