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

  /art/runtime/gc/space/
image_space.cc 28 #include "oat_file.h"
257 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, image_header.GetOatDataBegin(), local
259 if (oat_file == NULL) {
263 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
271 return oat_file;
  /art/dex2oat/
dex2oat.cc 231 File* oat_file,
289 if (!driver->WriteElf(android_root, is_host, dex_files, oat_writer, oat_file)) {
290 LOG(ERROR) << "Failed to write ELF file " << oat_file->GetPath();
314 UniquePtr<File> oat_file(OS::OpenFileReadWrite(oat_filename.c_str()));
315 if (oat_file.get() == NULL) {
319 if (!ElfFixup::Fixup(oat_file.get(), oat_data_begin)) {
320 LOG(ERROR) << "Failed to fixup ELF file " << oat_file->GetPath();
814 UniquePtr<File> oat_file; local
817 oat_file.reset(OS::CreateEmptyFile(oat_unstripped.c_str()));
822 oat_file.reset(new File(oat_fd, oat_location))
    [all...]
  /art/oatdump/
oatdump.cc 99 explicit OatDumper(const std::string& host_prefix, const OatFile& oat_file)
101 oat_file_(oat_file),
102 oat_dex_files_(oat_file.GetOatDexFiles()),
730 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location); local
731 if (oat_file == NULL) {
737 stats_.oat_file_bytes = oat_file->Size();
739 oat_dumper_.reset(new OatDumper(host_prefix_, *oat_file));
741 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
1415 OatFile* oat_file = local
    [all...]
  /art/runtime/
class_linker.cc 45 #include "oat_file.h"
647 void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
649 RegisterOatFileLocked(oat_file);
652 void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
656 CHECK_NE(&oat_file, oat_files_[i]) << oat_file.GetLocation();
659 VLOG(class_linker) << "Registering " << oat_file.GetLocation();
660 oat_files_.push_back(&oat_file);
665 OatFile& oat_file = space->ReleaseOatFile(); local
667 RegisterOatFileLocked(oat_file);
680 const OatFile* oat_file = oat_files_[i]; local
826 const OatFile* oat_file = OatFile::Open(oat_location, oat_location, NULL, local
967 const OatFile* oat_file = oat_files_[i]; local
982 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location); local
1020 OatFile& oat_file = GetImageOatFile(space); local
1507 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file); local
2541 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file); local
    [all...]

Completed in 69 milliseconds