Home
last modified time | relevance | path

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

/art/runtime/base/
Dmutex.cc105 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid) in ScopedContentionRecorder() argument
108 owner_tid_(kLogLockContentions ? owner_tid : 0), in ScopedContentionRecorder()
112 mutex->GetName(), owner_tid); in ScopedContentionRecorder()
236 uint64_t owner_tid, in RecordContention() argument
246 log[slot].owner_tid == blocked_tid) { in RecordContention()
255 log[new_slot].owner_tid = owner_tid; in RecordContention()
277 uint64_t owner_tid = log[i].owner_tid; in DumpContention() local
286 it = most_common_blocker.find(owner_tid); in DumpContention()
288 most_common_blocker.Overwrite(owner_tid, it->second + count); in DumpContention()
290 most_common_blocker.Put(owner_tid, count); in DumpContention()
Dmutex.h111 void RecordContention(uint64_t blocked_tid, uint64_t owner_tid, uint64_t nano_time_blocked);
118 ContentionLogEntry() : blocked_tid(0), owner_tid(0) {} in ContentionLogEntry()
120 uint64_t owner_tid; member
/art/runtime/
Dmonitor_objects_stack_visitor.h71 uint32_t owner_tid)
Dmonitor.h247 pid_t owner_tid,
Dthread.cc2038 uint32_t owner_tid) in VisitBlockedOnObject()
2055 PrintObject(obj, msg, owner_tid); in VisitBlockedOnObject()
2065 uint32_t owner_tid) REQUIRES_SHARED(Locks::mutator_lock_) { in PrintObject()
2084 if (owner_tid != ThreadList::kInvalidThreadId) { in PrintObject()
2085 os << " held by thread " << owner_tid; in PrintObject()
3030 uint32_t owner_tid ATTRIBUTE_UNUSED) in CreateAnnotatedStackTrace()
Dmonitor.cc354 pid_t owner_tid, in PrettyContentionInfo() argument
365 oss << "monitor contention with owner " << owner_name << " (" << owner_tid << ")"; in PrettyContentionInfo()