Home
last modified time | relevance | path

Searched defs:Record (Results 1 – 3 of 3) sorted by relevance

/system/extras/simpleperf/
Drecord.h208 struct Record { struct
209 RecordHeader header; argument
212 Record() : binary_(nullptr), own_binary_(false) {} in Record() argument
213 explicit Record(const char* p) : header(p), binary_(p), own_binary_(false) {} in Record() function
216 virtual ~Record() { in ~Record() argument
222 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 …]
Dreport_sample.proto68 message Record { message
Drecord.cpp172 Record::Record(Record&& other) { in Record() function in Record