Searched refs:pthread_key_self_ (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dthread.h113 void* thread = pthread_getspecific(Thread::pthread_key_self_);
654 static pthread_key_t pthread_key_self_; variable
H A Dthread.cc75 pthread_key_t Thread::pthread_key_self_; member in class:art::Thread
305 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach self");
900 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, self), "reattach self");
915 // Thread::pthread_key_self_ is not yet initialized.
923 CHECK_PTHREAD_CALL(pthread_key_create, (&Thread::pthread_key_self_, Thread::ThreadExitCallback), "self key");
926 if (pthread_getspecific(pthread_key_self_) != NULL) {
945 CHECK_PTHREAD_CALL(pthread_key_delete, (Thread::pthread_key_self_), "self key");
H A Dthread_list.cc551 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self");

Completed in 61 milliseconds