Searched refs:JITDebugReader (Results 1 – 11 of 11) sorted by relevance
/system/extras/simpleperf/ |
D | JITDebugReader.cpp | 209 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 …]
|
D | JITDebugReader_test.cpp | 56 TEST(JITDebugReader, read_dex_file_in_memory) { in TEST() argument 83 JITDebugReader reader("", JITDebugReader::SymFileOption::kDropSymFiles, in TEST() 84 JITDebugReader::SyncOption::kNoSync); in TEST()
|
D | JITDebugReader.h | 146 class JITDebugReader { 164 JITDebugReader(const std::string& symfile_prefix, SymFileOption symfile_option, 167 ~JITDebugReader();
|
D | cmd_record.cpp | 468 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()
|
D | cmd_debug_unwind.cpp | 292 if (JITDebugReader::IsPathInJITSymFile(filename)) { in UpdateMmapRecordForEmbeddedFiles() 334 if (!JITDebugReader::IsPathInJITSymFile(dso->Path())) { in UnwindRecord()
|
D | OfflineUnwinder.cpp | 204 if (JITDebugReader::IsPathInJITSymFile(path)) { in CreateMapInfo()
|
D | dso.cpp | 430 if (JITDebugReader::IsPathInJITSymFile(path_)) { in IsForJavaMethod() 554 if (JITDebugReader::IsPathInJITSymFile(path_)) { in GetReportPath()
|
D | report_utils.cpp | 236 } else if (!JITDebugReader::IsPathInJITSymFile(entry.dso->Path())) { in Modify()
|
D | Android.bp | 279 "JITDebugReader.cpp",
|
D | read_elf.cpp | 557 } else if (JITDebugReader::IsPathInJITSymFile(filename)) { in Open()
|
D | cmd_record_test.cpp | 1023 JITDebugReader::IsPathInJITSymFile(map->dso->Path())) { in TEST()
|