Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Drecord.h148 auto pheader = reinterpret_cast<const perf_event_header*>(p); in RecordHeader() local
149 if (pheader->type < SIMPLE_PERF_RECORD_TYPE_START) { in RecordHeader()
150 type = pheader->type; in RecordHeader()
151 misc = pheader->misc; in RecordHeader()
152 size = pheader->size; in RecordHeader()
163 auto pheader = reinterpret_cast<perf_event_header*>(p); in MoveToBinaryFormat() local
164 pheader->type = type; in MoveToBinaryFormat()
165 pheader->misc = misc; in MoveToBinaryFormat()
167 pheader->size = static_cast<uint16_t>(size); in MoveToBinaryFormat()