Home
last modified time | relevance | path

Searched refs:pthreadKeySelf (Results 1 – 2 of 2) sorted by relevance

/dalvik/vm/
DThread.cpp253 if (pthread_key_create(&gDvm.pthreadKeySelf, threadExitCheck) != 0) { in dvmThreadStartup()
259 if (pthread_getspecific(gDvm.pthreadKeySelf) != NULL) in dvmThreadStartup()
322 pthread_key_delete(gDvm.pthreadKeySelf); in dvmThreadShutdown()
1004 return (Thread*) pthread_getspecific(gDvm.pthreadKeySelf); in dvmThreadSelf()
1014 cc = pthread_setspecific(gDvm.pthreadKeySelf, thread); in setThreadSelf()
1072 int cc = pthread_setspecific(gDvm.pthreadKeySelf, self); in threadExitCheck()
DGlobals.h572 pthread_key_t pthreadKeySelf; /* Thread*, for dvmThreadSelf */ member