Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Drecord.h213 struct Record { struct
214 RecordHeader header; argument
217 Record() : binary_(nullptr), own_binary_(false) {} in Record() argument
218 explicit Record(char* p) : header(p), binary_(p), own_binary_(false) {} in Record() function
221 virtual ~Record() { in ~Record() argument
227 void OwnBinary() { own_binary_ = true; } in OwnBinary()
229 uint32_t type() const { return header.type; } in type()
231 uint16_t misc() const { return header.misc; } in misc()
233 uint32_t size() const { return header.size; } in size()
235 static uint32_t header_size() { return sizeof(perf_event_header); } in header_size()
[all …]
Dreport_sample.proto88 message Record { message
Drecord.cpp178 Record::Record(Record&& other) noexcept { in Record() function in Record
/system/core/libmetricslogger/
Dmetrics_logger.cpp119 void ComplexEventLogger::Record() { in Record() function in android::metricslogger::ComplexEventLogger