Home
last modified time | relevance | path

Searched refs:art_dex_file (Results 1 – 2 of 2) sorted by relevance

/system/core/libunwindstack/
DDexFile.h42 DexFile(std::unique_ptr<art_api::dex::DexFile>& art_dex_file) in DexFile() argument
43 : 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() argument
62 DexFileFromMemory(std::unique_ptr<art_api::dex::DexFile>& art_dex_file, in DexFileFromMemory() argument
64 : DexFile(art_dex_file), memory_(std::move(memory)) {} in DexFileFromMemory()
DDexFile.cpp62 std::unique_ptr<art_api::dex::DexFile> art_dex_file = DexFile::OpenFromMemory( in Create() local
64 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() local
104 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() local
129 if (art_dex_file != nullptr) { in Create()
131 new DexFileFromMemory(art_dex_file, std::move(backing_memory))); in Create()