Searched refs:pthreadKeySelf (Results 1 - 2 of 2) sorted by path

/dalvik/vm/
H A DGlobals.h579 pthread_key_t pthreadKeySelf; /* Thread*, for dvmThreadSelf */ member in struct:DvmGlobals
H A DThread.cpp257 if (pthread_key_create(&gDvm.pthreadKeySelf, threadExitCheck) != 0) {
263 if (pthread_getspecific(gDvm.pthreadKeySelf) != NULL)
326 pthread_key_delete(gDvm.pthreadKeySelf);
1008 return (Thread*) pthread_getspecific(gDvm.pthreadKeySelf);
1018 cc = pthread_setspecific(gDvm.pthreadKeySelf, thread);
1034 * This is associated with the pthreadKeySelf key. It's called by the
1076 int cc = pthread_setspecific(gDvm.pthreadKeySelf, self);

Completed in 321 milliseconds