Searched refs:FindDebugFile (Results 1 – 3 of 3) sorted by relevance
/system/extras/simpleperf/ |
D | dso_test.cpp | 48 ASSERT_EQ(finder.FindDebugFile("elf", false, build_id), std::string(tmpfile.path)); in TEST() 69 ASSERT_EQ(finder.FindDebugFile(ELF_FILE, false, build_id), GetTestDataDir() + ELF_FILE); in TEST() 72 ASSERT_EQ(finder.FindDebugFile(native_lib_in_apk, false, native_lib_build_id), in TEST() 83 ASSERT_EQ(finder.FindDebugFile("[vdso]", false, build_id), fake_vdso32); in TEST() 84 ASSERT_EQ(finder.FindDebugFile("[vdso]", true, build_id), fake_vdso64); in TEST() 90 ASSERT_EQ(finder.FindDebugFile("elf", false, CHECK_ELF_FILE_BUILD_ID), "elf"); in TEST() 93 ASSERT_EQ(finder.FindDebugFile("elf", false, CHECK_ELF_FILE_BUILD_ID), in TEST() 102 ASSERT_EQ(finder.FindDebugFile("elf", false, CHECK_ELF_FILE_BUILD_ID), in TEST() 109 ASSERT_EQ(finder.FindDebugFile("elf", false, CHECK_ELF_FILE_BUILD_ID), "elf"); in TEST() 118 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 898 std::string debug_path = debug_elf_file_finder_.FindDebugFile(dso_path, force_64bit, build_id); in CreateDso() 918 std::string debug_path = debug_elf_file_finder_.FindDebugFile(dso_path, false, build_id); in CreateDsoWithBuildId() 935 std::string debug_path = debug_elf_file_finder_.FindDebugFile(dso_path, false, build_id); in CreateKernelModuleDso()
|
D | dso.h | 44 std::string FindDebugFile(const std::string& dso_path, bool force_64bit, BuildId& build_id);
|