Home
last modified time | relevance | path

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

/xnu-12377.1.9/osfmk/vm/
H A Dvm_dyld_pager.c1618 vm_object_t file_object = VM_OBJECT_NULL; in vm_map_with_linking() local
1632 file_object = memory_object_control_to_vm_object(file_control); in vm_map_with_linking()
1633 if (file_object == VM_OBJECT_NULL || file_object->internal) { in vm_map_with_linking()
1636 file_object = VM_OBJECT_NULL; in vm_map_with_linking()
1661 if (shadow_object->shadow == file_object && in vm_map_with_linking()
1681 if (shadow_object != file_object) { in vm_map_with_linking()
1697 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.c2931 vm_object_t file_object, shadow; in vm_fault_cs_handle_violation() local
2953 file_object = object; in vm_fault_cs_handle_violation()
2955 for (shadow = file_object->shadow, in vm_fault_cs_handle_violation()
2958 shadow = file_object->shadow, in vm_fault_cs_handle_violation()
2961 if (file_object != object) { in vm_fault_cs_handle_violation()
2962 vm_object_unlock(file_object); in vm_fault_cs_handle_violation()
2964 file_offset += file_object->vo_shadow_offset; in vm_fault_cs_handle_violation()
2965 file_object = shadow; in vm_fault_cs_handle_violation()
2980 if (file_object->pager != NULL) { in vm_fault_cs_handle_violation()
2988 if (vnode_pager_get_object_name(file_object->pager, in vm_fault_cs_handle_violation()
[all …]