Lines Matching refs:cow

144     int cow);
1138 vm_offset_t start, vm_offset_t end, vm_prot_t prot, vm_prot_t max, int cow) in vm_map_insert() argument
1147 (cow & MAP_COPY_ON_WRITE) == 0, in vm_map_insert()
1149 KASSERT(object == NULL || (cow & MAP_NOFAULT) == 0, in vm_map_insert()
1176 if (cow & MAP_COPY_ON_WRITE) in vm_map_insert()
1178 if (cow & MAP_NOFAULT) in vm_map_insert()
1180 if (cow & MAP_DISABLE_SYNCER) in vm_map_insert()
1182 if (cow & MAP_DISABLE_COREDUMP) in vm_map_insert()
1184 if (cow & MAP_STACK_GROWS_DOWN) in vm_map_insert()
1186 if (cow & MAP_STACK_GROWS_UP) in vm_map_insert()
1188 if (cow & MAP_VN_WRITECOUNT) in vm_map_insert()
1190 if (cow & MAP_INHERIT_SHARE) in vm_map_insert()
1196 if (cow & (MAP_ACC_NO_CHARGE | MAP_NOFAULT)) in vm_map_insert()
1198 if ((cow & MAP_ACC_CHARGED) || ((prot & VM_PROT_WRITE) && in vm_map_insert()
1200 if (!(cow & MAP_ACC_CHARGED) && !swap_reserve(end - start)) in vm_map_insert()
1227 (cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0 && in vm_map_insert()
1311 if (cow & (MAP_PREFAULT|MAP_PREFAULT_PARTIAL)) { in vm_map_insert()
1314 cow & MAP_PREFAULT_PARTIAL); in vm_map_insert()
1407 vm_prot_t max, int cow) in vm_map_fixed() argument
1413 KASSERT((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0 || in vm_map_fixed()
1418 if ((cow & MAP_CHECK_EXCL) == 0) in vm_map_fixed()
1420 if ((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) != 0) { in vm_map_fixed()
1422 prot, max, cow); in vm_map_fixed()
1425 prot, max, cow); in vm_map_fixed()
1444 vm_prot_t prot, vm_prot_t max, int cow) in vm_map_find() argument
1449 KASSERT((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0 || in vm_map_find()
1493 if ((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) != 0) { in vm_map_find()
1495 sgrowsiz, prot, max, cow); in vm_map_find()
1498 start + length, prot, max, cow); in vm_map_find()
3421 vm_prot_t prot, vm_prot_t max, int cow) in vm_map_stack() argument
3444 max, cow); in vm_map_stack()
3452 vm_size_t growsize, vm_prot_t prot, vm_prot_t max, int cow) in vm_map_stack_locked() argument
3465 orient = cow & (MAP_STACK_GROWS_DOWN|MAP_STACK_GROWS_UP); in vm_map_stack_locked()
3509 rv = vm_map_insert(map, NULL, 0, bot, top, prot, max, cow); in vm_map_stack_locked()