Lines Matching refs:name_

185     : name_(name),  in BaseMutex()
240 << "Waiting on unacquired mutex: " << name_; in CheckSafeToWait()
262 oss << "Holding \"" << held_mutex->name_ << "\" " in CheckSafeToWait()
264 << "\"" << name_ << "\" (level " << level_ << ") " in CheckSafeToWait()
272 oss << "Holding \"" << held_mutex->name_ << "\" " in CheckSafeToWait()
274 << "\"" << name_ << "\" (level " << level_ << ")"; in CheckSafeToWait()
404 << "unexpectedly found an owner on unlocked mutex " << name_; in ~Mutex()
414 << "pthread_mutex_destroy failed for " << name_; in ~Mutex()
454 PLOG(FATAL) << "futex wait failed for " << name_; in ExclusiveLock()
479 << name_ << " " << recursion_count_; in ExclusiveLock()
509 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_; in ExclusiveTryLock()
519 << name_ << " " << recursion_count_; in ExclusiveTryLock()
586 << name_ << " " << recursion_count_; in ExclusiveUnlock()
612 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_; in ExclusiveUnlock()
618 cur_state, name_).c_str()); in ExclusiveUnlock()
632 << name_ in Dump()
679 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_rwlock_destroy failed for " << name_; in ~ReaderWriterMutex()
706 PLOG(FATAL) << "futex wait failed for " << name_; in ExclusiveLock()
746 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_; in ExclusiveUnlock()
789 PLOG(FATAL) << "timed futex wait failed for " << name_; in ExclusiveLockWithTimeout()
806 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_; in ExclusiveLockWithTimeout()
827 PLOG(FATAL) << "futex wait failed for " << name_; in HandleSharedLockContention()
857 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_; in SharedTryLock()
877 os << name_ in Dump()
911 : name_(name), guard_(guard) { in ConditionVariable()
931 << "ConditionVariable::~ConditionVariable for " << name_ in ~ConditionVariable()
941 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_cond_destroy failed for " << name_; in ~ConditionVariable()
971 PLOG(FATAL) << "futex requeue failed for " << name_; in RequeueWaiters()
1009 PLOG(FATAL) << "futex wait failed for " << name_; in WaitHoldingLocks()
1051 PLOG(FATAL) << "timed futex wait failed for " << name_; in TimedWait()
1081 PLOG(FATAL) << "TimedWait failed for " << name_; in TimedWait()