Home
last modified time | relevance | path

Searched refs:pheader (Results 1 – 1 of 1) sorted by relevance

/system/extras/simpleperf/
Drecord.h140 auto pheader = reinterpret_cast<const perf_event_header*>(p); in RecordHeader() local
141 if (pheader->type < SIMPLE_PERF_RECORD_TYPE_START) { in RecordHeader()
142 type = pheader->type; in RecordHeader()
143 misc = pheader->misc; in RecordHeader()
144 size = pheader->size; in RecordHeader()
155 auto pheader = reinterpret_cast<perf_event_header*>(p); in MoveToBinaryFormat() local
156 pheader->type = type; in MoveToBinaryFormat()
157 pheader->misc = misc; in MoveToBinaryFormat()
159 pheader->size = static_cast<uint16_t>(size); in MoveToBinaryFormat()