Lines Matching refs:OatFile
65 class OatFile {
74 static OatFile* OpenWithElfFile(ElfFile* elf_file,
83 static OatFile* Open(const std::string& filename,
97 static OatFile* OpenWritable(File* file, const std::string& location,
101 static OatFile* OpenReadable(File* file, const std::string& location,
105 virtual ~OatFile();
219 OatClass(const OatFile* oat_file,
226 const OatFile* const oat_file_;
312 OatFile(const std::string& filename, bool executable);
381 DISALLOW_COPY_AND_ASSIGN(OatFile);
395 const OatFile* GetOatFile() const { in GetOatFile()
422 OatFile::OatClass GetOatClass(uint16_t class_def_index) const;
467 OatDexFile(const OatFile* oat_file,
480 const OatFile* const oat_file_ = nullptr;
492 friend class OatFile; variable