Searched refs:proc_maps (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_solaris.cpp24 void ReadProcMaps(ProcSelfMapsBuff *proc_maps) { argument
25 if (!ReadFileToBuffer("/proc/self/xmap", &proc_maps->data,
26 &proc_maps->mmaped_size, &proc_maps->len)) {
27 proc_maps->data = nullptr;
28 proc_maps->mmaped_size = 0;
29 proc_maps->len = 0;
H A Dsanitizer_procmaps_linux.cpp19 void ReadProcMaps(ProcSelfMapsBuff *proc_maps) { argument
20 if (!ReadFileToBuffer("/proc/self/maps", &proc_maps->data,
21 &proc_maps->mmaped_size, &proc_maps->len)) {
22 proc_maps->data = nullptr;
23 proc_maps->mmaped_size = 0;
24 proc_maps->len = 0;
H A Dsanitizer_procmaps_bsd.cpp47 void ReadProcMaps(ProcSelfMapsBuff *proc_maps) { argument
80 proc_maps->data = (char *)VmMap;
93 proc_maps->data = Mem;
96 proc_maps->mmaped_size = MmapedSize;
97 proc_maps->len = Size;
H A Dsanitizer_posix.cpp228 MemoryMappingLayout proc_maps(/*cache_enabled*/true);
229 if (proc_maps.Error())
232 while (proc_maps.Next(&segment)) {
243 MemoryMappingLayout proc_maps(/*cache_enabled*/true);
248 while (proc_maps.Next(&segment)) {
275 MemoryMappingLayout proc_maps(/*cache_enabled*/false);
278 while (proc_maps.Next(&segment)) {
H A Dsanitizer_linux.h46 void ReadProcMaps(ProcSelfMapsBuff *proc_maps);
H A Dsanitizer_symbolizer_report.cpp133 MemoryMappingLayout proc_maps(/*cache_enabled*/ true);
135 while (proc_maps.Next(&segment)) {
H A Dsanitizer_linux_libcdep.cpp108 MemoryMappingLayout proc_maps(/*cache_enabled*/true);
109 if (proc_maps.Error()) {
115 while (proc_maps.Next(&segment)) {
H A Dsanitizer_linux.cpp1007 MemoryMappingLayout proc_maps(/*cache_enabled*/true);
1008 if (proc_maps.Error())
1011 while (proc_maps.Next(&segment)) {
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_posix.cpp129 MemoryMappingLayout proc_maps(true);
131 while (proc_maps.Next(&segment)) {
H A Dtsan_platform_linux.cpp197 MemoryMappingLayout proc_maps(/*cache_enabled*/true);
200 while (proc_maps.Next(&segment)) {
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_linux.cpp216 MemoryMappingLayout proc_maps(/*cache_enabled*/true);
219 while (proc_maps.Next(&segment)) {
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp271 MemoryMappingLayout proc_maps(true);
275 while (proc_maps.Next(&segment)) {
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common.cpp339 MemoryMappingLayout proc_maps(/*cache_enabled*/ true);
341 while (proc_maps.Next(&segment)) {

Completed in 193 milliseconds