Lines Matching refs:ReportCommand
362 class ReportCommand : public Command { class
364 ReportCommand() in ReportCommand() function in simpleperf::__anon09476f0b0110::ReportCommand
479 bool ReportCommand::Run(const std::vector<std::string>& args) { in Run()
511 bool ReportCommand::ParseOptions(const std::vector<std::string>& args) { in ParseOptions()
642 bool ReportCommand::BuildSampleComparatorAndDisplayer(bool print_sample_count, in BuildSampleComparatorAndDisplayer()
753 void ReportCommand::ReadMetaInfoFromRecordFile() { in ReadMetaInfoFromRecordFile()
763 bool ReportCommand::ReadEventAttrFromRecordFile() { in ReadEventAttrFromRecordFile()
797 bool ReportCommand::ReadFeaturesFromRecordFile() { in ReadFeaturesFromRecordFile()
841 bool ReportCommand::ReadSampleTreeFromRecordFile() { in ReadSampleTreeFromRecordFile()
868 bool ReportCommand::ProcessRecord(std::unique_ptr<Record> record) { in ProcessRecord()
888 void ReportCommand::ProcessSampleRecordInTraceOffCpuMode(std::unique_ptr<Record> record, in ProcessSampleRecordInTraceOffCpuMode()
905 bool ReportCommand::ProcessTracingData(const std::vector<char>& data) { in ProcessTracingData()
916 bool ReportCommand::PrintReport() { in PrintReport()
957 void ReportCommand::PrintReportContext(FILE* report_fp) { in PrintReportContext()
967 RegisterCommand("report", [] { return std::unique_ptr<Command>(new ReportCommand()); }); in RegisterReportCommand()