Home
last modified time | relevance | path

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

/system/core/libunwindstack/
DDexFiles.cpp143 DexFile* DexFiles::GetDexFile(uint64_t dex_file_offset, MapInfo* info) { in GetDexFile() argument
146 auto entry = files_.find(dex_file_offset); in GetDexFile()
148 std::unique_ptr<DexFile> new_dex_file = DexFile::Create(dex_file_offset, memory_.get(), info); in GetDexFile()
150 files_[dex_file_offset] = std::move(new_dex_file); in GetDexFile()
/system/extras/simpleperf/
DJITDebugReader.h52 uint64_t dex_file_offset; // The offset of the dex file in the file containing it member
74 JITDebugInfo(pid_t pid, uint64_t timestamp, uint64_t dex_file_offset, in JITDebugInfo()
80 dex_file_offset(dex_file_offset), in JITDebugInfo()
Ddso.cpp430 void AddDexFileOffset(uint64_t dex_file_offset) override { in AddDexFileOffset() argument
432 dex_file_offset); in AddDexFileOffset()
433 if (it != dex_file_offsets_.end() && *it == dex_file_offset) { in AddDexFileOffset()
436 dex_file_offsets_.insert(it, dex_file_offset); in AddDexFileOffset()
536 void AddDexFileOffset(uint64_t dex_file_offset) override { in AddDexFileOffset() argument
546 dex_file_dso_->AddDexFileOffset(dex_file_offset); in AddDexFileOffset()
Dthread_tree.h138 void AddDexFileOffset(const std::string& file_path, uint64_t dex_file_offset);
DJITDebugReader.cpp749 uint64_t dex_file_offset = dex_entry.symfile_addr - it->start_addr + it->pgoff; in ReadDexFileDebugInfo() local
750 debug_info->emplace_back(process.pid, dex_entry.timestamp, dex_file_offset, file_path, in ReadDexFileDebugInfo()
752 LOG(VERBOSE) << "DexFile " << file_path << "+" << std::hex << dex_file_offset in ReadDexFileDebugInfo()
Dthread_tree.cpp298 void ThreadTree::AddDexFileOffset(const std::string& file_path, uint64_t dex_file_offset) { in AddDexFileOffset() argument
300 dso->AddDexFileOffset(dex_file_offset); in AddDexFileOffset()
Dcmd_record.cpp1424 thread_tree_.AddDexFileOffset(info.file_path, info.dex_file_offset); in ProcessJITDebugInfo()
/system/core/libunwindstack/include/unwindstack/
DDexFiles.h45 DexFile* GetDexFile(uint64_t dex_file_offset, MapInfo* info);