Home
last modified time | relevance | path

Searched refs:owner_tid (Results 1 – 6 of 6) sorted by relevance

/art/runtime/base/
Dmutex.cc157 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid) in ScopedContentionRecorder() argument
160 owner_tid_(kLogLockContentions ? owner_tid : 0), in ScopedContentionRecorder()
164 mutex->GetName(), owner_tid); in ScopedContentionRecorder()
295 uint64_t owner_tid, in RecordContention() argument
305 log[slot].owner_tid == blocked_tid) { in RecordContention()
314 log[new_slot].owner_tid = owner_tid; in RecordContention()
336 uint64_t owner_tid = log[i].owner_tid; in DumpContention() local
345 it = most_common_blocker.find(owner_tid); in DumpContention()
347 most_common_blocker.Overwrite(owner_tid, it->second + count); in DumpContention()
349 most_common_blocker.Put(owner_tid, count); in DumpContention()
Dmutex.h115 void RecordContention(uint64_t blocked_tid, uint64_t owner_tid, uint64_t nano_time_blocked);
122 ContentionLogEntry() : blocked_tid(0), owner_tid(0) {} in ContentionLogEntry()
124 uint64_t owner_tid; member
/art/runtime/
Dmonitor_objects_stack_visitor.h71 uint32_t owner_tid)
Dmonitor.h249 pid_t owner_tid,
Dthread.cc2051 uint32_t owner_tid) in VisitBlockedOnObject()
2068 PrintObject(obj, msg, owner_tid); in VisitBlockedOnObject()
2078 uint32_t owner_tid) REQUIRES_SHARED(Locks::mutator_lock_) { in PrintObject()
2097 if (owner_tid != ThreadList::kInvalidThreadId) { in PrintObject()
2098 os << " held by thread " << owner_tid; in PrintObject()
3030 uint32_t owner_tid ATTRIBUTE_UNUSED) in CreateAnnotatedStackTrace()
Dmonitor.cc399 pid_t owner_tid, in PrettyContentionInfo() argument
410 oss << "monitor contention with owner " << owner_name << " (" << owner_tid << ")"; in PrettyContentionInfo()