Searched refs:oat_filename (Results 1 – 10 of 10) sorted by relevance
/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() 351 const char* oat_filename = oat_filenames[i].c_str(); in DoCompile() local 352 std::unique_ptr<File> oat_file(OS::OpenFileReadWrite(oat_filename)); in DoCompile() 357 << oat_filename; in DoCompile()
|
/art/libartbase/base/ |
D | file_utils.h | 74 std::string GetVdexFilename(const std::string& oat_filename);
|
/art/runtime/ |
D | oat_file_assistant.h | 245 std::string* oat_filename,
|
D | oat_file.cc | 122 const std::string& oat_filename, 1583 const std::string& oat_filename, in Open() argument 1591 CHECK(!oat_filename.empty()) << oat_location; in Open() 1594 std::string vdex_filename = GetVdexFilename(oat_filename); in Open() 1600 } else if (!OS::FileExists(oat_filename.c_str())) { in Open() 1601 *error_msg = StringPrintf("File %s does not exist.", oat_filename.c_str()); in Open() 1609 oat_filename, in Open() 1621 LOG(ERROR) << "Failed to dlopen: " << oat_filename << " with error " << *error_msg; in Open() 1638 oat_filename, in Open()
|
D | oat_file_assistant.cc | 539 std::string* oat_filename, in DexLocationToOatFilename() argument 541 CHECK(oat_filename != nullptr); in DexLocationToOatFilename() 560 return GetDalvikCacheFilename(location.c_str(), cache_dir.c_str(), oat_filename, error_msg); in DexLocationToOatFilename()
|
/art/dex2oat/ |
D | dex2oat_test.cc | 1388 const std::string oat_filename = dir + "/base.oat"; in TEST_F() local 1393 oat_filename, in TEST_F() 1401 oat_filename.c_str(), in TEST_F() 1402 oat_filename.c_str(), in TEST_F() 1497 const std::string oat_filename = dir + "/base.oat"; in TEST_F() local 1503 oat_filename, in TEST_F() 1510 oat_filename.c_str(), in TEST_F() 1511 oat_filename.c_str(), in TEST_F() 1756 const std::string oat_filename = out_dir + "/base.oat"; in TEST_F() local 1759 oat_filename, in TEST_F() [all …]
|
D | dex2oat.cc | 1260 for (const std::string& oat_filename : oat_filenames_) { in OpenFile() local 1261 std::unique_ptr<File> oat_file(OS::CreateEmptyFile(oat_filename.c_str())); in OpenFile() 1263 PLOG(ERROR) << "Failed to create oat file: " << oat_filename; in OpenFile() 1267 PLOG(ERROR) << "Failed to make oat file world readable: " << oat_filename; in OpenFile() 1284 ? ReplaceFileExtension(oat_filename, "vdex") in OpenFile()
|
/art/oatdump/ |
D | oatdump.cc | 2878 const char* oat_filename, in DumpOat() argument 2888 oat_filename, in DumpOat() 2889 oat_filename, in DumpOat() 2896 LOG(ERROR) << "Failed to open oat file from '" << oat_filename << "': " << error_msg; in DumpOat() 2907 static int SymbolizeOat(const char* oat_filename, in SymbolizeOat() argument 2913 oat_filename, in SymbolizeOat() 2914 oat_filename, in SymbolizeOat() 2921 LOG(ERROR) << "Failed to open oat file from '" << oat_filename << "': " << error_msg; in SymbolizeOat() 2948 const char* oat_filename, in Dump() argument 2957 if (oat_filename != nullptr) { in Dump() [all …]
|
/art/runtime/native/ |
D | dalvik_system_DexFile.cc | 838 std::string oat_filename = best_oat_file->GetLocation(); in DexFile_getDexFileOutputPaths() local 845 ScopedLocalRef<jstring> joatFilename(env, env->NewStringUTF(oat_filename.c_str())); in DexFile_getDexFileOutputPaths()
|
/art/runtime/gc/space/ |
D | image_space.cc | 1796 std::string oat_filename = in OpenOatFile() local 1802 oat_filename, in OpenOatFile() 1811 oat_filename.c_str(), in OpenOatFile() 1844 oat_filename.c_str(), in OpenOatFile()
|