Lines Matching defs:record
233 HLOGW("record file header size doesn't match");
404 void SubCommandDump::ExprotUserData(std::unique_ptr<PerfEventRecord> &record)
406 if (record->GetType() == PERF_RECORD_SAMPLE) {
410 PerfRecordSample *recordSample = static_cast<PerfRecordSample *>(record.get());
442 auto recordcCallback = [&](std::unique_ptr<PerfEventRecord> record) {
443 CHECK_TRUE(record == nullptr, false, 0, ""); // return false in callback can stop the read process
447 ExprotUserData(record);
451 vr_.UpdateFromRecord(*record);
454 record->Dump(indent, outputFilename_, g_outputDump);
456 if (record->GetType() == PERF_RECORD_SAMPLE) {
458 static_cast<PerfRecordSample *>(record.release()));