Searched refs:FindDebugFile (Results 1 – 3 of 3) sorted by relevance
/system/extras/simpleperf/ |
D | dso_test.cpp | 49 ASSERT_EQ(finder.FindDebugFile("elf", false, build_id), std::string(tmpfile.path)); in TEST() 71 ASSERT_EQ(finder.FindDebugFile(ELF_FILE, false, build_id), GetTestDataDir() + ELF_FILE); in TEST() 74 ASSERT_EQ(finder.FindDebugFile(native_lib_in_apk, false, native_lib_build_id), in TEST() 86 ASSERT_EQ(finder.FindDebugFile("[vdso]", false, build_id), fake_vdso32); in TEST() 87 ASSERT_EQ(finder.FindDebugFile("[vdso]", true, build_id), fake_vdso64); in TEST() 94 ASSERT_EQ(finder.FindDebugFile("elf", false, CHECK_ELF_FILE_BUILD_ID), "elf"); in TEST() 97 ASSERT_EQ(finder.FindDebugFile("elf", false, CHECK_ELF_FILE_BUILD_ID), in TEST() 107 ASSERT_EQ(finder.FindDebugFile("elf", false, CHECK_ELF_FILE_BUILD_ID), in TEST() 114 ASSERT_EQ(finder.FindDebugFile("elf", false, CHECK_ELF_FILE_BUILD_ID), "elf"); in TEST() 124 ASSERT_EQ(finder.FindDebugFile("elf", false, build_id), symfs_dir + OS_PATH_SEPARATOR + "elf"); in TEST() [all …]
|
D | dso.cpp | 139 std::string DebugElfFileFinder::FindDebugFile(const std::string& dso_path, bool force_64bit, in FindDebugFile() function in simpleperf::simpleperf_dso_impl::DebugElfFileFinder 627 return debug_elf_file_finder_.FindDebugFile(path_, force_64bit_, build_id); in FindDebugFilePath() 702 return debug_elf_file_finder_.FindDebugFile(path_, false, build_id); in FindDebugFilePath() 861 return debug_elf_file_finder_.FindDebugFile(path_, false, build_id); in FindDebugFilePath() 999 dso->debug_file_path_ = debug_elf_file_finder_.FindDebugFile(dso_path, false, build_id); in CreateDsoWithBuildId()
|
D | dso.h | 44 std::string FindDebugFile(const std::string& dso_path, bool force_64bit, BuildId& build_id);
|