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()
 108   ASSERT_EQ(finder.FindDebugFile("/data/elf_for_build_id_check", false, empty_build_id),  in TEST()
 111   ASSERT_EQ(finder.FindDebugFile("/data/elf_for_build_id_check", false, different_build_id),  in TEST()
 117   ASSERT_EQ(finder.FindDebugFile("/data/elf_for_build_id_check", false, empty_build_id),  in TEST()
 [all …]
 
 | 
| D | dso.cpp | 148 std::string DebugElfFileFinder::FindDebugFile(const std::string& dso_path, bool force_64bit,  in FindDebugFile()  function in simpleperf::simpleperf_dso_impl::DebugElfFileFinder688     return debug_elf_file_finder_.FindDebugFile(path_, force_64bit_, build_id);  in FindDebugFilePath()
 763     return debug_elf_file_finder_.FindDebugFile(path_, false, build_id);  in FindDebugFilePath()
 922     return debug_elf_file_finder_.FindDebugFile(path_, false, build_id);  in FindDebugFilePath()
 1060   dso->debug_file_path_ = debug_elf_file_finder_.FindDebugFile(dso_path, false, build_id);  in CreateDsoWithBuildId()
 
 | 
| D | dso.h | 45   std::string FindDebugFile(const std::string& dso_path, bool force_64bit, BuildId& build_id);
 |