Searched refs:strip_path_prefix (Results 1 – 9 of 9) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_stacktrace_printer.cc | 31 const char *strip_path_prefix, const char *strip_func_prefix) { in RenderFrame() argument 52 buffer->append("%s", StripPathPrefix(info.module, strip_path_prefix)); in RenderFrame() 66 buffer->append("%s", StripPathPrefix(info.file, strip_path_prefix)); in RenderFrame() 87 strip_path_prefix); in RenderFrame() 93 vs_style, strip_path_prefix); in RenderFrame() 96 strip_path_prefix); in RenderFrame() 121 const char *strip_path_prefix) { in RenderSourceLocation() argument 123 buffer->append("%s(%d", StripPathPrefix(file, strip_path_prefix), line); in RenderSourceLocation() 130 buffer->append("%s", StripPathPrefix(file, strip_path_prefix)); in RenderSourceLocation() 139 uptr offset, const char *strip_path_prefix) { in RenderModuleLocation() argument [all …]
|
D | sanitizer_stacktrace_printer.h | 52 const char *strip_path_prefix = "", 57 const char *strip_path_prefix); 60 uptr offset, const char *strip_path_prefix);
|
D | sanitizer_common.cc | 171 const char *strip_path_prefix) { in StripPathPrefix() argument 173 if (!strip_path_prefix) return filepath; in StripPathPrefix() 175 if (const char *pos = internal_strstr(filepath, strip_path_prefix)) in StripPathPrefix() 176 res = pos + internal_strlen(strip_path_prefix); in StripPathPrefix() 212 common_flags()->strip_path_prefix); in ReportErrorSummary()
|
D | sanitizer_stacktrace_libcdep.cc | 41 common_flags()->strip_path_prefix); in Print()
|
D | sanitizer_flags.inc | 36 COMMON_FLAG(const char *, strip_path_prefix, "",
|
/external/compiler-rt/lib/ubsan/ |
D | ubsan_diag.cc | 146 common_flags()->strip_path_prefix); in RenderLocation() 157 common_flags()->strip_path_prefix); in RenderLocation() 160 common_flags()->strip_path_prefix); in RenderLocation()
|
/external/llvm/test/tools/sancov/ |
D | covered_functions.test | 3 RUN: sancov -covered-functions -strip_path_prefix=Inputs/ %p/Inputs/test-linux_x86_64 %p/Inputs/tes…
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_report.cc | 132 common_flags()->strip_path_prefix, kInterposedFunctionPrefix); in PrintStack() 377 StripPathPrefix(info.file, common_flags()->strip_path_prefix), in PrintStack()
|
/external/clang/docs/ |
D | SanitizerCoverage.rst | 122 -strip_path_prefix=<string> - Strip this prefix from file paths in reports
|