Searched refs:VM_PROT_COPY (Results 1 – 4 of 4) sorted by relevance
82 #define VM_PROT_COPY ((vm_prot_t) 0x08) /* copy-on-read */ macro
832 fs->fault_type = fs->prot | (fs->fault_type & VM_PROT_COPY); in vm_fault_lookup()1529 if ((fs.fault_type & (VM_PROT_COPY | VM_PROT_WRITE)) != 0) { in vm_fault()1618 if ((fs.fault_type & (VM_PROT_COPY | VM_PROT_WRITE)) != 0) { in vm_fault()
5006 if ((fault_typea & VM_PROT_COPY) != 0 && in vm_map_lookup()5034 (fault_typea & VM_PROT_COPY) != 0) { in vm_map_lookup()
234 reqprot = writing ? VM_PROT_COPY | VM_PROT_READ : VM_PROT_READ; in proc_rwmem()