Searched defs:OatFile (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Doat_file.cc41 void OatFile::CheckLocation(const std::string& location) {
45 OatFile* OatFile::OpenWithElfFile(ElfFile* elf_file,
48 std::unique_ptr<OatFile> oat_file(new OatFile(location, false));
56 OatFile* OatFile::OpenMemory(std::vector<uint8_t>& oat_contents,
61 std::unique_ptr<OatFile> oat_file(new OatFile(location, false));
67 OatFile* OatFil
144 OatFile::OatFile(const std::string& location, bool is_executable) function in class:art::OatFile
[all...]
H A Doat_file.h41 class OatFile { class in namespace:art
45 static OatFile* OpenWithElfFile(ElfFile* elf_file, const std::string& location,
49 static OatFile* Open(const std::string& filename,
61 static OatFile* OpenWritable(File* file, const std::string& location, std::string* error_msg);
63 static OatFile* OpenReadable(File* file, const std::string& location, std::string* error_msg);
66 static OatFile* OpenMemory(std::vector<uint8_t>& oat_contents,
70 ~OatFile();
194 // Return the offset from the start of the OatFile to the
202 OatClass(const OatFile* oat_file,
209 const OatFile* oat_file
[all...]

Completed in 77 milliseconds