Home
last modified time | relevance | path

Searched refs:key_ (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_exception_storage.cpp57 pthread_key_t key_; variable
62 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()
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
Dgtest-port.h1475 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_;
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-internal-inl.h351 explicit TestPropertyKeyIs(const std::string& key) : key_(key) {} in TestPropertyKeyIs()
355 return test_property.key() == key_; in operator()
359 std::string key_;
/ndk/sources/third_party/googletest/googletest/include/gtest/
Dgtest.h469 key_(a_key), value_(a_value) { in TestProperty()
474 return key_.c_str(); in key()
489 std::string key_;