Searched refs:art_file (Results 1 – 3 of 3) sorted by relevance
480 std::unique_ptr<File> art_file; in CompileBootImage() local484 art_file.reset(OS::CreateEmptyFile((use_fd_prefix + ".art").c_str())); in CompileBootImage()487 argv.push_back("--image-fd=" + std::to_string(art_file->Fd())); in CompileBootImage()507 if (art_file != nullptr) { in CompileBootImage()508 CHECK_EQ(0, art_file->FlushClose()); in CompileBootImage()
703 std::string art_file = ReplaceFileExtension(oat_file->GetLocation(), "art"); in OpenImageSpace() local704 if (art_file.empty()) { in OpenImageSpace()710 gc::space::ImageSpace::CreateFromAppImage(art_file.c_str(), oat_file, &error_msg); in OpenImageSpace()711 if (ret == nullptr && (VLOG_IS_ON(image) || OS::FileExists(art_file.c_str()))) { in OpenImageSpace()712 LOG(INFO) << "Failed to open app image " << art_file.c_str() << " " << error_msg; in OpenImageSpace()
97 std::string art_file = filename_prefix + ".art"; in CompileImageAndGetSizes() local100 int64_t art_size = OS::GetFileSizeBytes(art_file.c_str()); in CompileImageAndGetSizes()103 CHECK_GT(art_size, 0u) << art_file; in CompileImageAndGetSizes()