Home
last modified time | relevance | path

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

/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/
Ddex_file_ext.cc116 art::MethodCacheEntry* GetMethodCacheEntryForOffset(int64_t dex_offset) { in GetMethodCacheEntryForOffset()
118 auto it = method_cache_.upper_bound(dex_offset); in GetMethodCacheEntryForOffset()
119 if (it != method_cache_.end() && dex_offset >= it->second.offset) { in GetMethodCacheEntryForOffset()
136 if (offset <= dex_offset && dex_offset < offset + len) { in GetMethodCacheEntryForOffset()
287 int64_t dex_offset, in ExtDexFileGetMethodInfoForOffset() argument
290 if (!ext_dex_file->dex_file_->IsInDataSection(ext_dex_file->dex_file_->Begin() + dex_offset)) { in ExtDexFileGetMethodInfoForOffset()
301 if (dex_offset < begin || dex_offset >= end) { in ExtDexFileGetMethodInfoForOffset()
306 art::MethodCacheEntry* entry = ext_dex_file->GetMethodCacheEntryForOffset(dex_offset); in ExtDexFileGetMethodInfoForOffset()
/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.cc891 uint32_t dex_offset = dchecked_integral_cast<uint32_t>(dex_file_pointer - vdex_file_begin); in DumpOatDexFile() local
894 dex_offset, in DumpOatDexFile()
895 dchecked_integral_cast<uint32_t>(dex_offset + oat_dex_file.FileSize() - 1)); in DumpOatDexFile()