Searched refs:PerfRecordMmap2 (Results 1 - 5 of 5) sorted by relevance
/developtools/hiperf/include/ |
H A D | perf_event_record.h | 203 class PerfRecordMmap2 : public PerfEventRecord { class 207 explicit PerfRecordMmap2(uint8_t *p); 209 PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff, u32 maj, u32 min, 212 PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, std::shared_ptr<DfxMap> item);
|
H A D | virtual_runtime.h | 202 void UpdateFromRecord(PerfRecordMmap2 &recordMmap2); 238 bool CheckValidSandBoxMmap(PerfRecordMmap2 &recordMmap2);
|
/developtools/hiperf/src/ |
H A D | perf_event_record.cpp | 46 return std::make_unique<PerfRecordMmap2>(data); in GetPerfEventRecord() 669 PerfRecordMmap2::PerfRecordMmap2(uint8_t *p) : PerfEventRecord(p, "mmap2") in PerfRecordMmap2() function in OHOS::Developtools::HiPerf::PerfRecordMmap2 678 HLOGE("PerfRecordMmap2 retren failed !!!"); in PerfRecordMmap2() 682 PerfRecordMmap2::PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff, in PerfRecordMmap2() function in OHOS::Developtools::HiPerf::PerfRecordMmap2 705 PerfRecordMmap2::PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, std::shared_ptr<DfxMap> item) in PerfRecordMmap2() function in OHOS::Developtools::HiPerf::PerfRecordMmap2 740 bool PerfRecordMmap2::GetBinary(std::vector<uint8_t> &buf) const in GetBinary() 755 void PerfRecordMmap2 [all...] |
H A D | virtual_runtime.cpp | 168 std::make_unique<PerfRecordMmap2>(false, thread.pid_, thread.tid_, map); in CreateThread() 169 HLOGD("make PerfRecordMmap2 %d:%d:%s:%s(0x%" PRIx64 "-0x%" PRIx64 ")@%" PRIx64 " ", in CreateThread() 453 auto recordMmap2 = static_cast<PerfRecordMmap2 *>(&record); in UpdateFromRecord() 681 bool VirtualRuntime::CheckValidSandBoxMmap(PerfRecordMmap2 &recordMmap2) in CheckValidSandBoxMmap() 712 std::unique_ptr<PerfRecordMmap2> mmap2FirstSeg = in CheckValidSandBoxMmap() 713 std::make_unique<PerfRecordMmap2>(recordMmap2.inKernel(), recordMmap2.data_.pid, recordMmap2.data_.tid, in CheckValidSandBoxMmap() 724 std::unique_ptr<PerfRecordMmap2> mmap2FirstSeg = in CheckValidSandBoxMmap() 725 std::make_unique<PerfRecordMmap2>(recordMmap2.inKernel(), recordMmap2.data_.pid, recordMmap2.data_.tid, in CheckValidSandBoxMmap() 731 std::unique_ptr<PerfRecordMmap2> mmap2SecondSegment = in CheckValidSandBoxMmap() 732 std::make_unique<PerfRecordMmap2>(recordMmap in CheckValidSandBoxMmap() [all...] |
/developtools/hiperf/test/unittest/common/native/ |
H A D | perf_event_record_test.cpp | 101 PerfRecordMmap2 recordIn {true, data.pid, data.tid, data.addr, data.len, data.pgoff, in HWTEST_F() 118 PerfRecordMmap2 recordOut(buff.data()); in HWTEST_F()
|
Completed in 7 milliseconds