Lines Matching +full:9 +full:a
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 is a generic representation of an address space.
45 This address space may belong to a user process or the kernel.
48 .Xr vm_map_submap 9
72 Head node of a circular, doubly linked list of
75 Each object defines a particular region within this map's address space.
79 A mutex which is used if the map is a system map.
81 A count of the members in use within the circular map entry list.
89 Root node of a binary search tree used for fast lookup of map entries.
104 Indicates if a thread is waiting for an allocation within the map.
108 to a user process.
112 .Xr vm_map_find 9
114 .Xr vm_map_insert 9
129 Do not include the mapping in a core dump.
131 Specify that the request is from a user process calling
141 is a generic representation of a region.
142 The region managed by each entry is associated with a
173 Pointer to the previous node in a doubly-linked, circular list.
175 Pointer to the next node in a doubly-linked, circular list.
177 Pointer to the left node in a binary search tree.
179 Pointer to the right node in a binary search tree.
185 If the entry is for a process stack, specifies how much the entry can grow.
206 a user process's address space:
219 Contains the address of the last read which caused a page fault.
223 as a mask within the
233 member specifies a subordinate map.
235 Indicate that this is a copy-on-write region.
237 Indicate that a copy-on-write region needs to be copied.
239 Specifies that accesses within this region should never cause a page fault.
240 If a page fault occurs within this region, the system will panic.
242 Indicate that this region was wired on behalf of a user process.
249 Is a hint that pages within this region will be accessed randomly,
258 The region should not be included in a core dump.
265 This governs the inheritance behaviour for a map entry during fork processing.
272 A new
286 is used to specify the structure which a
302 member is only used by system maps to indicate that a memory range
303 is managed by a subordinate system map.
304 Within a user process map, each
306 is backed by a
309 .Xr pmap 9 ,
310 .Xr vm_map_check_protection 9 ,
311 .Xr vm_map_delete 9 ,
312 .Xr vm_map_entry_resize_free 9 ,
313 .Xr vm_map_find 9 ,
314 .Xr vm_map_findspace 9 ,
315 .Xr vm_map_inherit 9 ,
316 .Xr vm_map_init 9 ,
317 .Xr vm_map_insert 9 ,
318 .Xr vm_map_lock 9 ,
319 .Xr vm_map_lookup 9 ,
320 .Xr vm_map_madvise 9 ,
321 .Xr vm_map_max 9 ,
322 .Xr vm_map_min 9 ,
323 .Xr vm_map_pmap 9 ,
324 .Xr vm_map_protect 9 ,
325 .Xr vm_map_remove 9 ,
326 .Xr vm_map_simplify_entry 9 ,
327 .Xr vm_map_stack 9 ,
328 .Xr vm_map_submap 9 ,
329 .Xr vm_map_sync 9 ,
330 .Xr vm_map_wire 9