Lines Matching refs:mmap
836 * descriptor for subsequent ioctl or mmap calls.
1222 warn("mmap region limit exceeded with MREMAP_FIXED\n");
1735 /// Real mmap handler.
1783 warn("mmap: writing to shared mmap region is currently "
1798 return emul_driver->mmap(tc, start, length, prot, tgt_flags,
1807 pmap = (decltype(pmap))mmap(nullptr, length, PROT_READ, MAP_PRIVATE,
1811 warn("mmap: failed to map file into host address space");
1816 // Extend global mmap region if necessary. Note that we ignore the
1828 DPRINTF_SYSCALL(Verbose, " mmap range is 0x%x - 0x%x\n",
1862 // It is possible to mmap an area larger than a file, however
1868 fatal("mmap: cannot stat file");
1871 // checking both the mmap size and the filesize that we are
1872 // trying to mmap into this space; the mmap size also depends
1878 // Cleanup the mmap region before exiting this function.
1882 // The loader will call mmap to map the images into its address
1938 /// Target mmap() handler.