Home
last modified time | relevance | path

Searched refs:input_filename_ (Results 1 – 2 of 2) sorted by relevance

/system/extras/simpleperf/
Dcmd_inject.cpp187 options.PullStringValue("-i", &input_filename_); in ParseOptions()
210 if (IsPerfDataFile(input_filename_)) { in ProcessInputFile()
211 record_file_reader_ = RecordFileReader::CreateInstance(input_filename_); in ProcessInputFile()
218 LOG(ERROR) << input_filename_ << " doesn't support --exclude-perf"; in ProcessInputFile()
319 auto fd = FileHelper::OpenReadOnly(input_filename_); in ProcessBranchListFile()
321 PLOG(ERROR) << "failed to open " << input_filename_; in ProcessBranchListFile()
326 PLOG(ERROR) << "failed to read msg from " << input_filename_; in ProcessBranchListFile()
330 PLOG(ERROR) << "file not in format etm_branch_list.proto: " << input_filename_; in ProcessBranchListFile()
589 std::string input_filename_ = "perf.data"; member in simpleperf::__anon3ce946470111::InjectCommand
Dcmd_debug_unwind.cpp622 std::string input_filename_ = "perf.data"; member in simpleperf::__anonc541a1a50111::DebugUnwindCommand
640 return sample_unwinder.ProcessFile(input_filename_); in Run()
645 return test_file_generator.ProcessFile(input_filename_); in Run()
649 return report_generator.ProcessFile(input_filename_); in Run()
672 options.PullStringValue("-i", &input_filename_); in ParseOptions()