Home
last modified time | relevance | path

Searched refs:blocked_tid (Results 1 – 2 of 2) sorted by relevance

/art/runtime/base/
Dmutex.cc172 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid) in ScopedContentionRecorder() argument
174 blocked_tid_(kLogLockContentions ? blocked_tid : 0), in ScopedContentionRecorder()
309 void BaseMutex::RecordContention(uint64_t blocked_tid, in RecordContention() argument
319 if (log[slot].blocked_tid == blocked_tid && in RecordContention()
320 log[slot].owner_tid == blocked_tid) { in RecordContention()
328 log[new_slot].blocked_tid = blocked_tid; in RecordContention()
350 uint64_t blocked_tid = log[i].blocked_tid; in DumpContention() local
354 auto it = most_common_blocked.find(blocked_tid); in DumpContention()
356 most_common_blocked.Overwrite(blocked_tid, it->second + count); in DumpContention()
358 most_common_blocked.Put(blocked_tid, count); in DumpContention()
Dmutex.h118 void RecordContention(uint64_t blocked_tid, uint64_t owner_tid, uint64_t nano_time_blocked);
125 ContentionLogEntry() : blocked_tid(0), owner_tid(0) {} in ContentionLogEntry()
126 uint64_t blocked_tid; member