Home
last modified time | relevance | path

Searched refs:dex_file_offset (Results 1 – 6 of 6) sorted by relevance

/system/extras/simpleperf/
DJITDebugReader.h55 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()
Ddso.cpp454 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()
Dthread_tree.h135 void AddDexFileOffset(const std::string& file_path, uint64_t dex_file_offset);
DJITDebugReader.cpp771 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()
Dthread_tree.cpp367 void ThreadTree::AddDexFileOffset(const std::string& file_path, uint64_t dex_file_offset) { in AddDexFileOffset() argument
369 dso->AddDexFileOffset(dex_file_offset); in AddDexFileOffset()
Dcmd_record.cpp1470 thread_tree_.AddDexFileOffset(info.file_path, info.dex_file_offset); in ProcessJITDebugInfo()