Home
last modified time | relevance | path

Searched refs:oat_filenames_ (Results 1 – 3 of 3) sorted by relevance

/art/dex2oat/
Ddex2oat.cc694 if (oat_filenames_.empty() && oat_fd_ == -1) { in ProcessOptions()
698 if (!oat_filenames_.empty() && oat_fd_ != -1) { in ProcessOptions()
715 parser_options->oat_symbols.size() != oat_filenames_.size()) { in ProcessOptions()
719 if (!image_filenames_.empty() && image_filenames_.size() != oat_filenames_.size()) { in ProcessOptions()
783 if (!dex_filenames_.empty() && !oat_filenames_.empty()) { in ProcessOptions()
784 if (oat_filenames_.size() != 1 && oat_filenames_.size() != dex_filenames_.size()) { in ProcessOptions()
913 std::string base_oat = oat_filenames_[0]; in ExpandOatAndImageFilenames()
953 std::string dex_file = oat_filenames_[0]; in ExpandOatAndImageFilenames()
976 oat_filenames_.push_back((char_backing_storage_.end() - 1)->c_str()); in ExpandOatAndImageFilenames()
1074 oat_filenames_.push_back(option.substr(strlen("--oat-file=")).data()); in ParseArgs()
[all …]
/art/compiler/
Dimage_writer.cc1336 for (size_t i = 0, size = oat_filenames_.size(); i != size; ++i) { in CalculateNewObjectOffsets()
1510 LOG(INFO) << "Creating header for " << oat_filenames_[oat_index]; in CreateHeader()
2266 CHECK_EQ(oat_filenames_.size(), 1u) << "App image should have no next image."; in UpdateOatFileLayout()
2271 if (oat_index + 1u != oat_filenames_.size()) { in UpdateOatFileLayout()
2319 oat_filenames_(oat_filenames), in ImageWriter()
Dimage_writer.h561 const std::vector<const char*>& oat_filenames_; variable