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