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

/art/runtime/base/
H A Dmutex.cc119 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid) argument
121 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
229 void BaseMutex::RecordContention(uint64_t blocked_tid, argument
239 if (log[slot].blocked_tid == blocked_tid &&
240 log[slot].owner_tid == blocked_tid) {
248 log[new_slot].blocked_tid = blocked_tid;
270 uint64_t blocked_tid = log[i].blocked_tid; local
[all...]
H A Dmutex.h166 void RecordContention(uint64_t blocked_tid, uint64_t owner_tid, uint64_t nano_time_blocked);
174 ContentionLogEntry() : blocked_tid(0), owner_tid(0) {}
175 uint64_t blocked_tid; member in struct:art::BaseMutex::ContentionLogEntry

Completed in 603 milliseconds