Lines Matching refs:linked_object
377 u_char * linked_object = NULL; in kxld_link_file() local
406 linked_object = allocate_kext(context, callback_data, in kxld_link_file()
408 require_action(linked_object, finish, rval = KERN_RESOURCE_SHORTAGE); in kxld_link_file()
420 (void *) linked_object, in kxld_link_file()
423 *linked_object_out = linked_object; in kxld_link_file()
604 u_char * linked_object = NULL; in allocate_split_kext() local
616 linked_object = kxld_page_alloc_untracked(link_info->linkedKextSize); in allocate_split_kext()
617 require(linked_object, finish); in allocate_split_kext()
618 link_info->linkedKext = linked_object; in allocate_split_kext()
638 u_char * linked_object = NULL; in allocate_kext() local
656 linked_object = (u_char *) (u_long) vmaddr; in allocate_kext()
657 bzero(linked_object, vmsize); in allocate_kext()
659 linked_object = kxld_page_alloc_untracked(vmsize); in allocate_kext()
660 require(linked_object, finish); in allocate_kext()
662 *linked_object_alloc_out = linked_object; in allocate_kext()
671 return linked_object; in allocate_kext()