HomeSort by relevance Sort by last modified time
    Searched full:pthread_key (Results 1 - 7 of 7) 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-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-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-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);
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-linux.cc 802 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);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 320 // 'void *ptheread_getspecific(pthread_key)'. So even thought the

Completed in 572 milliseconds