Searched refs:pthread_key_self_ (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | thread-inl.h | 51 void* thread = pthread_getspecific(Thread::pthread_key_self_); in Current()
|
D | thread.cc | 88 pthread_key_t Thread::pthread_key_self_; member in art::Thread 711 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach self"); in Init() 1549 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, self), "reattach self"); in ThreadExitCallback() 1573 CHECK_PTHREAD_CALL(pthread_key_create, (&Thread::pthread_key_self_, Thread::ThreadExitCallback), in Startup() 1577 if (pthread_getspecific(pthread_key_self_) != nullptr) { in Startup() 1597 CHECK_PTHREAD_CALL(pthread_key_delete, (Thread::pthread_key_self_), "self key"); in Shutdown()
|
D | thread_list.cc | 1284 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, nullptr), "detach self"); in Unregister()
|
D | thread.h | 1234 static pthread_key_t pthread_key_self_; variable
|