Home | History | Annotate | Download | only in gtest

Lines Matching defs:MutexBase

2424 // MutexBase and Mutex implement mutex on pthreads-based platforms. They
2432 // MutexBase implements behavior for both statically and dynamically
2433 // allocated mutexes. Do not use MutexBase directly. Instead, write
2443 class MutexBase {
2472 // This means MutexBase has to be a POD and its member variables
2488 extern ::testing::internal::MutexBase mutex
2497 ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, false }
2500 // shares its API with MutexBase otherwise.
2501 class Mutex : public MutexBase {
2520 explicit GTestMutexLock(MutexBase* mutex)
2526 MutexBase* const mutex_;