Home
last modified time | relevance | path

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

/developtools/hiperf/include/
Dperf_event_record.h135 bool inKernel() in inKernel() function
177 PerfRecordMmap(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff,
191 PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff, u32 maj, u32 min,
194 PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, std::shared_ptr<DfxMap> item);
212 PerfRecordLost(bool inKernel, u64 id, u64 lost) in PerfRecordLost() argument
213 : PerfEventRecord(PERF_RECORD_LOST, inKernel, "lost") in PerfRecordLost()
227 PerfRecordComm(bool inKernel, u32 pid, u32 tid, const std::string &comm);
263 PerfRecordSample(bool inKernel, u32 pid, u32 tid, u64 period = 0, u64 time = 0, u64 id = 0)
264 : PerfEventRecord(PERF_RECORD_SAMPLE, inKernel, "sample")
Dunique_stack_table.h50 uint64_t inKernel : KERNEL_FLAG_BIT_LENGTH; member
/developtools/hiperf/src/
Dunique_stack_table.cpp90 node.section.inKernel = !!(thisIp & IP_IN_KERNEL); in PutIpInSlot()
182 node->section.inKernel ? (node->section.ip | KERNEL_PREFIX) : node->section.ip); in GetIpsByStackId()
Dperf_event_record.cpp520 PerfRecordMmap::PerfRecordMmap(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff, in PerfRecordMmap() argument
522 : PerfEventRecord(PERF_RECORD_MMAP, inKernel, "mmap") in PerfRecordMmap()
572 PerfRecordMmap2::PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff, in PerfRecordMmap2() argument
575 : PerfEventRecord(PERF_RECORD_MMAP2, inKernel, "mmap2") in PerfRecordMmap2()
595 PerfRecordMmap2::PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, std::shared_ptr<DfxMap> item) in PerfRecordMmap2() argument
596 : PerfEventRecord(PERF_RECORD_MMAP2, inKernel, "mmap2") in PerfRecordMmap2()
681 PerfRecordComm::PerfRecordComm(bool inKernel, u32 pid, u32 tid, const std::string &comm) in PerfRecordComm() argument
682 : PerfEventRecord(PERF_RECORD_COMM, inKernel, "comm") in PerfRecordComm()
Dvirtual_runtime.cpp403 if (node->section.inKernel) { in CollectDedupSymbol()
531 !sample.inKernel() || sample.data_.nr == 0) { in NeedDropKernelCallChain()
636 HLOGV(" MMAP: %s dso '%s' (0x%llx-0x%llx)@0x%llx", recordMmap.inKernel() ? "kernel" : "user", in UpdateFromRecord()
644 } else if (recordMmap.inKernel()) { in UpdateFromRecord()
694 …std::make_unique<PerfRecordMmap2>(recordMmap2.inKernel(), recordMmap2.data_.pid, recordMmap2.data_… in CheckValidSandBoxMmap()
705 …std::make_unique<PerfRecordMmap2>(recordMmap2.inKernel(), recordMmap2.data_.pid, recordMmap2.data_… in CheckValidSandBoxMmap()
712 …std::make_unique<PerfRecordMmap2>(recordMmap2.inKernel(), recordMmap2.data_.pid, recordMmap2.data_… in CheckValidSandBoxMmap()
749 …HLOGV(" MMAP2: %s dso '%s' (0x%llx-0x%llx)@0x%llx prot:%u", recordMmap2.inKernel() ? "kernel" : "… in UpdateFromRecord()
Dsubcommand_record.cpp1623 perf_callchain_context context = sample->inKernel() ? PERF_CONTEXT_KERNEL in CollectSymbol()
/developtools/hiperf/test/unittest/common/native/
Dreport_test.cpp770 PerfRecordSampleMock(bool inKernel, u32 pid, u32 tid, u64 period) in PerfRecordSampleMock() argument
771 : PerfRecordSample(inKernel, pid, tid, period) in PerfRecordSampleMock()