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

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

Completed in 66 milliseconds