Searched refs:oat_filename (Results 1 – 10 of 10) sorted by relevance
/art/runtime/native/ |
D | dalvik_system_DexFile.cc | 819 std::string oat_filename; in DexFile_getDexFileOutputPaths() local 830 oat_filename = GetSystemImageFilename(oat_file->GetLocation().c_str(), in DexFile_getDexFileOutputPaths() 835 if (!oat_filename.empty()) { in DexFile_getDexFileOutputPaths() 842 if (oat_filename.empty()) { in DexFile_getDexFileOutputPaths() 853 oat_filename = best_oat_file->GetLocation(); in DexFile_getDexFileOutputPaths() 855 vdex_filename = GetVdexFilename(oat_filename); in DexFile_getDexFileOutputPaths() 861 ScopedLocalRef<jstring> joatFilename(env, env->NewStringUTF(oat_filename.c_str())); in DexFile_getDexFileOutputPaths()
|
/art/libartbase/base/ |
D | file_utils.h | 120 std::string GetVdexFilename(const std::string& oat_filename);
|
/art/dex2oat/linker/ |
D | image_test.h | 199 std::string oat_filename = ReplaceFileExtension(image_filename, "oat"); in DoCompile() local 200 out_helper.oat_files.push_back(ScratchFile(OS::CreateEmptyFile(oat_filename.c_str()))); in DoCompile() 201 oat_filenames.push_back(oat_filename); in DoCompile()
|
/art/dex2oat/ |
D | dex2oat_test.cc | 1201 const std::string oat_filename = dir + "/base.oat"; in TEST_F() local 1206 oat_filename, in TEST_F() 1214 oat_filename.c_str(), in TEST_F() 1215 oat_filename.c_str(), in TEST_F() 1309 const std::string oat_filename = dir + "/base.oat"; in TEST_F() local 1315 oat_filename, in TEST_F() 1322 oat_filename.c_str(), in TEST_F() 1323 oat_filename.c_str(), in TEST_F() 1586 const std::string oat_filename = out_dir + "/base.oat"; in TEST_F() local 1589 oat_filename, in TEST_F() [all …]
|
D | dex2oat.cc | 1191 for (const std::string& oat_filename : oat_filenames_) { in OpenFile() local 1192 std::unique_ptr<File> oat_file(OS::CreateEmptyFile(oat_filename.c_str())); in OpenFile() 1194 PLOG(ERROR) << "Failed to create oat file: " << oat_filename; in OpenFile() 1198 PLOG(ERROR) << "Failed to make oat file world readable: " << oat_filename; in OpenFile() 1215 ? ReplaceFileExtension(oat_filename, "vdex") in OpenFile()
|
/art/runtime/ |
D | oat_file_assistant.cc | 560 std::string* oat_filename, in DexLocationToOatFilename() argument 562 CHECK(oat_filename != nullptr); in DexLocationToOatFilename() 570 *oat_filename = apex_data_file; in DexLocationToOatFilename() 602 return GetDalvikCacheFilename(location.c_str(), dalvik_cache.c_str(), oat_filename, error_msg); in DexLocationToOatFilename()
|
D | oat_file_assistant.h | 258 std::string* oat_filename,
|
D | oat_file.cc | 124 const std::string& oat_filename, 1731 const std::string& oat_filename, in Open() argument 1739 CHECK(!oat_filename.empty()) << oat_location; in Open() 1742 std::string vdex_filename = GetVdexFilename(oat_filename); in Open() 1756 oat_filename, in Open() 1779 LOG(ERROR) << "Failed to dlopen: " << oat_filename << " with error " << *error_msg; in Open() 1796 oat_filename, in Open()
|
/art/oatdump/ |
D | oatdump.cc | 2535 const char* oat_filename, in DumpOat() argument 2548 oat_filename, in DumpOat() 2549 oat_filename, in DumpOat() 2556 LOG(ERROR) << "Failed to open oat file from '" << oat_filename << "': " << error_msg; in DumpOat() 2567 static int SymbolizeOat(const char* oat_filename, in SymbolizeOat() argument 2576 oat_filename, in SymbolizeOat() 2577 oat_filename, in SymbolizeOat() 2584 LOG(ERROR) << "Failed to open oat file from '" << oat_filename << "': " << error_msg; in SymbolizeOat() 2611 const char* oat_filename, in Dump() argument 2620 if (oat_filename != nullptr) { in Dump() [all …]
|
/art/runtime/gc/space/ |
D | image_space.cc | 1933 std::string oat_filename = ImageHeader::GetOatLocationFromImageLocation(art_filename); in CompileExtension() local 1936 android::base::unique_fd oat_fd(memfd_create_compat(oat_filename.c_str(), /*flags=*/ 0)); in CompileExtension() 2828 std::string oat_filename = in OpenOatFile() local 2836 oat_filename, in OpenOatFile() 2859 oat_filename.c_str(), in OpenOatFile() 2926 oat_filename.c_str(), in OpenOatFile()
|