Home | History | Annotate | Download | only in simpleperf

Lines Matching full:record

21 #include "record.h"
33 void CheckRecordMatchBinary(const RecordType& record);
39 void RecordTest::CheckRecordMatchBinary(const RecordType& record) {
40 std::vector<char> binary = record.BinaryFormat();
41 std::vector<std::unique_ptr<Record>> records =
44 CheckRecordEqual(record, *records[0]);
48 MmapRecord record =
50 CheckRecordMatchBinary(record);
54 CommRecord record = CreateCommRecord(event_attr, 1, 2, "CommRecord");
55 CheckRecordMatchBinary(record);
80 std::unique_ptr<Record> popped_r = cache.Pop();
99 std::vector<std::unique_ptr<Record>> last_records = cache.PopAll();
115 std::vector<std::unique_ptr<Record>> out_records = cache.PopAll();