Searched refs:key_ (Results 1 – 4 of 4) sorted by relevance
57 pthread_key_t key_; variable62 if ( 0 != ::pthread_setspecific ( key_, NULL ) ) in destruct_()67 if ( 0 != pthread_key_create ( &key_, destruct_ ) ) in construct_()83 if ( 0 != pthread_setspecific ( key_, retVal ) ) in __cxa_get_globals()98 return static_cast<__cxa_eh_globals*>(::pthread_getspecific(key_)); in __cxa_get_globals_fast()
1475 ThreadLocal() : key_(CreateKey()),1477 explicit ThreadLocal(const T& value) : key_(CreateKey()),1482 DeleteThreadLocalValue(pthread_getspecific(key_));1486 GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_));1518 static_cast<ThreadLocalValueHolderBase*>(pthread_getspecific(key_));1525 GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));1530 const pthread_key_t key_;
351 explicit TestPropertyKeyIs(const std::string& key) : key_(key) {} in TestPropertyKeyIs()355 return test_property.key() == key_; in operator()359 std::string key_;
469 key_(a_key), value_(a_value) { in TestProperty()474 return key_.c_str(); in key()489 std::string key_;