Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Drecord.h145 auto pheader = reinterpret_cast<const perf_event_header*>(p); in RecordHeader() local
146 if (pheader->type < SIMPLE_PERF_RECORD_TYPE_START) { in RecordHeader()
147 type = pheader->type; in RecordHeader()
148 misc = pheader->misc; in RecordHeader()
149 size = pheader->size; in RecordHeader()
160 auto pheader = reinterpret_cast<perf_event_header*>(p); in MoveToBinaryFormat() local
161 pheader->type = type; in MoveToBinaryFormat()
162 pheader->misc = misc; in MoveToBinaryFormat()
164 pheader->size = static_cast<uint16_t>(size); in MoveToBinaryFormat()