Searched refs:dex_file_offset (Results 1 – 6 of 6) sorted by relevance
/system/extras/simpleperf/ |
D | JITDebugReader.h | 55 uint64_t dex_file_offset; // The offset of the dex file in the file containing it member 77 JITDebugInfo(pid_t pid, uint64_t timestamp, uint64_t dex_file_offset, in JITDebugInfo() 83 dex_file_offset(dex_file_offset), in JITDebugInfo()
|
D | dso.cpp | 454 void AddDexFileOffset(uint64_t dex_file_offset) override { in AddDexFileOffset() argument 455 auto it = std::lower_bound(dex_file_offsets_.begin(), dex_file_offsets_.end(), dex_file_offset); in AddDexFileOffset() 456 if (it != dex_file_offsets_.end() && *it == dex_file_offset) { in AddDexFileOffset() 459 dex_file_offsets_.insert(it, dex_file_offset); in AddDexFileOffset() 559 void AddDexFileOffset(uint64_t dex_file_offset) override { in AddDexFileOffset() argument 569 dex_file_dso_->AddDexFileOffset(dex_file_offset); in AddDexFileOffset()
|
D | thread_tree.h | 135 void AddDexFileOffset(const std::string& file_path, uint64_t dex_file_offset);
|
D | JITDebugReader.cpp | 771 uint64_t dex_file_offset = dex_entry.symfile_addr - it->start_addr + it->pgoff; in ReadDexFileDebugInfo() local 772 debug_info->emplace_back(process.pid, dex_entry.timestamp, dex_file_offset, file_path, in ReadDexFileDebugInfo() 774 LOG(VERBOSE) << "DexFile " << file_path << "+" << std::hex << dex_file_offset << " in map [" in ReadDexFileDebugInfo()
|
D | thread_tree.cpp | 367 void ThreadTree::AddDexFileOffset(const std::string& file_path, uint64_t dex_file_offset) { in AddDexFileOffset() argument 369 dso->AddDexFileOffset(dex_file_offset); in AddDexFileOffset()
|
D | cmd_record.cpp | 1470 thread_tree_.AddDexFileOffset(info.file_path, info.dex_file_offset); in ProcessJITDebugInfo()
|