Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_bsd.cpp35 struct kinfo_proc *InfoProc; in GetMemoryProfile() local
36 uptr Len = sizeof(*InfoProc); in GetMemoryProfile()
38 InfoProc = (struct kinfo_proc *)MmapOrDie(Size, "GetMemoryProfile()"); in GetMemoryProfile()
40 internal_sysctl(Mib, ARRAY_SIZE(Mib), nullptr, (uptr *)InfoProc, &Len, 0), in GetMemoryProfile()
42 cb(0, InfoProc->ki_rssize * GetPageSizeCached(), false, stats); in GetMemoryProfile()
43 UnmapOrDie(InfoProc, Size, true); in GetMemoryProfile()
47 struct kinfo_proc2 *InfoProc;
48 uptr Len = sizeof(*InfoProc);
52 InfoProc = (struct kinfo_proc2 *)MmapOrDie(Size, "GetMemoryProfile()");
54 internal_sysctl(Mib, ARRAY_SIZE(Mib), nullptr, (uptr *)InfoProc, &Len, 0),
[all …]