Lines Matching refs:start
76 …ern_return_t (*func)(MAP_T dst_map, vm_map_copy_t copy, mach_vm_address_t start, mach_vm_size_t si… in test_vm_map_copy_overwrite() argument
103 kern_return_t ret = func(dst_map, copy, trial.start, trial.size); in test_vm_map_copy_overwrite()
165 call_mach_vm_read(MAP_T map, mach_vm_address_t start, mach_vm_size_t size) in call_mach_vm_read() argument
169 kern_return_t kr = mach_vm_read(map, start, size, &out_addr, &out_size); in call_mach_vm_read()
192 call_vm_map_copyin(MAP_T map, mach_vm_address_t start, mach_vm_size_t size) in call_vm_map_copyin() argument
196 kern_return_t kr = vm_map_copyin(map, start, size, false, ©); in call_vm_map_copyin()
214 call_mach_vm_allocate__flags(MAP_T map, mach_vm_address_t * start, mach_vm_size_t size, int flags) in call_mach_vm_allocate__flags() argument
216 mach_vm_address_t saved_start = *start; in call_mach_vm_allocate__flags()
217 kern_return_t kr = mach_vm_allocate_external(map, start, size, flags); in call_mach_vm_allocate__flags()
218 check_mach_vm_allocate_outparam_changes(&kr, *start, size, saved_start, flags, map); in call_mach_vm_allocate__flags()
223 call_mach_vm_allocate__start_size_fixed(MAP_T map, mach_vm_address_t * start, mach_vm_size_t size) in call_mach_vm_allocate__start_size_fixed() argument
225 mach_vm_address_t saved_start = *start; in call_mach_vm_allocate__start_size_fixed()
226 kern_return_t kr = mach_vm_allocate_external(map, start, size, VM_FLAGS_FIXED); in call_mach_vm_allocate__start_size_fixed()
227 check_mach_vm_allocate_outparam_changes(&kr, *start, size, saved_start, VM_FLAGS_FIXED, map); in call_mach_vm_allocate__start_size_fixed()
232 call_mach_vm_allocate__start_size_anywhere(MAP_T map, mach_vm_address_t * start, mach_vm_size_t siz… in call_mach_vm_allocate__start_size_anywhere() argument
234 mach_vm_address_t saved_start = *start; in call_mach_vm_allocate__start_size_anywhere()
235 kern_return_t kr = mach_vm_allocate_external(map, start, size, VM_FLAGS_ANYWHERE); in call_mach_vm_allocate__start_size_anywhere()
236 check_mach_vm_allocate_outparam_changes(&kr, *start, size, saved_start, VM_FLAGS_ANYWHERE, map); in call_mach_vm_allocate__start_size_anywhere()
241 call_mach_vm_allocate_kernel__flags(MAP_T map, mach_vm_address_t * start, mach_vm_size_t size, int … in call_mach_vm_allocate_kernel__flags() argument
243 mach_vm_address_t saved_start = *start; in call_mach_vm_allocate_kernel__flags()
244 kern_return_t kr = mach_vm_allocate_kernel(map, start, size, in call_mach_vm_allocate_kernel__flags()
246 check_mach_vm_allocate_outparam_changes(&kr, *start, size, saved_start, flags, map); in call_mach_vm_allocate_kernel__flags()
251 call_mach_vm_allocate_kernel__start_size_fixed(MAP_T map, mach_vm_address_t * start, mach_vm_size_t… in call_mach_vm_allocate_kernel__start_size_fixed() argument
253 if (dealloc_would_time_out(*start, size, map)) { in call_mach_vm_allocate_kernel__start_size_fixed()
257 mach_vm_address_t saved_start = *start; in call_mach_vm_allocate_kernel__start_size_fixed()
258 kern_return_t kr = mach_vm_allocate_kernel(map, start, size, in call_mach_vm_allocate_kernel__start_size_fixed()
260 check_mach_vm_allocate_outparam_changes(&kr, *start, size, saved_start, VM_FLAGS_FIXED, map); in call_mach_vm_allocate_kernel__start_size_fixed()
265 call_mach_vm_allocate_kernel__start_size_anywhere(MAP_T map, mach_vm_address_t * start, mach_vm_siz… in call_mach_vm_allocate_kernel__start_size_anywhere() argument
267 if (dealloc_would_time_out(*start, size, map)) { in call_mach_vm_allocate_kernel__start_size_anywhere()
271 mach_vm_address_t saved_start = *start; in call_mach_vm_allocate_kernel__start_size_anywhere()
272 kern_return_t kr = mach_vm_allocate_kernel(map, start, size, in call_mach_vm_allocate_kernel__start_size_anywhere()
274 check_mach_vm_allocate_outparam_changes(&kr, *start, size, saved_start, VM_FLAGS_ANYWHERE, map); in call_mach_vm_allocate_kernel__start_size_anywhere()
281 call_vm_allocate__flags(MAP_T map, mach_vm_address_t * start, mach_vm_size_t size, int flags) in call_vm_allocate__flags() argument
283 mach_vm_address_t saved_start = *start; in call_vm_allocate__flags()
284 kern_return_t kr = vm_allocate(map, (vm_address_t *) start, (vm_size_t) size, flags); in call_vm_allocate__flags()
285 check_mach_vm_allocate_outparam_changes(&kr, *start, size, saved_start, flags, map); in call_vm_allocate__flags()
290 call_vm_allocate__start_size_fixed(MAP_T map, mach_vm_address_t * start, mach_vm_size_t size) in call_vm_allocate__start_size_fixed() argument
292 mach_vm_address_t saved_start = *start; in call_vm_allocate__start_size_fixed()
293 kern_return_t kr = vm_allocate(map, (vm_address_t *) start, (vm_size_t) size, VM_FLAGS_FIXED); in call_vm_allocate__start_size_fixed()
294 check_mach_vm_allocate_outparam_changes(&kr, *start, size, saved_start, VM_FLAGS_FIXED, map); in call_vm_allocate__start_size_fixed()
299 call_vm_allocate__start_size_anywhere(MAP_T map, mach_vm_address_t * start, mach_vm_size_t size) in call_vm_allocate__start_size_anywhere() argument
301 mach_vm_address_t saved_start = *start; in call_vm_allocate__start_size_anywhere()
302 kern_return_t kr = vm_allocate(map, (vm_address_t *) start, (vm_size_t) size, VM_FLAGS_ANYWHERE); in call_vm_allocate__start_size_anywhere()
303 check_mach_vm_allocate_outparam_changes(&kr, *start, size, saved_start, VM_FLAGS_ANYWHERE, map); in call_vm_allocate__start_size_anywhere()
308 call_mach_vm_deallocate(MAP_T map, mach_vm_address_t start, mach_vm_size_t size) in call_mach_vm_deallocate() argument
310 kern_return_t kr = mach_vm_deallocate(map, start, size); in call_mach_vm_deallocate()
315 call_vm_deallocate(MAP_T map, mach_vm_address_t start, mach_vm_size_t size) in call_vm_deallocate() argument
317 kern_return_t kr = vm_deallocate(map, (vm_address_t) start, (vm_size_t) size); in call_vm_deallocate()
325 call_vslock(void * start, size_t size) in call_vslock() argument
327 int kr = vslock((user_addr_t) start, (user_size_t) size); in call_vslock()
329 (void) vsunlock((user_addr_t) start, (user_size_t) size, 0); in call_vslock()
336 call_vsunlock_undirtied(void * start, size_t size) in call_vsunlock_undirtied() argument
338 int kr = vslock((user_addr_t) start, (user_size_t) size); in call_vsunlock_undirtied()
346 kr = vsunlock((user_addr_t) start, (user_size_t) size, 0); in call_vsunlock_undirtied()
351 call_vsunlock_dirtied(void * start, size_t size) in call_vsunlock_dirtied() argument
353 int kr = vslock((user_addr_t) start, (user_size_t) size); in call_vsunlock_dirtied()
361 kr = vsunlock((user_addr_t) start, (user_size_t) size, 1); in call_vsunlock_dirtied()
367 vm_map_offset_t start,
375 mach_vm_address_t start,
401 will_vm_map_wire_nested_panic_due_to_invalid_range_size(MAP_T map, mach_vm_address_t start) in will_vm_map_wire_nested_panic_due_to_invalid_range_size() argument
403 mach_vm_address_t end = start + VM_MAP_PAGE_SIZE(map); in will_vm_map_wire_nested_panic_due_to_invalid_range_size()
404 if (round_up_map(map, end) - trunc_down_map(map, start) != VM_MAP_PAGE_SIZE(map)) { in will_vm_map_wire_nested_panic_due_to_invalid_range_size()
423 mach_vm_address_t start, in vm_map_wire_and_extract_retyped() argument
429 if (will_vm_map_wire_nested_panic_due_to_invalid_range_size(map, start)) { in vm_map_wire_and_extract_retyped()
434 kern_return_t kr = vm_map_wire_and_extract(map, start, prot, user_wire, &physpage); in vm_map_wire_and_extract_retyped()
444 mach_vm_address_t start, in vm_map_wire_external_retyped() argument
450 return vm_map_wire_external(map, start, end, prot, user_wire); in vm_map_wire_external_retyped()
454 wire_call_impl(wire_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_size_t end, vm_prot_t prot… in wire_call_impl() argument
460 kern_return_t kr = fn(map, start, end, prot, tag, user_wire); in wire_call_impl()
463 (void) vm_map_unwire(map, start, end, user_wire); in wire_call_impl()
471 …call_ ## FN ## __start_end__user_wired_ ## user_wire ## _(MAP_T map, mach_vm_address_t start, mach…
473 … return wire_call_impl(FN, map, start, end, VM_PROT_DEFAULT, VM_KERN_MEMORY_OSFMK, user_wire); \
477 …call_ ## FN ## __prot__user_wired_ ## user_wire ## _(MAP_T map, mach_vm_address_t start, mach_vm_s…
480 if (__builtin_add_overflow(start, size, &end)) { \
483 return wire_call_impl(FN, map, start, end, prot, VM_KERN_MEMORY_OSFMK, user_wire); \
487 …call_ ## FN ## __tag__user_wired_ ## user_wire ## _(MAP_T map, mach_vm_address_t start, mach_vm_ad…
489 kern_return_t kr = wire_call_impl(FN, map, start, end, VM_PROT_DEFAULT, tag, user_wire); \
494 call_ ## FN ## __start__user_wired_ ## user_wire ## _(MAP_T map, mach_vm_address_t start) \
496 … return wire_call_impl(FN, map, start, 0, VM_PROT_DEFAULT, VM_KERN_MEMORY_OSFMK, user_wire); \
517 call_vm_map_unwire_user_wired(MAP_T map, mach_vm_address_t start, mach_vm_address_t end) in call_vm_map_unwire_user_wired() argument
519 kern_return_t kr = vm_map_unwire(map, start, end, TRUE); in call_vm_map_unwire_user_wired()
525 call_vm_map_unwire_non_user_wired(MAP_T map, mach_vm_address_t start, mach_vm_address_t end) in call_vm_map_unwire_non_user_wired() argument
527 …kern_return_t kr = vm_map_wire_kernel(map, start, end, VM_PROT_DEFAULT, VM_KERN_MEMORY_OSFMK, FALS… in call_vm_map_unwire_non_user_wired()
531 kr = vm_map_unwire(map, start, end, FALSE); in call_vm_map_unwire_non_user_wired()
633 call_mach_vm_protect__start_size(MAP_T map, mach_vm_address_t start, mach_vm_size_t size) in call_mach_vm_protect__start_size() argument
635 kern_return_t kr = mach_vm_protect(map, start, size, 0, VM_PROT_READ | VM_PROT_WRITE); in call_mach_vm_protect__start_size()
639 call_mach_vm_protect__vm_prot(MAP_T map, mach_vm_address_t start, mach_vm_size_t size, vm_prot_t pr… in call_mach_vm_protect__vm_prot() argument
641 kern_return_t kr = mach_vm_protect(map, start, size, 0, prot); in call_mach_vm_protect__vm_prot()
646 call_vm_protect__start_size(MAP_T map, vm_address_t start, vm_size_t size) in call_vm_protect__start_size() argument
648 kern_return_t kr = vm_protect(map, start, size, 0, VM_PROT_READ | VM_PROT_WRITE); in call_vm_protect__start_size()
653 call_vm_protect__vm_prot(MAP_T map, vm_address_t start, vm_size_t size, vm_prot_t prot) in call_vm_protect__vm_prot() argument
655 kern_return_t kr = vm_protect(map, start, size, 0, prot); in call_vm_protect__vm_prot()
665 will_vm_map_protect_panic(mach_vm_address_t start, mach_vm_address_t end) in will_vm_map_protect_panic() argument
667 bool start_aligned = start == ((start >> VME_ALIAS_BITS) << VME_ALIAS_BITS); in will_vm_map_protect_panic()
673 call_vm_map_protect__start_size__no_max(MAP_T map, mach_vm_address_t start, mach_vm_size_t size) in call_vm_map_protect__start_size__no_max() argument
675 mach_vm_address_t end = start + size; in call_vm_map_protect__start_size__no_max()
676 if (will_vm_map_protect_panic(start, end)) { in call_vm_map_protect__start_size__no_max()
680 kern_return_t kr = vm_map_protect(map, start, end, 0, VM_PROT_READ | VM_PROT_WRITE); in call_vm_map_protect__start_size__no_max()
685 call_vm_map_protect__start_size__set_max(MAP_T map, mach_vm_address_t start, mach_vm_size_t size) in call_vm_map_protect__start_size__set_max() argument
687 mach_vm_address_t end = start + size; in call_vm_map_protect__start_size__set_max()
688 if (will_vm_map_protect_panic(start, end)) { in call_vm_map_protect__start_size__set_max()
692 kern_return_t kr = vm_map_protect(map, start, end, 1, VM_PROT_READ | VM_PROT_WRITE); in call_vm_map_protect__start_size__set_max()
697 call_vm_map_protect__vm_prot__no_max(MAP_T map, mach_vm_address_t start, mach_vm_size_t size, vm_pr… in call_vm_map_protect__vm_prot__no_max() argument
699 mach_vm_address_t end = start + size; in call_vm_map_protect__vm_prot__no_max()
700 if (will_vm_map_protect_panic(start, end)) { in call_vm_map_protect__vm_prot__no_max()
704 kern_return_t kr = vm_map_protect(map, start, end, 0, prot); in call_vm_map_protect__vm_prot__no_max()
709 call_vm_map_protect__vm_prot__set_max(MAP_T map, mach_vm_address_t start, mach_vm_size_t size, vm_p… in call_vm_map_protect__vm_prot__set_max() argument
711 mach_vm_address_t end = start + size; in call_vm_map_protect__vm_prot__set_max()
712 if (will_vm_map_protect_panic(start, end)) { in call_vm_map_protect__vm_prot__set_max()
716 kern_return_t kr = vm_map_protect(map, start, end, 0, prot); in call_vm_map_protect__vm_prot__set_max()
724 call_useracc__start_size(void * start, size_t size) in call_useracc__start_size() argument
726 int result = useracc((user_addr_t) start, (user_addr_t) size, VM_PROT_READ); in call_useracc__start_size()
731 call_useracc__vm_prot(void * start, size_t size, int prot) in call_useracc__vm_prot() argument
733 return useracc((user_addr_t) start, (user_addr_t) size, prot); in call_useracc__vm_prot()
825 call_mach_vm_range_create(MAP_T map, mach_vm_address_t start, mach_vm_size_t size, mach_vm_address_… in call_mach_vm_range_create() argument
829 .range = { start, start + size }, .range_tag = MACH_VM_RANGE_FIXED, in call_mach_vm_range_create()
889 call_mach_memory_entry_map_size__start_size(MAP_T map, mach_vm_address_t start, mach_vm_size_t size) in call_mach_memory_entry_map_size__start_size() argument
908 kr = mach_memory_entry_map_size(mementry, map, start, size, &map_size); in call_mach_memory_entry_map_size__start_size()
930 uint64_t start, uint64_t saved_start, in check_task_find_region_details_outparam_changes() argument
935 if (vp != 0 || vid != 0 || is_map_shared != 0 || start != 0 || len != 0) { in check_task_find_region_details_outparam_changes()
939 if (vp == saved_vp || start == saved_start || len == saved_len) { in check_task_find_region_details_outparam_changes()
958 uint64_t len = UNLIKELY_INITIAL_SIZE, start = UNLIKELY_INITIAL_ADDRESS; in call_task_find_region_details() local
959 uint64_t saved_len = len, saved_start = start; in call_task_find_region_details()
972 …ails(current_task(), addr, FIND_REGION_DETAILS_AT_OFFSET, &vp, &vid, &is_map_shared, &start, &len); in call_task_find_region_details()
976 …check_task_find_region_details_outparam_changes(&kr, vp, saved_vp, vid, is_map_shared, start, save… in call_task_find_region_details()
981 …located_vnode_addr(kern_return_t (*func)(MAP_T dst_map, mach_vm_address_t start), const char *test… in test_kext_unix_with_allocated_vnode_addr() argument
1047 call_ ## FN ## __start_size__memonly(MAP_T map, T start, T size) \
1053 kern_return_t kr = FN(map, &io_size, start, \
1064 call_ ## FN ## __start_size__namedcreate(MAP_T map, T start, T size) \
1070 kern_return_t kr = FN(map, &io_size, start, \
1081 call_ ## FN ## __start_size__copy(MAP_T map, T start, T size) \
1087 kern_return_t kr = FN(map, &io_size, start, \
1098 call_ ## FN ## __start_size__share(MAP_T map, T start, T size) \
1104 kern_return_t kr = FN(map, &io_size, start, \
1115 call_ ## FN ## __start_size__namedreuse(MAP_T map, T start, T size) \
1121 kern_return_t kr = FN(map, &io_size, start, \
1132 call_ ## FN ## __vm_prot(MAP_T map, T start, T size, vm_prot_t prot) \
1138 kern_return_t kr = FN(map, &io_size, start, \
1184 call_map_fn__allocate_fixed(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_size_t size) in call_map_fn__allocate_fixed() argument
1186 mach_vm_address_t out_addr = start; in call_map_fn__allocate_fixed()
1194 call_map_fn__allocate_fixed_copy(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_size_t si… in call_map_fn__allocate_fixed_copy() argument
1196 mach_vm_address_t out_addr = start; in call_map_fn__allocate_fixed_copy()
1215 call_map_fn__memobject_fixed(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_size_t size) in call_map_fn__memobject_fixed() argument
1218 mach_vm_address_t out_addr = start; in call_map_fn__memobject_fixed()
1227 call_map_fn__memobject_fixed_copy(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_size_t s… in call_map_fn__memobject_fixed_copy() argument
1230 mach_vm_address_t out_addr = start; in call_map_fn__memobject_fixed_copy()
1253 …ect__ssoo(map_fn_t fn, MAP_T map, int flags, bool copy, mach_vm_address_t start, mach_vm_size_t si… in helper_call_map_fn__memobject__ssoo() argument
1256 mach_vm_address_t out_addr = start; in helper_call_map_fn__memobject__ssoo()
1265 …fixed__start_size_offset_object(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_size_t si… in call_map_fn__memobject_fixed__start_size_offset_object() argument
1267 …_fn__memobject__ssoo(fn, map, VM_FLAGS_FIXED | VM_FLAGS_OVERWRITE, false, start, size, offset, obj… in call_map_fn__memobject_fixed__start_size_offset_object()
1271 …_copy__start_size_offset_object(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_size_t si… in call_map_fn__memobject_fixed_copy__start_size_offset_object() argument
1273 …p_fn__memobject__ssoo(fn, map, VM_FLAGS_FIXED | VM_FLAGS_OVERWRITE, true, start, size, offset, obj… in call_map_fn__memobject_fixed_copy__start_size_offset_object()
1277 …where__start_size_offset_object(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_size_t si… in call_map_fn__memobject_anywhere__start_size_offset_object() argument
1279 …return helper_call_map_fn__memobject__ssoo(fn, map, VM_FLAGS_ANYWHERE, false, start, size, offset,… in call_map_fn__memobject_anywhere__start_size_offset_object()
1283 …__inherit(map_fn_t fn, MAP_T map, int flags, bool copy, mach_vm_address_t start, mach_vm_size_t si… in help_call_map_fn__allocate__inherit() argument
1285 mach_vm_address_t out_addr = start; in help_call_map_fn__allocate__inherit()
1293 call_map_fn__allocate_fixed__inherit(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_size_… in call_map_fn__allocate_fixed__inherit() argument
1295 …p_fn__allocate__inherit(fn, map, VM_FLAGS_FIXED | VM_FLAGS_OVERWRITE, false, start, size, inherit); in call_map_fn__allocate_fixed__inherit()
1299 call_map_fn__allocate_fixed_copy__inherit(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_… in call_map_fn__allocate_fixed_copy__inherit() argument
1301 …ap_fn__allocate__inherit(fn, map, VM_FLAGS_FIXED | VM_FLAGS_OVERWRITE, true, start, size, inherit); in call_map_fn__allocate_fixed_copy__inherit()
1305 call_map_fn__allocate_anywhere__inherit(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_si… in call_map_fn__allocate_anywhere__inherit() argument
1307 …return help_call_map_fn__allocate__inherit(fn, map, VM_FLAGS_ANYWHERE, false, start, size, inherit… in call_map_fn__allocate_anywhere__inherit()
1311 …__inherit(map_fn_t fn, MAP_T map, int flags, bool copy, mach_vm_address_t start, mach_vm_size_t si… in help_call_map_fn__memobject__inherit() argument
1314 mach_vm_address_t out_addr = start; in help_call_map_fn__memobject__inherit()
1323 call_map_fn__memobject_fixed__inherit(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_size… in call_map_fn__memobject_fixed__inherit() argument
1325 …_fn__memobject__inherit(fn, map, VM_FLAGS_FIXED | VM_FLAGS_OVERWRITE, false, start, size, inherit); in call_map_fn__memobject_fixed__inherit()
1329 call_map_fn__memobject_fixed_copy__inherit(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm… in call_map_fn__memobject_fixed_copy__inherit() argument
1331 …p_fn__memobject__inherit(fn, map, VM_FLAGS_FIXED | VM_FLAGS_OVERWRITE, true, start, size, inherit); in call_map_fn__memobject_fixed_copy__inherit()
1335 call_map_fn__memobject_anywhere__inherit(map_fn_t fn, MAP_T map, mach_vm_address_t start, mach_vm_s… in call_map_fn__memobject_anywhere__inherit() argument
1337 …return help_call_map_fn__memobject__inherit(fn, map, VM_FLAGS_ANYWHERE, false, start, size, inheri… in call_map_fn__memobject_anywhere__inherit()
1341 call_map_fn__allocate__flags(map_fn_t fn, MAP_T map, mach_vm_address_t * start, mach_vm_size_t size… in call_map_fn__allocate__flags() argument
1343 kern_return_t kr = fn(map, start, size, 0, flags, in call_map_fn__allocate__flags()
1345 deallocate_if_not_fixed_overwrite(kr, map, *start, size, flags); in call_map_fn__allocate__flags()
1350 call_map_fn__allocate_copy__flags(map_fn_t fn, MAP_T map, mach_vm_address_t * start, mach_vm_size_t… in call_map_fn__allocate_copy__flags() argument
1352 kern_return_t kr = fn(map, start, size, 0, flags, in call_map_fn__allocate_copy__flags()
1354 deallocate_if_not_fixed_overwrite(kr, map, *start, size, flags); in call_map_fn__allocate_copy__flags()
1359 call_map_fn__memobject__flags(map_fn_t fn, MAP_T map, mach_vm_address_t * start, mach_vm_size_t siz… in call_map_fn__memobject__flags() argument
1362 kern_return_t kr = fn(map, start, size, 0, flags, in call_map_fn__memobject__flags()
1364 deallocate_if_not_fixed_overwrite(kr, map, *start, size, flags); in call_map_fn__memobject__flags()
1370 call_map_fn__memobject_copy__flags(map_fn_t fn, MAP_T map, mach_vm_address_t * start, mach_vm_size_… in call_map_fn__memobject_copy__flags() argument
1373 kern_return_t kr = fn(map, start, size, 0, flags, in call_map_fn__memobject_copy__flags()
1375 deallocate_if_not_fixed_overwrite(kr, map, *start, size, flags); in call_map_fn__memobject_copy__flags()
1641 call_ ## map_fn ## __ ## instance (MAP_T map, mach_vm_address_t start, mach_vm_size_t size) \
1643 return call_map_fn__ ## instance(map_fn, map, start, size); \
1655 …__ ## instance ## __start_size_offset_object(MAP_T map, mach_vm_address_t start, mach_vm_size_t si…
1657 …return call_map_fn__ ## instance ## __start_size_offset_object(map_fn, map, start, size, offset, o…
1662 …call_ ## map_fn ## __ ## instance ## __inherit(MAP_T map, mach_vm_address_t start, mach_vm_size_t …
1664 …return call_map_fn__ ## instance ## __inherit(map_fn, map, start, size, inherit); …
1669 …call_ ## map_fn ## __ ## instance ## __flags(MAP_T map, mach_vm_address_t * start, mach_vm_size_t …
1671 …return call_map_fn__ ## instance ## __flags(map_fn, map, start, size, flags); …