Searched refs:dex_file_offset (Results 1 – 8 of 8) sorted by relevance
/system/core/libunwindstack/ |
D | DexFiles.cpp | 143 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/ |
D | JITDebugReader.h | 52 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()
|
D | dso.cpp | 430 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()
|
D | thread_tree.h | 138 void AddDexFileOffset(const std::string& file_path, uint64_t dex_file_offset);
|
D | JITDebugReader.cpp | 749 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()
|
D | thread_tree.cpp | 298 void ThreadTree::AddDexFileOffset(const std::string& file_path, uint64_t dex_file_offset) { in AddDexFileOffset() argument 300 dso->AddDexFileOffset(dex_file_offset); in AddDexFileOffset()
|
D | cmd_record.cpp | 1424 thread_tree_.AddDexFileOffset(info.file_path, info.dex_file_offset); in ProcessJITDebugInfo()
|
/system/core/libunwindstack/include/unwindstack/ |
D | DexFiles.h | 45 DexFile* GetDexFile(uint64_t dex_file_offset, MapInfo* info);
|