Searched defs:owner_tid (Results 1 - 4 of 4) sorted by relevance

/art/runtime/base/
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) {}
207 uint64_t owner_tid; member in struct:art::BaseMutex::ContentionLogEntry
H A Dmutex.cc168 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid) argument
171 owner_tid_(kLogLockContentions ? owner_tid : 0),
175 mutex->GetName(), owner_tid);
301 uint64_t owner_tid,
311 log[slot].owner_tid == blocked_tid) {
320 log[new_slot].owner_tid = owner_tid;
342 uint64_t owner_tid = log[i].owner_tid; local
351 it = most_common_blocker.find(owner_tid);
300 RecordContention(uint64_t blocked_tid, uint64_t owner_tid, uint64_t nano_time_blocked) argument
[all...]
/art/runtime/
H A Dmonitor.cc350 pid_t owner_tid,
361 oss << "monitor contention with owner " << owner_name << " (" << owner_tid << ")"; local
349 PrettyContentionInfo(const std::string& owner_name, pid_t owner_tid, ArtMethod* owners_method, uint32_t owners_dex_pc, size_t num_waiters) argument
H A Dthread.cc1849 uint32_t owner_tid)
1866 PrintObject(obj, msg, owner_tid);
1876 uint32_t owner_tid) REQUIRES_SHARED(Locks::mutator_lock_) {
1895 if (owner_tid != ThreadList::kInvalidThreadId) {
1896 os << " held by thread " << owner_tid; local
2826 uint32_t owner_tid ATTRIBUTE_UNUSED)

Completed in 100 milliseconds