Lines Matching +full:exact +full:- +full:len
31 Appendix A \- Virtual Memory Interface
42 /* protections are chosen from these bits, or-ed together */
68 The cpu-dependent size of a page is returned by the
77 maddr = mmap(addr, len, prot, flags, fd, pos);
78 result caddr_t maddr; caddr_t addr; int *len, prot, flags, fd; off_t pos;
81 for at most \fIlen\fP bytes to be mapped from the object represented by
87 in which case the exact address will be used or the call will fail.
88 The actual amount mapped is returned in \fIlen\fP.
89 The \fIaddr\fP, \fIlen\fP, and \fIpos\fP parameters
103 mapping a regular file or character-special device memory,
106 for naming, and may be given as \-1 if no name
122 msync(addr, len);
123 caddr_t addr; int len;
127 If \fIlen\fP is 0, all modified pages within the region containing \fIaddr\fP
129 if \fIlen\fP is non-zero, only the pages containing \fIaddr\fP and \fIlen\fP
138 munmap(addr, len);
139 caddr_t addr; int len;
149 mprotect(addr, len, prot);
150 caddr_t addr; int len, prot;
161 madvise(addr, len, behav);
162 caddr_t addr; int len, behav;
178 mincore(addr, len, vec)
179 caddr_t addr; int len; result char *vec;
183 that the page is in-core.
201 If \fIwait\fP is true and the previous value is non-zero,
212 If the ``WANT'' flag is non-zero in the previous value,