Home
last modified time | relevance | path

Searched refs:dex_offset (Results 1 – 5 of 5) sorted by relevance

/art/libdexfile/external/
Ddex_file_ext.cc108 art::MethodCacheEntry* GetMethodCacheEntryForOffset(int64_t dex_offset) { in GetMethodCacheEntryForOffset()
110 auto it = method_cache_.upper_bound(dex_offset); in GetMethodCacheEntryForOffset()
111 if (it != method_cache_.end() && dex_offset >= it->second.offset) { in GetMethodCacheEntryForOffset()
116 if (GetClassDefIndex(dex_offset, &class_def_index)) { in GetMethodCacheEntryForOffset()
127 if (offset <= dex_offset && dex_offset < offset + len) { in GetMethodCacheEntryForOffset()
139 bool GetClassDefIndex(uint32_t dex_offset, uint32_t* class_def_index) { in GetClassDefIndex()
176 auto it = std::upper_bound(class_cache_.begin(), class_cache_.end(), dex_offset, comp); in GetClassDefIndex()
330 int64_t dex_offset, in ExtDexFileGetMethodInfoForOffset() argument
333 if (!ext_dex_file->dex_file_->IsInDataSection(ext_dex_file->dex_file_->Begin() + dex_offset)) { in ExtDexFileGetMethodInfoForOffset()
344 if (dex_offset < begin || dex_offset >= end) { in ExtDexFileGetMethodInfoForOffset()
[all …]
/art/tools/runtime_memusage/
Dsymbol_trace_info.py59 dex_offset = address_access - dex_start_list[dex_file_ind]
64 if (dex_offset >= offsets[0] and dex_offset < max_offset and
67 elem.insert(1, dex_offset)
278 for time, dex_offset, category, address in data_lists["plot_list"]:
283 str(dex_offset) +
285 hex(dex_offset) +
291 dex_offset) - 1
300 str(aligned_dex_offset != dex_offset))
/art/libdexfile/external/include/art_api/
Ddex_file_external.h69 int64_t dex_offset,
Ddex_file_support.h195 MethodInfo GetMethodInfoForOffset(int64_t dex_offset, bool with_signature) { in GetMethodInfoForOffset() argument
198 dex_offset, in GetMethodInfoForOffset()
/art/oatdump/
Doatdump.cc895 uint32_t dex_offset = dchecked_integral_cast<uint32_t>(dex_file_pointer - vdex_file_begin); in DumpOatDexFile() local
898 dex_offset, in DumpOatDexFile()
899 dchecked_integral_cast<uint32_t>(dex_offset + oat_dex_file.FileSize() - 1)); in DumpOatDexFile()