Home | History | Annotate | Download | only in runtime

Lines Matching refs:oat_file

17 #include "oat_file.h"
54 UniquePtr<OatFile> oat_file(new OatFile(location));
55 oat_file->begin_ = &oat_contents[0];
56 oat_file->end_ = &oat_contents[oat_contents.size()];
57 return oat_file->Setup() ? oat_file.release() : NULL;
97 UniquePtr<OatFile> oat_file(new OatFile(location));
98 bool success = oat_file->Dlopen(elf_filename, requested_base);
102 return oat_file.release();
110 UniquePtr<OatFile> oat_file(new OatFile(location));
111 bool success = oat_file->ElfFileOpen(file, requested_base, writable, executable);
115 return oat_file.release();
359 OatFile::OatDexFile::OatDexFile(const OatFile* oat_file,
364 : oat_file_(oat_file),
396 OatFile::OatClass::OatClass(const OatFile* oat_file,
399 : oat_file_(oat_file), status_(status), methods_pointer_(methods_pointer) {}