HomeSort by relevance Sort by last modified time
    Searched defs:OatFile (Results 1 - 2 of 2) sorted by null

  /art/runtime/
oat_file.cc 41 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* OatFile::Open(const std::string& filename
    [all...]
oat_file.h 41 class OatFile {
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 467 milliseconds