Lines Matching refs:name_
200 : name_(name), in BaseMutex()
267 << "Waiting on unacquired mutex: " << name_; in CheckSafeToWait()
289 oss << "Holding \"" << held_mutex->name_ << "\" " in CheckSafeToWait()
291 << "\"" << name_ << "\" (level " << level_ << ") " in CheckSafeToWait()
305 oss << "Holding \"" << held_mutex->name_ << "\" " in CheckSafeToWait()
307 << "\"" << name_ << "\" (level " << level_ << ")"; in CheckSafeToWait()
437 << "unexpectedly found an owner on unlocked mutex " << name_; in ~Mutex()
447 << "pthread_mutex_destroy failed for " << name_; in ~Mutex()
502 PLOG(FATAL) << "futex wait failed for " << name_; in ExclusiveLock()
528 << name_ << " " << recursion_count_; in ExclusiveLock()
617 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_; in ExclusiveTryLock()
627 << name_ << " " << recursion_count_; in ExclusiveTryLock()
697 << name_ << " " << recursion_count_; in ExclusiveUnlock()
723 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_; in ExclusiveUnlock()
729 cur_state, name_).c_str()); in ExclusiveUnlock()
742 os << (recursive_ ? "recursive " : "non-recursive ") << name_ in Dump()
791 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_rwlock_destroy failed for " << name_; in ~ReaderWriterMutex()
818 PLOG(FATAL) << "futex wait failed for " << name_; in ExclusiveLock()
858 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_; in ExclusiveUnlock()
902 PLOG(FATAL) << "timed futex wait failed for " << name_; in ExclusiveLockWithTimeout()
919 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_; in ExclusiveLockWithTimeout()
940 PLOG(FATAL) << "futex wait failed for " << name_; in HandleSharedLockContention()
970 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_; in SharedTryLock()
990 os << name_ in Dump()
1024 : name_(name), guard_(guard) { in ConditionVariable()
1044 << "ConditionVariable::~ConditionVariable for " << name_ in ~ConditionVariable()
1054 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_cond_destroy failed for " << name_; in ~ConditionVariable()
1084 PLOG(FATAL) << "futex requeue failed for " << name_; in RequeueWaiters()
1122 PLOG(FATAL) << "futex wait failed for " << name_; in WaitHoldingLocks()
1164 PLOG(FATAL) << "timed futex wait failed for " << name_; in TimedWait()
1194 PLOG(FATAL) << "TimedWait failed for " << name_; in TimedWait()