Home
last modified time | relevance | path

Searched refs:pthread_key_self_ (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dthread-inl.h53 void* thread = pthread_getspecific(Thread::pthread_key_self_); in Current()
Dthread.cc106 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()
1890 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, self), "reattach self"); in ThreadExitCallback()
1914 CHECK_PTHREAD_CALL(pthread_key_create, (&Thread::pthread_key_self_, Thread::ThreadExitCallback), in Startup()
1918 if (pthread_getspecific(pthread_key_self_) != nullptr) { in Startup()
1955 CHECK_PTHREAD_CALL(pthread_key_delete, (Thread::pthread_key_self_), "self key"); in Shutdown()
Dthread.h1344 static pthread_key_t pthread_key_self_; variable
Dthread_list.cc1456 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, nullptr), "detach self"); in Unregister()