Searched refs:pthread_key_self_ (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | thread.cc | 139 pthread_key_t Thread::pthread_key_self_; member in art::Thread 980 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach self"); in Init() 2406 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, self), "reattach self"); in ThreadExitCallback() 2431 CHECK_PTHREAD_CALL(pthread_key_create, (&Thread::pthread_key_self_, Thread::ThreadExitCallback), in Startup() 2435 if (pthread_getspecific(pthread_key_self_) != nullptr) { in Startup() 2463 CHECK_PTHREAD_CALL(pthread_key_delete, (Thread::pthread_key_self_), "self key"); in Shutdown()
|
D | thread_list.cc | 1518 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, nullptr), "detach self"); in Unregister()
|
D | thread.h | 1951 static pthread_key_t pthread_key_self_; variable
|