HomeSort by relevance Sort by last modified time
    Searched refs:pthread_key (Results 1 - 8 of 8) sorted by null

  /external/v8/src/
platform-cygwin.cc 434 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);
platform-macos.cc 634 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);
platform-solaris.cc 529 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);
platform-freebsd.cc 537 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);
platform-linux.cc 797 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);
    [all...]
platform-openbsd.cc 590 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);
  /external/chromium_org/v8/src/
platform-posix.cc 635 static Thread::LocalStorageKey PthreadKeyToLocalKey(pthread_key_t pthread_key) {
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);
  /bionic/libc/
Android.mk 400 bionic/pthread_key.cpp.arm \
414 bionic/pthread_key.cpp \
453 bionic/pthread_key.cpp \

Completed in 132 milliseconds