Searched refs:dex_file_offset (Results 1 – 8 of 8) sorted by relevance
/system/core/libunwindstack/ |
D | DexFiles.cpp | 131 DexFile* DexFiles::GetDexFile(uint64_t dex_file_offset, MapInfo* info) { in GetDexFile() argument 134 auto entry = files_.find(dex_file_offset); in GetDexFile() 136 std::unique_ptr<DexFile> new_dex_file = DexFile::Create(dex_file_offset, memory_.get(), info); in GetDexFile() 138 files_[dex_file_offset] = std::move(new_dex_file); in GetDexFile()
|
/system/extras/simpleperf/ |
D | JITDebugReader.h | 51 uint64_t dex_file_offset; // The offset of the dex file in the file containing it member 62 JITDebugInfo(pid_t pid, uint64_t timestamp, uint64_t dex_file_offset, in JITDebugInfo() 64 : type(JIT_DEBUG_DEX_FILE), pid(pid), timestamp(timestamp), dex_file_offset(dex_file_offset), in JITDebugInfo()
|
D | dso.cpp | 406 void AddDexFileOffset(uint64_t dex_file_offset) override { in AddDexFileOffset() argument 408 dex_file_offset); in AddDexFileOffset() 409 if (it != dex_file_offsets_.end() && *it == dex_file_offset) { in AddDexFileOffset() 412 dex_file_offsets_.insert(it, dex_file_offset); in AddDexFileOffset() 520 void AddDexFileOffset(uint64_t dex_file_offset) override { in AddDexFileOffset() argument 530 dex_file_dso_->AddDexFileOffset(dex_file_offset); in AddDexFileOffset()
|
D | JITDebugReader.cpp | 561 uint64_t dex_file_offset = dex_entry.symfile_addr - it->start_addr + it->pgoff; in ReadDexFileDebugInfo() local 562 debug_info->emplace_back(process.pid, dex_entry.timestamp, dex_file_offset, file_path); in ReadDexFileDebugInfo() 563 LOG(VERBOSE) << "DexFile " << file_path << "+" << std::hex << dex_file_offset in ReadDexFileDebugInfo()
|
D | thread_tree.h | 122 void AddDexFileOffset(const std::string& file_path, uint64_t dex_file_offset);
|
D | thread_tree.cpp | 286 void ThreadTree::AddDexFileOffset(const std::string& file_path, uint64_t dex_file_offset) { in AddDexFileOffset() argument 288 dso->AddDexFileOffset(dex_file_offset); in AddDexFileOffset()
|
D | cmd_record.cpp | 1307 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);
|