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(art_api::dex::DexFile&& art_dex_file) : art_api::dex::DexFile(std::move(art_dex_file)) {} in DexFile() argument
51 DexFileFromFile(art_api::dex::DexFile&& art_dex_file) : DexFile(std::move(art_dex_file)) {} in DexFileFromFile() argument
60 DexFileFromMemory(art_api::dex::DexFile&& art_dex_file, std::vector<uint8_t>&& memory) in DexFileFromMemory() argument
61 : DexFile(std::move(art_dex_file)), memory_(std::move(memory)) {} in DexFileFromMemory()
DDexFile.cpp66 std::unique_ptr<art_api::dex::DexFile> art_dex_file = in Create() local
68 if (art_dex_file == nullptr) { in Create()
72 return std::unique_ptr<DexFileFromFile>(new DexFileFromFile(std::move(*art_dex_file.release()))); in Create()
82 std::unique_ptr<art_api::dex::DexFile> art_dex_file = in Create() local
85 if (art_dex_file != nullptr) { in Create()
87 new DexFileFromMemory(std::move(*art_dex_file.release()), std::move(backing_memory))); in Create()