Searched defs:Record (Results 1 – 4 of 4) sorted by relevance
216 struct Record { struct217 RecordHeader header; argument220 Record() : binary_(nullptr), own_binary_(false) {} in Record() argument221 explicit Record(char* p) : header(p), binary_(p), own_binary_(false) {} in Record() function224 virtual ~Record() { in ~Record() argument230 void OwnBinary() { own_binary_ = true; } in OwnBinary()232 uint32_t type() const { return header.type; } in type()234 uint16_t misc() const { return header.misc; } in misc()236 uint32_t size() const { return header.size; } in size()238 static uint32_t header_size() { return sizeof(perf_event_header); } in header_size()[all …]
39 bool Record(const std::filesystem::path& output, in Record() function
88 message Record { message
181 Record::Record(Record&& other) noexcept { in Record() function in Record