Searched refs:pthread_key (Results 1 – 1 of 1) sorted by relevance
560 static Thread::LocalStorageKey PthreadKeyToLocalKey(pthread_key_t pthread_key) { in PthreadKeyToLocalKey() argument566 intptr_t ptr_key = reinterpret_cast<intptr_t>(pthread_key); in PthreadKeyToLocalKey()569 return static_cast<Thread::LocalStorageKey>(pthread_key); in PthreadKeyToLocalKey()663 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); in DeleteThreadLocalKey() local664 int result = pthread_key_delete(pthread_key); in DeleteThreadLocalKey()671 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); in GetThreadLocal() local672 return pthread_getspecific(pthread_key); in GetThreadLocal()677 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); in SetThreadLocal() local678 int result = pthread_setspecific(pthread_key, value); in SetThreadLocal()