Searched defs:pthread_key (Results 1 - 7 of 7) 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-linux.cc797 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); local
798 int result = pthread_key_delete(pthread_key);
805 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); local
806 return pthread_getspecific(pthread_key);
811 pthread_key_t pthread_key = static_cast<pthread_key_t>(key); local
812 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-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);
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);
/external/chromium_org/v8/src/
H A Dplatform-posix.cc635 static Thread::LocalStorageKey PthreadKeyToLocalKey(pthread_key_t pthread_key) { argument
641 intptr_t ptr_key = reinterpret_cast<intptr_t>(pthread_key);
644 return static_cast<Thread::LocalStorageKey>(pthread_key);
738 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); local
739 int result = pthread_key_delete(pthread_key);
746 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); local
747 return pthread_getspecific(pthread_key);
752 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); local
753 int result = pthread_setspecific(pthread_key, value);

Completed in 145 milliseconds