Home
last modified time | relevance | path

Searched refs:VM_PROT_COPY (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/vm/
H A Dvm.h82 #define VM_PROT_COPY ((vm_prot_t) 0x08) /* copy-on-read */ macro
H A Dvm_fault.c832 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()
H A Dvm_map.c5006 if ((fault_typea & VM_PROT_COPY) != 0 && in vm_map_lookup()
5034 (fault_typea & VM_PROT_COPY) != 0) { in vm_map_lookup()
/f-stack/freebsd/kern/
H A Dsys_process.c234 reqprot = writing ? VM_PROT_COPY | VM_PROT_READ : VM_PROT_READ; in proc_rwmem()