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

/art/runtime/base/
H A Dmutex.cc168 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid) argument
170 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
300 void BaseMutex::RecordContention(uint64_t blocked_tid, argument
310 if (log[slot].blocked_tid == blocked_tid &&
311 log[slot].owner_tid == blocked_tid) {
319 log[new_slot].blocked_tid = blocked_tid;
341 uint64_t blocked_tid = log[i].blocked_tid; local
[all...]
H A Dmutex.h196 void RecordContention(uint64_t blocked_tid, uint64_t owner_tid, uint64_t nano_time_blocked);
205 ContentionLogEntry() : blocked_tid(0), owner_tid(0) {}
206 uint64_t blocked_tid; member in struct:art::BaseMutex::ContentionLogEntry

Completed in 6 milliseconds