Home
last modified time | relevance | path

Searched refs:JITDebugReader (Results 1 – 11 of 11) sorted by relevance

/system/extras/simpleperf/
DJITDebugReader.cpp209 JITDebugReader::JITDebugReader(const std::string& symfile_prefix, SymFileOption symfile_option, in JITDebugReader() function in simpleperf::JITDebugReader
213 JITDebugReader::~JITDebugReader() {} in ~JITDebugReader()
215 bool JITDebugReader::RegisterDebugInfoCallback(IOEventLoop* loop, in RegisterDebugInfoCallback()
223 bool JITDebugReader::MonitorProcess(pid_t pid) { in MonitorProcess()
241 bool JITDebugReader::UpdateRecord(const Record* record) { in UpdateRecord()
272 bool JITDebugReader::FlushDebugInfo(uint64_t timestamp) { in FlushDebugInfo()
286 bool JITDebugReader::ReadAllProcesses() { in ReadAllProcesses()
312 bool JITDebugReader::ReadProcess(pid_t pid) { in ReadProcess()
321 bool JITDebugReader::ReadProcess(Process& process, std::vector<JITDebugInfo>* debug_info) { in ReadProcess()
342 bool JITDebugReader::ReadDebugInfo(Process& process, Descriptor& new_descriptor, in ReadDebugInfo()
[all …]
DJITDebugReader_test.cpp56 TEST(JITDebugReader, read_dex_file_in_memory) { in TEST() argument
83 JITDebugReader reader("", JITDebugReader::SymFileOption::kDropSymFiles, in TEST()
84 JITDebugReader::SyncOption::kNoSync); in TEST()
DJITDebugReader.h146 class JITDebugReader {
164 JITDebugReader(const std::string& symfile_prefix, SymFileOption symfile_option,
167 ~JITDebugReader();
Dcmd_record.cpp468 std::unique_ptr<JITDebugReader> jit_debug_reader_;
649 ? JITDebugReader::SymFileOption::kKeepSymFiles in PrepareRecording()
650 : JITDebugReader::SymFileOption::kDropSymFiles; in PrepareRecording()
651 auto sync_option = (clockid_ == "monotonic") ? JITDebugReader::SyncOption::kSyncWithRecords in PrepareRecording()
652 : JITDebugReader::SyncOption::kNoSync; in PrepareRecording()
653 jit_debug_reader_.reset(new JITDebugReader(record_filename_, symfile_option, sync_option)); in PrepareRecording()
Dcmd_debug_unwind.cpp292 if (JITDebugReader::IsPathInJITSymFile(filename)) { in UpdateMmapRecordForEmbeddedFiles()
334 if (!JITDebugReader::IsPathInJITSymFile(dso->Path())) { in UnwindRecord()
DOfflineUnwinder.cpp204 if (JITDebugReader::IsPathInJITSymFile(path)) { in CreateMapInfo()
Ddso.cpp430 if (JITDebugReader::IsPathInJITSymFile(path_)) { in IsForJavaMethod()
554 if (JITDebugReader::IsPathInJITSymFile(path_)) { in GetReportPath()
Dreport_utils.cpp236 } else if (!JITDebugReader::IsPathInJITSymFile(entry.dso->Path())) { in Modify()
DAndroid.bp279 "JITDebugReader.cpp",
Dread_elf.cpp557 } else if (JITDebugReader::IsPathInJITSymFile(filename)) { in Open()
Dcmd_record_test.cpp1023 JITDebugReader::IsPathInJITSymFile(map->dso->Path())) { in TEST()