Home | History | Annotate | Download | only in vm

Lines Matching refs:pThread

132 The VM maintains a Thread struct for every pthread known to the VM.  There
193 Monitor locks, which are also implemented with pthread calls, should not
262 /* test our pthread lib */
264 ALOGW("WARNING: newly-created pthread TLS slot is not NULL");
338 * this lock recursively. Doesn't work with "fast" pthread mutexes.
1035 * pthread library when a thread is exiting and the "self" pointer in TLS
1049 * Because some implementations may want to use the pthread destructor
1454 * pthread entry function for threads started from interpreted code.
1653 pArgs->pThread = &newThread;
1708 * pthread entry function for internally-created threads.
1735 *pArgs->pThread = dvmThreadSelf();
1755 assert(*pArgs->pThread == NULL);
1759 assert(*pArgs->pThread == NULL);
3050 * Given a pthread handle, return the associated Thread*.