Home
last modified time | relevance | path

Searched refs:ADexFile (Results 1 – 4 of 4) sorted by relevance

/art/libdexfile/external/include/art_api/
Ddex_file_external.h30 struct ADexFile;
31 typedef struct ADexFile ADexFile; typedef
72 /*out*/ ADexFile* _Nullable * _Nonnull out_dex_file);
84 size_t ADexFile_findMethodAtOffset(ADexFile* _Nonnull self,
99 size_t ADexFile_forEachMethod(ADexFile* _Nonnull self,
106 void ADexFile_destroy(ADexFile* _Nullable self);
Ddex_file_support.h102 ADexFile* adex = nullptr; in Create()
127 explicit DexFile(ADexFile* self) : self_(self) {} in DexFile()
129 ADexFile* const self_;
/art/libdexfile/external/
Ddex_file_ext.cc47 ADexFile* adex;
54 struct ADexFile { struct
55 explicit ADexFile(std::unique_ptr<const art::DexFile> dex_file) in ADexFile() argument
146 /*out*/ ADexFile* _Nullable * _Nonnull out_dex_file) { in ADexFile_create() argument
197 *out_dex_file = new ADexFile(std::move(dex_file)); in ADexFile_create()
201 void ADexFile_destroy(ADexFile* self) { in ADexFile_destroy()
205 size_t ADexFile_findMethodAtOffset(ADexFile* self, in ADexFile_findMethodAtOffset()
235 size_t ADexFile_forEachMethod(ADexFile* self, in ADexFile_forEachMethod()
Ddex_file_ext_test.cc39 ADexFile* dex_ = nullptr;
69 static ADexFile* GetTestDexData() { in GetTestDexData()
71 ADexFile* dex; in GetTestDexData()