Home
last modified time | relevance | path

Searched refs:art_file (Results 1 – 2 of 2) sorted by relevance

/art/dex2oat/
Ddex2oat_image_test.cc129 std::string art_file = scratch.GetFilename() + ".art"; in CompileImageAndGetSizes() local
132 int64_t art_size = OS::GetFileSizeBytes(art_file.c_str()); in CompileImageAndGetSizes()
135 CHECK_GT(art_size, 0u) << art_file; in CompileImageAndGetSizes()
/art/runtime/
Doat_file_assistant.cc721 std::string art_file = ReplaceFileExtension(oat_file->GetLocation(), "art"); in OpenImageSpace() local
722 if (art_file.empty()) { in OpenImageSpace()
728 gc::space::ImageSpace::CreateFromAppImage(art_file.c_str(), oat_file, &error_msg); in OpenImageSpace()
729 if (ret == nullptr && (VLOG_IS_ON(image) || OS::FileExists(art_file.c_str()))) { in OpenImageSpace()
730 LOG(INFO) << "Failed to open app image " << art_file.c_str() << " " << error_msg; in OpenImageSpace()