Lines Matching refs:oat_filenames_

941     if (oat_filenames_.empty() && oat_fd_ == -1) {  in ProcessOptions()
953 if (!oat_filenames_.empty() && oat_fd_ != -1) { in ProcessOptions()
988 parser_options->oat_symbols.size() != oat_filenames_.size()) { in ProcessOptions()
992 if (!image_filenames_.empty() && image_filenames_.size() != oat_filenames_.size()) { in ProcessOptions()
1019 if (!dex_filenames_.empty() && !oat_filenames_.empty()) { in ProcessOptions()
1020 if (oat_filenames_.size() != 1 && oat_filenames_.size() != dex_filenames_.size()) { in ProcessOptions()
1184 if (oat_filenames_[0].rfind('/') == std::string::npos) { in ExpandOatAndImageFilenames()
1185 Usage("Unusable boot image oat filename %s", oat_filenames_[0].c_str()); in ExpandOatAndImageFilenames()
1187 oat_filenames_ = ImageSpace::ExpandMultiImageLocations( in ExpandOatAndImageFilenames()
1188 locations, oat_filenames_[0], IsBootImageExtension()); in ExpandOatAndImageFilenames()
1314 AssignIfExists(args, M::OatFile, &oat_filenames_); in ParseArgs()
1466 DCHECK(!oat_filenames_.empty()); in OpenFile()
1467 for (const std::string& oat_filename : oat_filenames_) { in OpenFile()
1566 oat_filenames_.push_back(oat_location_); in OpenFile()
2280 oat_filenames_, in WriteOutputFiles()
2338 DCHECK_LT(i, oat_filenames_.size()); in WriteOutputFiles()
2390 DCHECK_LT(i, oat_filenames_.size()); in WriteOutputFiles()
2406 VLOG(compiler) << "Oat file written successfully: " << oat_filenames_[i]; in WriteOutputFiles()
2433 if (oat_unstripped_[i] != oat_filenames_[i]) { in CopyOatFilesToSymbolsDirectoryAndStrip()
2884 for (size_t i = 0, size = oat_filenames_.size(); i != size; ++i) { in CreateImageFile()
3021 std::vector<std::string> oat_filenames_; member in art::Dex2Oat