Lines Matching defs:vm_map_entry
103 struct vm_map_entry { struct
104 struct vm_map_entry *left; /* left child or previous entry */ argument
105 struct vm_map_entry *right; /* right child or next entry */ argument
106 vm_offset_t start; /* start address */
107 vm_offset_t end; /* end address */
108 vm_offset_t next_read; /* vaddr of the next sequential read */
109 vm_size_t max_free; /* max free space in subtree */
110 union vm_map_object object; /* object I point to */
111 vm_ooffset_t offset; /* offset into object */
112 vm_eflags_t eflags; /* map entry flags */
113 vm_prot_t protection; /* protection code */
114 vm_prot_t max_protection; /* maximum protection */
115 vm_inherit_t inheritance; /* inheritance */
116 uint8_t read_ahead; /* pages in the read-ahead window */
117 int wired_count; /* can be paged if = 0 */
118 struct ucred *cred; /* tmp storage for creator ref */
119 struct thread *wiring_thread;