OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:is_freeing
(Results
1 - 4
of
4
) sorted by null
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl_mutex.cc
70
CHECK(!thr->
is_freeing
);
71
thr->
is_freeing
= true;
73
thr->
is_freeing
= false;
136
CHECK(!thr->
is_freeing
);
137
thr->
is_freeing
= true;
139
thr->
is_freeing
= false;
tsan_rtl_report.cc
518
bool old_is_freeing = thr->
is_freeing
;
519
thr->
is_freeing
= false;
521
thr->
is_freeing
= old_is_freeing;
576
if (s1.IsAtomic() && thr->
is_freeing
)
tsan_rtl.cc
898
CHECK_EQ(thr->
is_freeing
, false);
899
thr->
is_freeing
= true;
901
thr->
is_freeing
= false;
tsan_rtl.h
405
bool
is_freeing
;
member in struct:__tsan::ThreadState
Completed in 48 milliseconds