Home
last modified time | relevance | path

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

/art/runtime/base/
Dmutex.cc171 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid) in ScopedContentionRecorder() argument
174 owner_tid_(kLogLockContentions ? owner_tid : 0), in ScopedContentionRecorder()
178 mutex->GetName(), owner_tid); in ScopedContentionRecorder()
309 uint64_t owner_tid, in RecordContention() argument
319 log[slot].owner_tid == blocked_tid) { in RecordContention()
328 log[new_slot].owner_tid = owner_tid; in RecordContention()
350 uint64_t owner_tid = log[i].owner_tid; in DumpContention() local
359 it = most_common_blocker.find(owner_tid); in DumpContention()
361 most_common_blocker.Overwrite(owner_tid, it->second + count); in DumpContention()
363 most_common_blocker.Put(owner_tid, count); in DumpContention()
[all …]
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.h255 pid_t owner_tid,
Dthread.cc2061 uint32_t owner_tid) in VisitBlockedOnObject()
2078 PrintObject(obj, msg, owner_tid); in VisitBlockedOnObject()
2088 uint32_t owner_tid) REQUIRES_SHARED(Locks::mutator_lock_) { in PrintObject()
2107 if (owner_tid != ThreadList::kInvalidThreadId) { in PrintObject()
2108 os << " held by thread " << owner_tid; in PrintObject()
3101 uint32_t owner_tid ATTRIBUTE_UNUSED) in CreateAnnotatedStackTrace()
Dmonitor.cc403 pid_t owner_tid, in PrettyContentionInfo() argument
414 oss << "monitor contention with owner " << owner_name << " (" << owner_tid << ")"; in PrettyContentionInfo()