OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lsan
(Results
1 - 25
of
61
) sorted by null
1
2
3
/external/compiler-rt/test/lsan/
CMakeLists.txt
16
list(APPEND LSAN_TEST_DEPS
lsan
asan)
18
add_lit_testsuite(check-
lsan
"Running the LeakSanitizer tests"
22
set_target_properties(check-
lsan
PROPERTIES FOLDER "
LSan
tests")
lit.common.cfg
3
# Common configuration for running leak detection tests under
LSan
/ASan.
19
# Choose between standalone and
LSan
+ASan modes.
30
lit_config.fatal("Unknown
LSan
test mode: %r" % lsan_lit_test_mode)
/external/chromium_org/sandbox/linux/tests/
sandbox_test_runner.h
20
// Override to decide whether or not to check for leaks with
LSAN
21
// (if built with
LSAN
and
LSAN
is enabled).
/external/compiler-rt/lib/lsan/
CMakeLists.txt
11
lsan
.cc
24
add_custom_target(
lsan
)
41
add_compiler_rt_runtime(clang_rt.
lsan
-${arch} ${arch} STATIC
48
add_dependencies(
lsan
clang_rt.
lsan
-${arch})
52
add_dependencies(compiler-rt
lsan
)
Makefile.mk
1
#===- lib/
lsan
/Makefile.mk ---------------------------------*- Makefile -*--===#
10
ModuleName :=
lsan
23
# Define a convenience variable for all the
lsan
functions.
26
#
lsan
functions used in another sanitizers.
lsan.cc
1
//=--
lsan
.cc -------------------------------------------------------------===//
11
// Standalone
LSan
RTL.
15
#include "
lsan
.h"
38
///// Interface to the common
LSan
module. /////
lsan.h
1
//=--
lsan
.h --------------------------------------------------------------===//
11
// Private header for standalone
LSan
RTL.
/external/compiler-rt/test/lsan/TestCases/
stale_stack_leak.cc
1
// Test that out-of-scope local variables are ignored by
LSan
.
12
// Put pointer far enough on the stack that
LSan
has space to run in without
30
// This must run after
LSan
, to ensure
LSan
didn't overwrite the pointer before
31
// it had a chance to see it. If
LSan
is invoked with atexit(), this works.
35
fprintf(stderr, "Value after
LSan
: %p.\n", *pp);
42
// CHECK-sanity: Value after
LSan
: [[ADDR]].
link_turned_off.cc
1
// Test for disabling
LSan
at link-time.
pointer_to_self.cc
1
// Regression test: pointers to self should not confuse
LSan
into thinking the
cleanup_in_tsd_destructor.cc
4
// additional cleanup tasks).
LSan
doesn't actually meet that goal 100%, but it
do_leak_check_override.cc
3
// "normal" mode (
LSan
runs in "strict" mode by default).
/external/chromium_org/third_party/skia/tools/
lsan.supp
1
# Supressions for
LSAN
.
3
# ASAN_OPTIONS=detect_leaks=1 LSAN_OPTIONS=suppressions=tools/
lsan
.supp out/Debug/$FOO
/external/compiler-rt/lib/
CMakeLists.txt
24
#
LSan
, UBsan and profile can be built on Mac OS, FreeBSD and Linux.
25
add_subdirectory(
lsan
)
Makefile.mk
17
SubDirs +=
lsan
/external/compiler-rt/test/sanitizer_common/TestCases/
malloc_hook.cc
3
// Malloc/free hooks are not supported on Windows and doesn't work in
LSan
.
4
// XFAIL: win32,
lsan
print-stack-trace.cc
6
// XFAIL: tsan,
lsan
/external/skia/tools/
lsan.supp
1
# Supressions for
LSAN
.
3
# ASAN_OPTIONS=detect_leaks=1 LSAN_OPTIONS=suppressions=tools/
lsan
.supp out/Debug/$FOO
/external/compiler-rt/lib/tsan/
check_cmake.sh
18
ninja check-
lsan
/external/compiler-rt/test/asan/TestCases/
lsan_annotations.cc
4
// Check that
LSan
annotations work fine.
/external/chromium_org/base/debug/
leak_annotations.h
24
// Public
LSan
API from <sanitizer/lsan_interface.h>.
49
// If neither HeapChecker nor
LSan
are used, the annotations should be no-ops.
/external/clang/test/Driver/
sanitizer-ld.c
256
// RUN: | FileCheck --check-prefix=CHECK-
LSAN
-LINUX %s
258
// CHECK-
LSAN
-LINUX: "{{(.*[^-.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
259
// CHECK-
LSAN
-LINUX-NOT: "-lc"
260
// CHECK-
LSAN
-LINUX: libclang_rt.
lsan
-x86_64.a"
261
// CHECK-
LSAN
-LINUX: "-lpthread"
262
// CHECK-
LSAN
-LINUX: "-ldl"
267
// RUN: | FileCheck --check-prefix=CHECK-
LSAN
-UBSAN-LINUX %s
268
// CHECK-
LSAN
-UBSAN-LINUX: "{{.*}}ld{{(.exe)?}}"
269
// CHECK-
LSAN
-UBSAN-LINUX-NOT: libclang_rt.sa
[
all
...]
/external/compiler-rt/include/sanitizer/
lsan_interface.h
36
// -
LSan
will skip any inaccessible memory when scanning a root region. E.g.,
44
// Calling this function makes
LSan
enter the leak checking phase immediately.
59
// a string containing
LSan
suppressions.
/external/compiler-rt/lib/sanitizer_common/scripts/
check_lint.sh
93
#
LSan
94
LSAN_RTL=${COMPILER_RT}/lib/
lsan
96
run_lint ${LSAN_LIT_TEST_LINT_FILTER} ${LIT_TESTS}/
lsan
/*/*.cc &
/external/compiler-rt/test/
CMakeLists.txt
34
add_subdirectory(
lsan
)
Completed in 1289 milliseconds
1
2
3