Home
last modified time | relevance | path

Searched refs:file_object (Results 1 – 3 of 3) sorted by relevance

/xnu-12377.61.12/osfmk/vm/
H A Dvm_dyld_pager.c1636 vm_object_t file_object = VM_OBJECT_NULL; in vm_map_with_linking() local
1651 file_object = memory_object_control_to_vm_object(file_control); in vm_map_with_linking()
1652 if (file_object == VM_OBJECT_NULL || file_object->internal) { in vm_map_with_linking()
1655 file_object = VM_OBJECT_NULL; in vm_map_with_linking()
1688 if (shadow_object->shadow == file_object && in vm_map_with_linking()
1713 if (shadow_object != file_object) { in vm_map_with_linking()
1745 backing_object != file_object->vo_copy || in vm_map_with_linking()
H A Dvm_shared_region.c1581 vm_object_t file_object; in vm_shared_region_map_file_setup() local
1788 file_object = memory_object_control_to_vm_object(file_control); in vm_shared_region_map_file_setup()
1789 assert(file_object); in vm_shared_region_map_file_setup()
1791 if (!file_object->object_is_shared_cache) { in vm_shared_region_map_file_setup()
1792 vm_object_lock(file_object); in vm_shared_region_map_file_setup()
1793 file_object->object_is_shared_cache = true; in vm_shared_region_map_file_setup()
1794 vm_object_unlock(file_object); in vm_shared_region_map_file_setup()
1846 __IGNORE_WCASTALIGN(map_port = (ipc_port_t) file_object->pager); in vm_shared_region_map_file_setup()
H A Dvm_fault.c2951 vm_object_t file_object, shadow; in vm_fault_cs_handle_violation() local
2973 file_object = object; in vm_fault_cs_handle_violation()
2975 for (shadow = file_object->shadow, in vm_fault_cs_handle_violation()
2978 shadow = file_object->shadow, in vm_fault_cs_handle_violation()
2981 if (file_object != object) { in vm_fault_cs_handle_violation()
2982 vm_object_unlock(file_object); in vm_fault_cs_handle_violation()
2984 file_offset += file_object->vo_shadow_offset; in vm_fault_cs_handle_violation()
2985 file_object = shadow; in vm_fault_cs_handle_violation()
3000 if (file_object->pager != NULL) { in vm_fault_cs_handle_violation()
3008 if (vnode_pager_get_object_name(file_object->pager, in vm_fault_cs_handle_violation()
[all …]