Home
last modified time | relevance | path

Searched refs:oat_filename (Results 1 – 11 of 11) sorted by relevance

/art/runtime/base/
Dfile_utils.h66 std::string GetVdexFilename(const std::string& oat_filename);
/art/dex2oat/linker/
Dimage_test.h190 std::string oat_filename = ReplaceFileExtension(image_filename, "oat"); in Compile() local
191 oat_files.push_back(ScratchFile(OS::CreateEmptyFile(oat_filename.c_str()))); in Compile()
192 oat_filenames.push_back(oat_filename); in Compile()
358 const char* oat_filename = oat_filenames[i].c_str(); in Compile() local
359 std::unique_ptr<File> oat_file(OS::OpenFileReadWrite(oat_filename)); in Compile()
365 << oat_filename; in Compile()
/art/dex2oat/
Ddex2oat_test.cc1362 const std::string oat_filename = dir + "/base.oat"; in TEST_F() local
1367 oat_filename, in TEST_F()
1375 oat_filename.c_str(), in TEST_F()
1376 oat_filename.c_str(), in TEST_F()
1476 const std::string oat_filename = dir + "/base.oat"; in TEST_F() local
1482 oat_filename, in TEST_F()
1489 oat_filename.c_str(), in TEST_F()
1490 oat_filename.c_str(), in TEST_F()
1721 const std::string oat_filename = out_dir + "/base.oat"; in TEST_F() local
1724 oat_filename, in TEST_F()
[all …]
Ddex2oat.cc1318 for (const char* oat_filename : oat_filenames_) { in OpenFile() local
1319 std::unique_ptr<File> oat_file(OS::CreateEmptyFile(oat_filename)); in OpenFile()
1321 PLOG(ERROR) << "Failed to create oat file: " << oat_filename; in OpenFile()
1325 PLOG(ERROR) << "Failed to make oat file world readable: " << oat_filename; in OpenFile()
1342 ? ReplaceFileExtension(oat_filename, "vdex") in OpenFile()
2708 const char* oat_filename = oat_filenames_[i]; in CreateImageFile() local
2711 std::unique_ptr<File> oat_file(OS::OpenFileReadWrite(oat_filename)); in CreateImageFile()
2713 PLOG(ERROR) << "Failed to open ELF file: " << oat_filename; in CreateImageFile()
/art/runtime/
Doat_file.cc117 const std::string& oat_filename,
1406 const std::string& oat_filename, in Open() argument
1415 CHECK(!oat_filename.empty()) << oat_location; in Open()
1418 std::string vdex_filename = GetVdexFilename(oat_filename); in Open()
1424 } else if (!OS::FileExists(oat_filename.c_str())) { in Open()
1425 *error_msg = StringPrintf("File %s does not exist.", oat_filename.c_str()); in Open()
1433 oat_filename, in Open()
1446 LOG(ERROR) << "Failed to dlopen: " << oat_filename << " with error " << *error_msg; in Open()
1463 oat_filename, in Open()
Doat_file_assistant.h318 std::string* oat_filename,
Doat_file_assistant.cc864 std::string* oat_filename, in DexLocationToOatFilename() argument
866 CHECK(oat_filename != nullptr); in DexLocationToOatFilename()
878 return GetDalvikCacheFilename(location.c_str(), cache_dir.c_str(), oat_filename, error_msg); in DexLocationToOatFilename()
Druntime.cc995 std::string oat_filename = in OpenDexFilesFromImage() local
1015 std::unique_ptr<File> file(OS::OpenFileForReading(oat_filename.c_str())); in OpenDexFilesFromImage()
1035 LOG(WARNING) << "Unable to use '" << oat_filename << "' because " << error_msg; in OpenDexFilesFromImage()
/art/oatdump/
Doatdump.cc3087 const char* oat_filename, in DumpOat() argument
3097 oat_filename, in DumpOat()
3098 oat_filename, in DumpOat()
3106 LOG(ERROR) << "Failed to open oat file from '" << oat_filename << "': " << error_msg; in DumpOat()
3117 static int SymbolizeOat(const char* oat_filename, in SymbolizeOat() argument
3123 oat_filename, in SymbolizeOat()
3124 oat_filename, in SymbolizeOat()
3132 LOG(ERROR) << "Failed to open oat file from '" << oat_filename << "': " << error_msg; in SymbolizeOat()
3159 const char* oat_filename, in Dump() argument
3168 if (oat_filename != nullptr) { in Dump()
[all …]
/art/runtime/native/
Ddalvik_system_DexFile.cc780 std::string oat_filename = best_oat_file->GetLocation(); in DexFile_getDexFileOutputPaths() local
787 ScopedLocalRef<jstring> joatFilename(env, env->NewStringUTF(oat_filename.c_str())); in DexFile_getDexFileOutputPaths()
/art/runtime/gc/space/
Dimage_space.cc1417 std::string oat_filename = ImageHeader::GetOatLocationFromImageLocation(image_path); in OpenOatFile() local
1422 oat_filename, in OpenOatFile()
1423 oat_filename, in OpenOatFile()
1432 oat_filename.c_str(), in OpenOatFile()