Searched defs:Record (Results 1 – 3 of 3) sorted by relevance
208 struct Record { struct209 RecordHeader header; argument212 Record() : binary_(nullptr), own_binary_(false) {} in Record() argument213 explicit Record(const char* p) : header(p), binary_(p), own_binary_(false) {} in Record() function216 virtual ~Record() { in ~Record() argument222 void OwnBinary() { own_binary_ = true; } in OwnBinary()224 uint32_t type() const { return header.type; } in type()226 uint16_t misc() const { return header.misc; } in misc()228 uint32_t size() const { return header.size; } in size()230 static uint32_t header_size() { return sizeof(perf_event_header); } in header_size()[all …]
68 message Record { message
172 Record::Record(Record&& other) { in Record() function in Record