Searched refs:pthread_key_self_ (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | thread-current-inl.h | 39 void* thread = pthread_getspecific(Thread::pthread_key_self_); in Current()
|
D | thread.cc | 128 pthread_key_t Thread::pthread_key_self_; member in art::Thread 938 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach self"); in Init() 2201 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, self), "reattach self"); in ThreadExitCallback() 2225 CHECK_PTHREAD_CALL(pthread_key_create, (&Thread::pthread_key_self_, Thread::ThreadExitCallback), in Startup() 2229 if (pthread_getspecific(pthread_key_self_) != nullptr) { in Startup() 2254 CHECK_PTHREAD_CALL(pthread_key_delete, (Thread::pthread_key_self_), "self key"); in Shutdown()
|
D | thread_list.cc | 1487 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, nullptr), "detach self"); in Unregister()
|
D | thread.h | 1455 static pthread_key_t pthread_key_self_; variable
|