HomeSort by relevance Sort by last modified time
    Searched refs:StripPathPrefix (Results 1 - 5 of 5) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace_printer.cc 52 buffer->append("%s", StripPathPrefix(info.module, strip_path_prefix));
66 buffer->append("%s", StripPathPrefix(info.file, strip_path_prefix));
123 buffer->append("%s(%d", StripPathPrefix(file, strip_path_prefix), line);
130 buffer->append("%s", StripPathPrefix(file, strip_path_prefix));
140 buffer->append("(%s+0x%zx)", StripPathPrefix(module, strip_path_prefix),
sanitizer_common.cc 170 const char *StripPathPrefix(const char *filepath,
sanitizer_common.h 267 const char *StripPathPrefix(const char *filepath,
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_common_test.cc 202 TEST(SanitizerCommon, StripPathPrefix) {
203 EXPECT_EQ(0, StripPathPrefix(0, "prefix"));
204 EXPECT_STREQ("foo", StripPathPrefix("foo", 0));
206 StripPathPrefix("/usr/lib/dir/file.cc", "/usr/lib/"));
207 EXPECT_STREQ("/file.cc", StripPathPrefix("/usr/myroot/file.cc", "/myroot"));
208 EXPECT_STREQ("file.h", StripPathPrefix("/usr/lib/./file.h", "/usr/lib/"));
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 377 StripPathPrefix(info.file, common_flags()->strip_path_prefix),

Completed in 324 milliseconds