HomeSort by relevance Sort by last modified time
    Searched refs:oat_filename (Results 1 - 6 of 6) sorted by null

  /art/runtime/
image.h 168 std::string oat_filename = image; local
169 if (oat_filename.length() <= 3) {
170 oat_filename += ".oat";
172 oat_filename.replace(oat_filename.length() - 3, 3, "oat");
174 return oat_filename;
runtime.cc 839 std::string oat_filename = local
849 std::unique_ptr<File> file(OS::OpenFileForReading(oat_filename.c_str()));
865 LOG(WARNING) << "Unable to use '" << oat_filename << "' because " << error_msg;
    [all...]
  /art/compiler/
image_test.cc 152 std::string oat_filename(image_filename.substr(0, image_filename.size() - strlen("art")) + "oat");
153 oat_files.push_back(ScratchFile(OS::CreateEmptyFile(oat_filename.c_str())));
154 oat_filenames.push_back(oat_filename);
296 const char* oat_filename = oat_filenames[i].c_str(); local
297 std::unique_ptr<File> oat_file(OS::OpenFileReadWrite(oat_filename));
303 << oat_filename;
  /art/oatdump/
oatdump.cc     [all...]
  /art/dex2oat/
dex2oat.cc 2283 const char* oat_filename = oat_filenames_[i]; variable
    [all...]
  /art/runtime/gc/space/
image_space.cc 1436 std::string oat_filename = ImageHeader::GetOatLocationFromImageLocation(image_path); local
    [all...]

Completed in 2147 milliseconds