Lines Matching full:record
38 #include "record.h"
256 " -i <file> Specify path of record file, default is perf.data.\n"
291 void ProcessRecord(std::unique_ptr<Record> record);
329 // 2. Read record file and build SampleTree.
518 LOG(ERROR) << "record file contains " << attrs.size() << " attrs";
531 record_file_reader_->ReadDataSection([this](std::unique_ptr<Record> record) {
532 ProcessRecord(std::move(record));
537 void ReportCommand::ProcessRecord(std::unique_ptr<Record> record) {
538 BuildThreadTree(*record, &thread_tree_);
539 if (record->header.type == PERF_RECORD_SAMPLE) {
540 ProcessSampleRecord(*static_cast<const SampleRecord*>(record.get()));