Lines Matching refs:copy_entry
817 vm_map_entry_t copy_entry; in mach_make_memory_entry_share() local
821 copy_entry = vm_map_copy_first_entry(copy); in mach_make_memory_entry_share()
822 map_size = copy_entry->vme_end - copy_entry->vme_start; in mach_make_memory_entry_share()
826 VME_OBJECT(copy_entry) == VME_OBJECT(parent_copy_entry) && in mach_make_memory_entry_share()
827 VME_OFFSET(copy_entry) == VME_OFFSET(parent_copy_entry) && in mach_make_memory_entry_share()
848 object = VME_OBJECT(copy_entry); in mach_make_memory_entry_share()
870 vm_map_entry_t copy_entry; in mach_make_memory_entry_share() local
877 for (copy_entry = vm_map_copy_first_entry(copy); in mach_make_memory_entry_share()
878 copy_entry != vm_map_copy_to_entry(copy); in mach_make_memory_entry_share()
879 copy_entry = copy_entry->vme_next) { in mach_make_memory_entry_share()
880 if (copy_entry->is_sub_map) { in mach_make_memory_entry_share()
885 if (VM_OBJECT_OWNER(VME_OBJECT(copy_entry)) == TASK_NULL) { in mach_make_memory_entry_share()
886 object = VME_OBJECT(copy_entry); in mach_make_memory_entry_share()