OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:owner_tid
(Results
1 - 3
of
3
) sorted by null
/external/compiler-rt/lib/tsan/rtl/
tsan_sync.h
63
int
owner_tid
; // Set only by exclusive owners.
member in struct:__tsan::SyncVar
/art/runtime/base/
mutex.h
90
void RecordContention(uint64_t blocked_tid, uint64_t
owner_tid
, uint64_t nano_time_blocked);
98
ContentionLogEntry() : blocked_tid(0),
owner_tid
(0) {}
100
uint64_t
owner_tid
;
member in struct:art::BaseMutex::ContentionLogEntry
mutex.cc
209
uint64_t
owner_tid
,
219
log[slot].
owner_tid
== blocked_tid) {
228
log[new_slot].
owner_tid
=
owner_tid
;
250
uint64_t
owner_tid
= log[i].
owner_tid
;
local
259
it = most_common_blocker.find(
owner_tid
);
261
most_common_blocker.Overwrite(
owner_tid
, it->second + count);
263
most_common_blocker.Put(
owner_tid
, count);
Completed in 27 milliseconds