Searched refs:force_64bit (Results 1 – 3 of 3) sorted by relevance
/system/extras/simpleperf/ |
D | dso.h | 44 std::string FindDebugFile(const std::string& dso_path, bool force_64bit, BuildId& build_id); 135 bool force_64bit = false);
|
D | dso.cpp | 139 std::string DebugElfFileFinder::FindDebugFile(const std::string& dso_path, bool force_64bit, in FindDebugFile() argument 142 if (force_64bit && !vdso_64bit_.empty()) { in FindDebugFile() 144 } else if (!force_64bit && !vdso_32bit_.empty()) { in FindDebugFile() 550 ElfDso(const std::string& path, bool force_64bit) in ElfDso() argument 551 : Dso(DSO_ELF_FILE, path), force_64bit_(force_64bit) {} in ElfDso() 964 bool force_64bit) { in CreateDso() argument 967 return std::unique_ptr<Dso>(new ElfDso(dso_path, force_64bit)); in CreateDso()
|
D | thread_tree.cpp | 208 bool force_64bit = start_addr > UINT_MAX; in FindUserDsoOrNew() local 209 std::unique_ptr<Dso> dso = Dso::CreateDso(dso_type, filename, force_64bit); in FindUserDsoOrNew()
|