Searched refs:StripPathPrefix (Results 1 – 10 of 10) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_stacktrace_printer.cc | 52 buffer->append("%s", StripPathPrefix(info.module, strip_path_prefix)); in RenderFrame() 66 buffer->append("%s", StripPathPrefix(info.file, strip_path_prefix)); in RenderFrame() 123 buffer->append("%s(%d", StripPathPrefix(file, strip_path_prefix), line); in RenderSourceLocation() 130 buffer->append("%s", StripPathPrefix(file, strip_path_prefix)); in RenderSourceLocation() 140 buffer->append("(%s+0x%zx)", StripPathPrefix(module, strip_path_prefix), in RenderModuleLocation()
|
D | sanitizer_common.cc | 170 const char *StripPathPrefix(const char *filepath, in StripPathPrefix() function
|
D | sanitizer_common.h | 267 const char *StripPathPrefix(const char *filepath,
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_stacktrace_printer.cpp | 138 buffer->append("%s", StripPathPrefix(info->module, strip_path_prefix)); in RenderFrame() 153 buffer->append("%s", StripPathPrefix(info->file, strip_path_prefix)); in RenderFrame() 244 buffer->append("%s", StripPathPrefix(DI->file, strip_path_prefix)); in RenderData() 266 buffer->append("%s(%d", StripPathPrefix(file, strip_path_prefix), line); in RenderSourceLocation() 273 buffer->append("%s", StripPathPrefix(file, strip_path_prefix)); in RenderSourceLocation() 284 buffer->append("(%s", StripPathPrefix(module, strip_path_prefix)); in RenderModuleLocation()
|
D | sanitizer_common.cpp | 60 const char *StripPathPrefix(const char *filepath, in StripPathPrefix() function
|
D | sanitizer_common.h | 243 const char *StripPathPrefix(const char *filepath,
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_common_test.cc | 202 TEST(SanitizerCommon, StripPathPrefix) { in TEST() argument 203 EXPECT_EQ(0, StripPathPrefix(0, "prefix")); in TEST() 204 EXPECT_STREQ("foo", StripPathPrefix("foo", 0)); in TEST() 206 StripPathPrefix("/usr/lib/dir/file.cc", "/usr/lib/")); in TEST() 207 EXPECT_STREQ("/file.cc", StripPathPrefix("/usr/myroot/file.cc", "/myroot")); in TEST() 208 EXPECT_STREQ("file.h", StripPathPrefix("/usr/lib/./file.h", "/usr/lib/")); in TEST()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_common_test.cpp | 296 TEST(SanitizerCommon, StripPathPrefix) { in TEST() argument 297 EXPECT_EQ(0, StripPathPrefix(0, "prefix")); in TEST() 298 EXPECT_STREQ("foo", StripPathPrefix("foo", 0)); in TEST() 300 StripPathPrefix("/usr/lib/dir/file.cc", "/usr/lib/")); in TEST() 301 EXPECT_STREQ("/file.cc", StripPathPrefix("/usr/myroot/file.cc", "/myroot")); in TEST() 302 EXPECT_STREQ("file.h", StripPathPrefix("/usr/lib/./file.h", "/usr/lib/")); in TEST()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_report.cc | 377 StripPathPrefix(info.file, common_flags()->strip_path_prefix), in PrintStack()
|
/external/llvm-project/compiler-rt/lib/tsan/rtl/ |
D | tsan_report.cpp | 408 StripPathPrefix(info.file, common_flags()->strip_path_prefix), in PrintStack()
|