HomeSort by: relevance | last modified time | path
    Searched refs:max_protection (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/miscfs/procfs/
procfs_map.c 188 (entry->max_protection & VM_PROT_READ) ? 'r' : '-',
189 (entry->max_protection & VM_PROT_WRITE) ? 'w' : '-',
190 (entry->max_protection & VM_PROT_EXECUTE) ?
  /src/usr.bin/pmap/
pmap.c 376 printf("%*s max_protection = %#x,", indent(2), "",
377 vme->max_protection);
469 (vme->max_protection & VM_PROT_READ) ? 'r' : '-',
470 (vme->max_protection & VM_PROT_WRITE) ? 'w' : '-',
471 (vme->max_protection & VM_PROT_EXECUTE) ? 'x' : '-',
517 vme->protection, vme->max_protection,
572 (vme->max_protection & VM_PROT_READ) ? 'r' : '-',
573 (vme->max_protection & VM_PROT_WRITE) ? 'w' : '-',
574 (vme->max_protection & VM_PROT_EXECUTE) ? 'x' : '-',
  /src/sys/uvm/
uvm_mremap.c 94 reserved_entry->max_protection = entry->max_protection;
uvm_map.h 151 vm_prot_t max_protection; /* maximum protection */ member in struct:vm_map_entry
uvm_map.c 206 (ent)->max_protection == (maxprot) && \
1572 new_entry->max_protection = maxprot;
2892 newentry->protection = newentry->max_protection =
2896 entry->max_protection : entry->protection;
2897 newentry->max_protection = entry->max_protection;
3153 * => set_max means set max_protection.
3188 if ((new_prot & current->max_protection) != new_prot) {
3222 (current->max_protection = new_prot) & old_prot;
3597 ((entry->max_protection & VM_PROT_WRITE) |
    [all...]
uvm_fault.c 1013 ufi->entry->max_protection : ufi->entry->protection;

Completed in 50 milliseconds