Lines Matching refs:inKernel
158 PerfEventRecord::PerfEventRecord(perf_event_type type, bool inKernel, const std::string &name)
162 header.misc = inKernel ? PERF_RECORD_MISC_KERNEL : PERF_RECORD_MISC_USER;
621 PerfRecordMmap::PerfRecordMmap(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff,
623 : PerfEventRecord(PERF_RECORD_MMAP, inKernel, "mmap")
682 PerfRecordMmap2::PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff,
685 : PerfEventRecord(PERF_RECORD_MMAP2, inKernel, "mmap2")
705 PerfRecordMmap2::PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, std::shared_ptr<DfxMap> item)
706 : PerfEventRecord(PERF_RECORD_MMAP2, inKernel, "mmap2")
821 PerfRecordComm::PerfRecordComm(bool inKernel, u32 pid, u32 tid, const std::string &comm)
822 : PerfEventRecord(PERF_RECORD_COMM, inKernel, "comm")