Home
last modified time | relevance | path

Searched refs:ExtDexFile (Results 1 – 3 of 3) sorted by relevance

/art/libdexfile/external/include/art_api/
Ddex_file_external.h51 struct ExtDexFile;
58 /*out*/ struct ExtDexFile** ext_dex_file);
65 /*out*/ struct ExtDexFile** ext_dex_file);
68 int ExtDexFileGetMethodInfoForOffset(struct ExtDexFile* ext_dex_file,
77 void ExtDexFileGetAllMethodInfos(struct ExtDexFile* ext_dex_file,
83 void ExtDexFileFree(struct ExtDexFile* ext_dex_file);
Ddex_file_support.h158 ExtDexFile* ext_dex_file; in OpenFromMemory()
181 ExtDexFile* ext_dex_file; in OpenFromFd()
220 explicit DexFile(ExtDexFile* ext_dex_file) : ext_dex_file_(ext_dex_file) {} in DexFile()
221 ExtDexFile* ext_dex_file_; // Owned instance. nullptr only in moved-from zombies.
/art/libdexfile/external/
Ddex_file_ext.cc102 struct ExtDexFile { struct
105 explicit ExtDexFile(std::unique_ptr<const art::DexFile>&& dex_file) in ExtDexFile() function
193 /*out*/ ExtDexFile** ext_dex_file) { in ExtDexFileOpenFromMemory() argument
244 *ext_dex_file = new ExtDexFile(std::move(dex_file)); in ExtDexFileOpenFromMemory()
252 /*out*/ ExtDexFile** ext_dex_file) { in ExtDexFileOpenFromFd()
325 *ext_dex_file = new ExtDexFile(std::move(dex_file)); in ExtDexFileOpenFromFd()
329 int ExtDexFileGetMethodInfoForOffset(ExtDexFile* ext_dex_file, in ExtDexFileGetMethodInfoForOffset()
361 void ExtDexFileGetAllMethodInfos(ExtDexFile* ext_dex_file, in ExtDexFileGetAllMethodInfos()
383 void ExtDexFileFree(ExtDexFile* ext_dex_file) { delete (ext_dex_file); } in ExtDexFileFree()