Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Dcmd_merge.cpp126 for (const auto& file : input_files_) { in Run()
160 input_files_.insert(input_files_.end(), files.begin(), files.end()); in ParseOptions()
166 if (input_files_.empty()) { in ParseOptions()
242 LOG(ERROR) << input_files_[0] << " and " << input_files_[i] << " are not mergeable for " in CheckFeatureSection()
262 LOG(ERROR) << input_files_[0] << " and " << input_files_[i] in CheckAttrSection()
268 LOG(ERROR) << input_files_[0] << " and " << input_files_[i] in CheckAttrSection()
417 std::vector<std::string> input_files_; member in simpleperf::__anonfce4a9670111::MergeCommand
/system/tools/aidl/
Doptions.cpp509 input_files_.emplace_back(argv[optind++]); in Options()
518 output_file_ = input_files_.front(); in Options()
525 input_files_.emplace_back(argv[optind++]); in Options()
559 input_files_.emplace_back(argv[optind++]); in Options()
612 for (const string& input : input_files_) { in Options()
618 if (!output_file_.empty() && input_files_.size() > 1) { in Options()
624 if (!dependency_file_.empty() && input_files_.size() > 1) { in Options()
643 if (input_files_.size() != 2) { in Options()
645 << "but got " << input_files_.size() << "." << endl; in Options()
Doptions.h186 const vector<string>& InputFiles() const { return input_files_; } in InputFiles()
261 vector<string> input_files_; variable