OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:owner_tid
(Results
1 - 6
of
6
) sorted by null
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl_mutex.cc
63
&& s->
owner_tid
!= SyncVar::kInvalidTid
91
if (s->
owner_tid
== SyncVar::kInvalidTid) {
93
s->
owner_tid
= thr->tid;
95
} else if (s->
owner_tid
== thr->tid) {
131
} else if (s->
owner_tid
!= thr->tid) {
142
s->
owner_tid
= SyncVar::kInvalidTid;
165
if (s->
owner_tid
!= SyncVar::kInvalidTid) {
186
if (s->
owner_tid
!= SyncVar::kInvalidTid) {
206
if (s->
owner_tid
== SyncVar::kInvalidTid) {
216
} else if (s->
owner_tid
== thr->tid)
[
all
...]
tsan_sync.h
63
int
owner_tid
; // Set only by exclusive owners.
member in struct:__tsan::SyncVar
tsan_sync.cc
24
,
owner_tid
(kInvalidTid)
/art/runtime/base/
mutex-inl.h
46
ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t
owner_tid
)
49
owner_tid_(kLogLockContentions ?
owner_tid
: 0),
52
mutex->GetName(),
owner_tid
);
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);
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
Completed in 84 milliseconds