Lines Matching refs:entry
114 struct vm_map_entry *entry;
145 for (entry = map->header.next; entry != &map->header;
146 entry = entry->next) {
148 if (UVM_ET_ISSUBMAP(entry))
155 if (UVM_ET_ISOBJ(entry) &&
156 UVM_OBJ_IS_VNODE(entry->object.uvm_obj)) {
157 vp = (struct vnode *)entry->object.uvm_obj;
171 width, entry->start,
172 width, entry->end,
173 (entry->protection & VM_PROT_READ) ? 'r' : '-',
174 (entry->protection & VM_PROT_WRITE) ? 'w' : '-',
175 (entry->protection & VM_PROT_EXECUTE) ? 'x' : '-',
176 (entry->etype & UVM_ET_COPYONWRITE) ? 'p' : 's',
177 width, (unsigned long)entry->offset,
184 entry->start, entry->end,
185 (entry->protection & VM_PROT_READ) ? 'r' : '-',
186 (entry->protection & VM_PROT_WRITE) ? 'w' : '-',
187 (entry->protection & VM_PROT_EXECUTE) ? 'x' : '-',
188 (entry->max_protection & VM_PROT_READ) ? 'r' : '-',
189 (entry->max_protection & VM_PROT_WRITE) ? 'w' : '-',
190 (entry->max_protection & VM_PROT_EXECUTE) ?
192 (entry->etype & UVM_ET_COPYONWRITE) ?
194 (entry->etype & UVM_ET_NEEDSCOPY) ? "NC" : "NNC",
195 entry->inheritance, entry->wired_count,
196 entry->advice);