Lines Matching refs:ext_dex_file
150 /*out*/ ExtDexFile** ext_dex_file) { in ExtDexFileOpenFromMemory() argument
201 *ext_dex_file = new ExtDexFile(std::move(dex_file)); in ExtDexFileOpenFromMemory()
209 /*out*/ ExtDexFile** ext_dex_file) { in ExtDexFileOpenFromFd() argument
282 *ext_dex_file = new ExtDexFile(std::move(dex_file)); in ExtDexFileOpenFromFd()
286 int ExtDexFileGetMethodInfoForOffset(ExtDexFile* ext_dex_file, in ExtDexFileGetMethodInfoForOffset() argument
290 if (!ext_dex_file->dex_file_->IsInDataSection(ext_dex_file->dex_file_->Begin() + dex_offset)) { in ExtDexFileGetMethodInfoForOffset()
294 if (ext_dex_file->dex_file_->IsCompactDexFile()) { in ExtDexFileGetMethodInfoForOffset()
298 ext_dex_file->dex_file_->AsCompactDexFile()->GetHeader(); in ExtDexFileGetMethodInfoForOffset()
306 art::MethodCacheEntry* entry = ext_dex_file->GetMethodCacheEntryForOffset(dex_offset); in ExtDexFileGetMethodInfoForOffset()
311 new ExtDexFileString{ext_dex_file->dex_file_->PrettyMethod(entry->index, with_signature)}; in ExtDexFileGetMethodInfoForOffset()
318 void ExtDexFileGetAllMethodInfos(ExtDexFile* ext_dex_file, in ExtDexFileGetAllMethodInfos() argument
322 for (art::ClassAccessor accessor : ext_dex_file->dex_file_->GetClasses()) { in ExtDexFileGetAllMethodInfos()
331 ext_dex_file->dex_file_->Begin()); in ExtDexFileGetAllMethodInfos()
334 ext_dex_file->dex_file_->PrettyMethod(method.GetIndex(), with_signature)}; in ExtDexFileGetAllMethodInfos()
340 void ExtDexFileFree(ExtDexFile* ext_dex_file) { delete (ext_dex_file); } in ExtDexFileFree() argument