reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/Unix/Memory.inc
  127   void *Addr = ::mmap(reinterpret_cast<void *>(Start), PageSize*NumPages, Protect,
lib/Support/Unix/Path.inc
  771   Mapping = ::mmap(nullptr, Size, prot, flags, FD, Offset);
projects/compiler-rt/lib/gwp_asan/platform_specific/guarded_pool_allocator_posix.cpp
   23       mmap(nullptr, Size, PROT_NONE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
   46   if (mmap(Ptr, Size, PROT_NONE, MAP_FIXED | MAP_ANONYMOUS | MAP_PRIVATE, -1,
projects/compiler-rt/lib/profile/GCDAProfiling.c
  284   write_buffer = mmap(0, file_size, PROT_READ | PROT_WRITE,
projects/compiler-rt/lib/profile/InstrProfilingFile.c
  198   ProfileBuffer = mmap(NULL, ProfileFileSize, PROT_READ, MAP_SHARED | MAP_FILE,
projects/compiler-rt/lib/scudo/standalone/linux.cpp
   59   void *P = mmap(Addr, Size, MmapProt, MmapFlags, -1, 0);
tools/lldb/source/Plugins/Process/Linux/ProcessorTrace.cpp
  120       mmap(nullptr, (metabufsize + page_size), PROT_WRITE, MAP_SHARED, fd, 0);
  136   auto mmap_aux = mmap(nullptr, bufsize, PROT_READ, MAP_SHARED, fd,
utils/unittest/googletest/src/gtest-death-test.cc
 1075     void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE,