Searched refs:pthread_key (Results 1 – 1 of 1) sorted by relevance
877 static Thread::LocalStorageKey PthreadKeyToLocalKey(pthread_key_t pthread_key) { in PthreadKeyToLocalKey() argument883 intptr_t ptr_key = reinterpret_cast<intptr_t>(pthread_key); in PthreadKeyToLocalKey()886 return static_cast<Thread::LocalStorageKey>(pthread_key); in PthreadKeyToLocalKey()979 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); in DeleteThreadLocalKey() local980 int result = pthread_key_delete(pthread_key); in DeleteThreadLocalKey()987 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); in GetThreadLocal() local988 return pthread_getspecific(pthread_key); in GetThreadLocal()993 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); in SetThreadLocal() local994 int result = pthread_setspecific(pthread_key, value); in SetThreadLocal()