Lines Matching refs:oat_filenames_

664     if (oat_filenames_.empty() && oat_fd_ == -1) {  in ProcessOptions()
676 if (!oat_filenames_.empty() && oat_fd_ != -1) { in ProcessOptions()
711 parser_options->oat_symbols.size() != oat_filenames_.size()) { in ProcessOptions()
715 if (!image_filenames_.empty() && image_filenames_.size() != oat_filenames_.size()) { in ProcessOptions()
743 if (!dex_filenames_.empty() && !oat_filenames_.empty()) { in ProcessOptions()
744 if (oat_filenames_.size() != 1 && oat_filenames_.size() != dex_filenames_.size()) { in ProcessOptions()
908 if (oat_filenames_[0].rfind('/') == std::string::npos) { in ExpandOatAndImageFilenames()
909 Usage("Unusable boot image oat filename %s", oat_filenames_[0].c_str()); in ExpandOatAndImageFilenames()
911 oat_filenames_ = ImageSpace::ExpandMultiImageLocations( in ExpandOatAndImageFilenames()
912 locations, oat_filenames_[0], IsBootImageExtension()); in ExpandOatAndImageFilenames()
1038 AssignIfExists(args, M::OatFile, &oat_filenames_); in ParseArgs()
1190 DCHECK(!oat_filenames_.empty()); in OpenFile()
1191 for (const std::string& oat_filename : oat_filenames_) { in OpenFile()
1290 oat_filenames_.push_back(oat_location_); in OpenFile()
2074 oat_filenames_, in WriteOutputFiles()
2128 DCHECK_LT(i, oat_filenames_.size()); in WriteOutputFiles()
2180 DCHECK_LT(i, oat_filenames_.size()); in WriteOutputFiles()
2196 VLOG(compiler) << "Oat file written successfully: " << oat_filenames_[i]; in WriteOutputFiles()
2223 if (oat_unstripped_[i] != oat_filenames_[i]) { in CopyOatFilesToSymbolsDirectoryAndStrip()
2771 for (size_t i = 0, size = oat_filenames_.size(); i != size; ++i) { in CreateImageFile()
2908 std::vector<std::string> oat_filenames_; member in art::Dex2Oat