Home
last modified time | relevance | path

Searched refs:pthread_key (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/
Dplatform-cygwin.cc434 pthread_key_t pthread_key) { in PthreadKeyToLocalKey() argument
439 intptr_t ptr_key = reinterpret_cast<intptr_t>(pthread_key); in PthreadKeyToLocalKey()
462 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); in DeleteThreadLocalKey() local
463 int result = pthread_key_delete(pthread_key); in DeleteThreadLocalKey()
470 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); in GetThreadLocal() local
471 return pthread_getspecific(pthread_key); in GetThreadLocal()
476 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); in SetThreadLocal() local
477 pthread_setspecific(pthread_key, value); in SetThreadLocal()
Dplatform-macos.cc634 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in DeleteThreadLocalKey() local
635 int result = pthread_key_delete(pthread_key); in DeleteThreadLocalKey()
642 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in GetThreadLocal() local
643 return pthread_getspecific(pthread_key); in GetThreadLocal()
648 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in SetThreadLocal() local
649 pthread_setspecific(pthread_key, value); in SetThreadLocal()
Dplatform-freebsd.cc537 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in DeleteThreadLocalKey() local
538 int result = pthread_key_delete(pthread_key); in DeleteThreadLocalKey()
545 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in GetThreadLocal() local
546 return pthread_getspecific(pthread_key); in GetThreadLocal()
551 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in SetThreadLocal() local
552 pthread_setspecific(pthread_key, value); in SetThreadLocal()
Dplatform-solaris.cc529 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in DeleteThreadLocalKey() local
530 int result = pthread_key_delete(pthread_key); in DeleteThreadLocalKey()
537 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in GetThreadLocal() local
538 return pthread_getspecific(pthread_key); in GetThreadLocal()
543 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in SetThreadLocal() local
544 pthread_setspecific(pthread_key, value); in SetThreadLocal()
Dplatform-openbsd.cc590 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in DeleteThreadLocalKey() local
591 int result = pthread_key_delete(pthread_key); in DeleteThreadLocalKey()
598 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in GetThreadLocal() local
599 return pthread_getspecific(pthread_key); in GetThreadLocal()
604 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in SetThreadLocal() local
605 pthread_setspecific(pthread_key, value); in SetThreadLocal()
Dplatform-linux.cc802 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in DeleteThreadLocalKey() local
803 int result = pthread_key_delete(pthread_key); in DeleteThreadLocalKey()
810 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in GetThreadLocal() local
811 return pthread_getspecific(pthread_key); in GetThreadLocal()
816 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); in SetThreadLocal() local
817 pthread_setspecific(pthread_key, value); in SetThreadLocal()