Home | History | Annotate | Download | only in base

Lines Matching defs:log

184           LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
215 ContentionLogEntry* log = data->contention_log;
218 if (log[slot].blocked_tid == blocked_tid &&
219 log[slot].owner_tid == blocked_tid) {
220 ++log[slot].count;
227 log[new_slot].blocked_tid = blocked_tid;
228 log[new_slot].owner_tid = owner_tid;
229 log[new_slot].count = 1;
237 const ContentionLogEntry* log = data->contention_log;
249 uint64_t blocked_tid = log[i].blocked_tid;
250 uint64_t owner_tid = log[i].owner_tid;
251 uint32_t count = log[i].count;
319 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
330 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
449 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
536 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
598 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
772 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_