OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:detect_leaks
(Results
1 - 6
of
6
) sorted by null
/external/compiler-rt/lib/lsan/
lsan.cc
33
cf->
detect_leaks
= true;
66
if (common_flags()->
detect_leaks
&& common_flags()->leak_check_at_exit)
lsan_common.cc
126
if (common_flags()->
detect_leaks
) {
632
if (!common_flags()->
detect_leaks
)
696
if (!__lsan::disable_counter && common_flags()->
detect_leaks
) {
707
if (common_flags()->
detect_leaks
)
/external/compiler-rt/lib/sanitizer_common/
sanitizer_flags.h
41
bool
detect_leaks
;
member in struct:__sanitizer::CommonFlags
sanitizer_flags.cc
48
f->
detect_leaks
= true;
96
ParseFlag(str, &f->
detect_leaks
, "
detect_leaks
",
100
"
detect_leaks
=false, or if __lsan_do_leak_check() is called before the "
/external/compiler-rt/lib/tsan/tests/unit/
tsan_flags_test.cc
75
"
detect_leaks
=0"
120
"
detect_leaks
=true"
165
EXPECT_EQ(f->
detect_leaks
, 0);
210
EXPECT_EQ(f->
detect_leaks
, true);
/external/compiler-rt/lib/asan/
asan_rtl.cc
236
cf->
detect_leaks
= CAN_SANITIZE_LEAKS;
298
if (!CAN_SANITIZE_LEAKS && cf->
detect_leaks
) {
299
Report("%s:
detect_leaks
is not supported on this platform.\n",
301
cf->
detect_leaks
= false;
689
if (common_flags()->
detect_leaks
&& common_flags()->leak_check_at_exit) {
Completed in 1203 milliseconds