Searched refs:art_dex_file (Results 1 – 2 of 2) sorted by relevance
42 DexFile(std::unique_ptr<art_api::dex::DexFile>& art_dex_file) in DexFile() argument43 : art_api::dex::DexFile(art_dex_file) {} in DexFile()52 DexFileFromFile(std::unique_ptr<art_api::dex::DexFile>& art_dex_file) : DexFile(art_dex_file) {} in DexFileFromFile() argument62 DexFileFromMemory(std::unique_ptr<art_api::dex::DexFile>& art_dex_file, in DexFileFromMemory() argument64 : DexFile(art_dex_file), memory_(std::move(memory)) {} in DexFileFromMemory()
62 std::unique_ptr<art_api::dex::DexFile> art_dex_file = DexFile::OpenFromMemory( in Create() local64 if (art_dex_file != nullptr && size <= max_size) { in Create()65 return std::unique_ptr<DexFile>(new DexFile(art_dex_file)); in Create()102 std::unique_ptr<art_api::dex::DexFile> art_dex_file = in Create() local104 if (art_dex_file == nullptr) { in Create()108 return std::unique_ptr<DexFileFromFile>(new DexFileFromFile(art_dex_file)); in Create()123 std::unique_ptr<art_api::dex::DexFile> art_dex_file = in Create() local129 if (art_dex_file != nullptr) { in Create()131 new DexFileFromMemory(art_dex_file, std::move(backing_memory))); in Create()