Home
last modified time | relevance | path

Searched refs:offline_files_path (Results 1 – 3 of 3) sorted by relevance

/system/unwinding/libunwindstack/utils/
DOfflineUnwindUtils.cpp201 return &samples_.at(sample_name).offline_files_path; in GetOfflineFilesPath()
300 std::filesystem::current_path(std::filesystem::path(samples_.at(sample_name).offline_files_path)); in ChangeToSampleDirectory()
354 for (const auto& file : std::filesystem::directory_iterator(sample.offline_files_path)) { in CreateProcessMemory()
375 const std::string& offline_files_path) { in ReadRegs() argument
377 FILE* fp = fopen((offline_files_path + "regs.txt").c_str(), "r"); in ReadRegs()
379 err_stream << "Error opening file '" << offline_files_path << "regs.txt': " << strerror(errno); in ReadRegs()
388 err_stream << "Failed to read in register name/values from '" << offline_files_path in ReadRegs()
412 const auto& offline_files_path = samples_.at(sample_name).offline_files_path; in CreateRegs() local
418 if (!ReadRegs<uint32_t>(regs_impl, arm_regs_, error_msg, offline_files_path)) return false; in CreateRegs()
424 if (!ReadRegs<uint64_t>(regs_impl, arm64_regs_, error_msg, offline_files_path)) return false; in CreateRegs()
[all …]
DOfflineUnwindUtils.h161 std::string offline_files_path; member
/system/unwinding/libunwindstack/tests/
DUnwindOfflineTest.cpp940 const std::string* offline_files_path = offline_utils_.GetOfflineFilesPath(); in TEST_F() local
941 if (offline_files_path == nullptr) FAIL() << "GetOfflineFilesPath() failed."; in TEST_F()
943 if (!AddMemory(*offline_files_path + "lib_mem.data", memory, &error_msg)) FAIL() << error_msg; in TEST_F()