Home | History | Annotate | Download | only in simpleperf

Lines Matching full:record

25 #include "record.h"
85 // kernel map len can be 0 when record command is not run in supervisor mode.
214 void BuildThreadTree(const Record& record, ThreadTree* thread_tree) {
215 if (record.header.type == PERF_RECORD_MMAP) {
216 const MmapRecord& r = *static_cast<const MmapRecord*>(&record);
224 } else if (record.header.type == PERF_RECORD_MMAP2) {
225 const Mmap2Record& r = *static_cast<const Mmap2Record*>(&record);
235 } else if (record.header.type == PERF_RECORD_COMM) {
236 const CommRecord& r = *static_cast<const CommRecord*>(&record);
238 } else if (record.header.type == PERF_RECORD_FORK) {
239 const ForkRecord& r = *static_cast<const ForkRecord*>(&record);