Home | History | Annotate | Download | only in Unix

Lines Matching full:mapping

421   Mapping = ::mmap(nullptr, Size, prot, flags, FD, Offset);
422 if (Mapping == MAP_FAILED)
429 : Size(length), Mapping() {
438 Mapping = nullptr;
442 if (Mapping)
443 ::munmap(Mapping, Size);
447 assert(Mapping && "Mapping failed but used anyway!");
452 assert(Mapping && "Mapping failed but used anyway!");
453 return reinterpret_cast<char*>(Mapping);
457 assert(Mapping && "Mapping failed but used anyway!");
458 return reinterpret_cast<const char*>(Mapping);