Searched refs:smaps (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_procmaps_common.cpp | 150 char *smaps = nullptr; in GetMemoryProfile() local 153 if (!ReadFileToBuffer("/proc/self/smaps", &smaps, &smaps_cap, &smaps_len)) in GetMemoryProfile() 155 ParseUnixMemoryProfile(cb, stats, smaps, smaps_len); in GetMemoryProfile() 156 UnmapOrDie(smaps, smaps_cap); in GetMemoryProfile() 159 void ParseUnixMemoryProfile(fill_profile_f cb, uptr *stats, char *smaps, in ParseUnixMemoryProfile() argument 163 const char *pos = smaps; in ParseUnixMemoryProfile() 164 char *end = smaps + smaps_len; in ParseUnixMemoryProfile()
|
H A D | sanitizer_common.h | 205 void ParseUnixMemoryProfile(fill_profile_f cb, uptr *stats, char *smaps,
|