Searched refs:boot_image_filename (Results 1 – 2 of 2) sorted by relevance
373 static bool IsCoreImageFilename(const std::string& boot_image_filename) { in IsCoreImageFilename() argument375 if (android::base::EndsWith(boot_image_filename, "core.art")) { in IsCoreImageFilename()378 if (!android::base::EndsWith(boot_image_filename, ".art")) { in IsCoreImageFilename()381 size_t slash_pos = boot_image_filename.rfind('/'); in IsCoreImageFilename()383 return android::base::StartsWith(boot_image_filename, "core-"); in IsCoreImageFilename()385 return boot_image_filename.compare(slash_pos + 1, 5u, "core-") == 0; in IsCoreImageFilename()
686 std::string boot_image_filename; member734 const std::string& boot_image_filename = image_filenames_[0]; in ProcessOptions() local735 compiler_options_->core_image_ = CompilerDriver::IsCoreImageFilename(boot_image_filename); in ProcessOptions()801 if (!IsBootImage() && parser_options->boot_image_filename.empty()) { in ProcessOptions()802 parser_options->boot_image_filename += android_root_; in ProcessOptions()803 parser_options->boot_image_filename += "/framework/boot.art"; in ProcessOptions()805 if (!parser_options->boot_image_filename.empty()) { in ProcessOptions()806 boot_image_filename_ = parser_options->boot_image_filename; in ProcessOptions()1218 AssignIfExists(args, M::BootImage, &parser_options->boot_image_filename); in ParseArgs()