Home
last modified time | relevance | path

Searched refs:vm_object_t (Results 1 – 25 of 54) sorted by relevance

123

/xnu-11417.101.15/osfmk/vm/
H A Dvm_object_internal.h49 extern void vm_object_access_tracking(vm_object_t object,
89 vm_object_t object, in VM_OBJECT_SET_PAGER_CREATED()
97 vm_object_t object, in VM_OBJECT_SET_PAGER_INITIALIZED()
105 vm_object_t object, in VM_OBJECT_SET_PAGER_READY()
113 vm_object_t object, in VM_OBJECT_SET_PAGER_TRUSTED()
121 vm_object_t object, in VM_OBJECT_SET_CAN_PERSIST()
129 vm_object_t object, in VM_OBJECT_SET_INTERNAL()
137 vm_object_t object, in VM_OBJECT_SET_PRIVATE()
145 vm_object_t object, in VM_OBJECT_SET_PAGEOUT()
153 vm_object_t object, in VM_OBJECT_SET_ALIVE()
[all …]
H A Dvm_object_xnu.h407 extern const vm_object_t kernel_object_default; /* the default kernel object */
409 extern const vm_object_t compressor_object; /* the single compressor object, allocates pages f…
412 extern const vm_object_t retired_pages_object; /* pages retired due to ECC, should never be used …
418 extern const vm_object_t exclaves_object; /* holds VM pages owned by exclaves */
445 vm_object_t, wired_objq); \
453 vm_object_t, wired_objq); \
533 extern vm_object_t vm_pageout_scan_wants_object;
535 extern void vm_object_lock(vm_object_t);
536 extern bool vm_object_lock_check_contended(vm_object_t);
537 extern boolean_t vm_object_lock_try(vm_object_t);
[all …]
H A Dvm_purgeable_internal.h106 void vm_purgeable_object_add(vm_object_t object, purgeable_q_t queue, int group);
109 purgeable_q_t vm_purgeable_object_remove(vm_object_t object);
111 void vm_purgeable_nonvolatile_enqueue(vm_object_t object, task_t task);
112 void vm_purgeable_nonvolatile_dequeue(vm_object_t object);
113 void vm_purgeable_accounting(vm_object_t object,
115 void vm_object_owner_compressed_update(vm_object_t object,
H A Dmemory_object_internal.h46 vm_object_t object);
51 vm_object_t object);
54 vm_object_t memory_object_control_to_vm_object(
57 vm_object_t memory_object_to_vm_object(
H A Dvm_purgeable.c664 static vm_object_t
670 vm_object_t object, best_object; in vm_purgeable_object_find_and_lock()
695 for (object = (vm_object_t) queue_first(&queue->objq[group]); in vm_purgeable_object_find_and_lock()
697 object = (vm_object_t) queue_next(&object->objq), in vm_purgeable_object_find_and_lock()
771 vm_object_t, objq); in vm_purgeable_object_find_and_lock()
785 vm_object_t, objq); in vm_purgeable_object_find_and_lock()
804 vm_object_t object; in vm_purgeable_object_purge_all()
883 vm_object_t object = 0; in vm_purgeable_object_purge_one()
1014 vm_purgeable_object_add(vm_object_t object, purgeable_q_t queue, int group) in vm_purgeable_object_add()
1022 vm_object_t, objq); in vm_purgeable_object_add()
[all …]
H A Dvm_object.c219 vm_object_t object);
222 vm_object_t object,
223 vm_object_t backing_object);
226 vm_object_t object,
227 vm_object_t backing_object);
239 const vm_object_t kernel_object_default = &kernel_object_store;
242 const vm_object_t compressor_object = &compressor_object_store;
250 const vm_object_t retired_pages_object = &retired_pages_object_store;
254 const vm_object_t exclaves_object = &exclaves_object_store;
423 static void vm_object_cache_remove_locked(vm_object_t);
[all …]
H A Dmemory_object.c314 vm_object_t object; in memory_object_lock_request()
374 vm_object_t object; in memory_object_destroy()
410 vm_object_t object, in vm_object_sync()
495 vm_object_t object, in vm_object_update_extent()
670 vm_object_t object, in vm_object_update()
679 vm_object_t copy_object = VM_OBJECT_NULL; in vm_object_update()
1035 vm_object_t object, in vm_object_set_attributes_common()
1103 vm_object_t object; in memory_object_change_attributes()
1240 vm_object_t object; in memory_object_iopl_request()
1351 vm_object_t object; in memory_object_upl_request()
[all …]
H A Dvm_page_internal.h321 vm_object_t object,
325 vm_object_t object,
551 vm_object_t new_object,
556 vm_object_t object,
561 vm_object_t object,
568 vm_object_t object,
579 vm_object_t object,
645 vm_object_t object,
651 vm_object_t object,
655 vm_object_t object,
[all …]
H A Dvm_fault_internal.h46 vm_object_t first_object, /* Object to begin search */
65 vm_object_t object,
86 vm_object_t src_object,
89 vm_object_t dst_object,
H A Dvm_pageout_internal.h62 vm_object_t object,
68 vm_object_t object,
113 vm_object_t object,
121 vm_object_t object,
H A Dvm_protos_internal.h47 vm_object_t backing_object,
57 vm_object_t backing_object,
68 vm_object_t backing_object,
211 extern vm_object_t vm_named_entry_to_vm_object(
215 vm_object_t object,
H A Dvm_fault.c245 extern void vm_fault_classify(vm_object_t object,
398 vm_object_t object, in vm_fault_cleanup()
441 vm_object_t object, in vm_fault_is_sequential()
571 vm_object_t object, in vm_fault_deactivate_behind()
817 vm_fault_check(vm_object_t object, vm_page_t m, vm_page_t first_m, wait_interrupt_t interruptible_s… in vm_fault_check()
917 vm_object_t object; in vm_fault_zero_page()
1054 vm_object_t first_object, /* Object to begin search */ in vm_fault_page()
1073 vm_object_t object; in vm_fault_page()
1076 vm_object_t next_object; in vm_fault_page()
1077 vm_object_t copy_object; in vm_fault_page()
[all …]
H A Ddevice_vm.c148 vm_object_t object; in device_pager_setup()
188 vm_object_t vm_object; in device_pager_populate_object()
197 vm_object = (vm_object_t)memory_object_control_to_vm_object( in device_pager_populate_object()
258 vm_object_t vm_object; in device_pager_init()
274 vm_object = (vm_object_t)memory_object_control_to_vm_object(control); in device_pager_init()
H A Dvm_map_internal.h124 vm_object_t object, /* must be locked */
336 vm_object_t object, in VME_OBJECT_SET()
404 vm_object_t object; in VME_OBJECT_SHADOW()
517 vm_object_t *object, /* OUT */
546 vm_object_t object,
562 vm_object_t object,
H A Dvm_memory_entry.c165 vm_object_t object; in mach_make_memory_entry_mem_only()
309 vm_object_t object; in mach_make_memory_entry_named_create()
625 vm_object_t object; in mach_make_memory_entry_share()
691 vm_object_t tmp_object; in mach_make_memory_entry_share()
1013 vm_object_t object; in mach_make_memory_entry_from_parent_entry()
1304 vm_object_t object; in mach_memory_object_memory_entry_64()
1397 vm_object_t object; in memory_entry_purgeable_control_internal()
1458 vm_object_t object; in memory_entry_access_tracking_internal()
1529 vm_object_t object; in mach_memory_entry_ownership()
1778 vm_object_t object; in mach_memory_entry_get_page_counts()
[all …]
H A Dvm_shared_region_pager.c121 vm_object_t *backing_object,
320 vm_object_t srp_backing_object; /* VM object for shared cache */
504 vm_object_t src_top_object, src_page_object, dst_object; in shared_region_pager_data_request()
1116 vm_object_t *backing_object, in shared_region_pager_backing_object()
1154 vm_object_t backing_object, in shared_region_pager_create()
1165 vm_object_t object; in shared_region_pager_create()
1250 vm_object_t backing_object, in shared_region_pager_setup()
1286 vm_object_t backing_object, in shared_region_pager_match()
1429 vm_object_t object; in shared_region_pager_purge()
H A Dvm_apple_protect.c114 vm_object_t *backing_object,
157 vm_object_t backing_object; /* VM obj w/ encrypted data */
193 vm_object_t backing_object,
338 vm_object_t src_top_object, src_page_object, dst_object; in apple_protect_pager_data_request()
987 vm_object_t *backing_object, in apple_protect_pager_backing_object()
1020 vm_object_t backing_object, in apple_protect_pager_create()
1194 vm_object_t backing_object, in apple_protect_pager_setup()
1499 vm_object_t object; in apple_protect_pager_purge()
H A Dvm_phantom_cache.c176 vm_object_t object; in vm_phantom_cache_add_ghost()
284 vm_object_t object; in vm_phantom_cache_lookup_ghost()
327 vm_object_t object; in vm_phantom_cache_update()
H A Dvm_pageout.c341 vm_object_t vm_pageout_scan_wants_object = VM_OBJECT_NULL;
386 vm_object_t object) in vm_pageout_object_terminate()
388 vm_object_t shadow_object; in vm_pageout_object_terminate()
555 vm_object_t new_object, in vm_pageclean_setup()
610 vm_object_t object; in vm_pageout_initialize_page()
717 vm_object_t object = VM_PAGE_OBJECT(m);
774 vm_object_t object = VM_PAGE_OBJECT(m);
796 vm_object_t m_object;
1137 vm_object_t t_object = NULL;
1138 vm_object_t l_object = NULL;
[all …]
H A Dvm_memory_entry.h61 extern vm_object_t vm_convert_port_to_copy_object(
H A Dvm_dyld_pager.c115 vm_object_t *backing_object,
152 vm_object_t dyld_backing_object; /* VM object for shared cache */
867 vm_object_t src_top_object = VM_OBJECT_NULL; in dyld_pager_data_request()
868 vm_object_t src_page_object = VM_OBJECT_NULL; in dyld_pager_data_request()
869 vm_object_t dst_object; in dyld_pager_data_request()
1343 vm_object_t *backing_object, in dyld_pager_backing_object()
1382 vm_object_t backing_object, in dyld_pager_create()
1466 vm_object_t backing_object, in dyld_pager_setup()
1511 vm_object_t object = VM_OBJECT_NULL; in vm_map_with_linking()
1586 vm_object_t object; in dyld_pager_purge()
H A Dvm_resident.c2551 vm_object_t object, in vm_page_insert()
2560 vm_object_t object, in vm_page_insert_wired()
2570 vm_object_t object, in vm_page_insert_internal()
2832 vm_object_t object, in vm_page_replace()
2940 vm_object_t m_object; in vm_page_remove()
3163 vm_object_t object, in kdp_vm_page_lookup()
3189 vm_object_t object, in vm_page_lookup()
3366 vm_object_t new_object, in vm_page_rename()
3371 vm_object_t m_object; in vm_page_rename()
3759 vm_object_t m_object; in vm_page_remove_from_specialq()
[all …]
H A Dvm_compressor_pager_internal.h93 vm_object_t object);
/xnu-11417.101.15/osfmk/mach/
H A Dvm_types.h93 typedef struct vm_object *vm_object_t; typedef
101 #define VM_OBJECT_NULL ((vm_object_t) NULL)
/xnu-11417.101.15/bsd/dev/dtrace/scripts/
H A Dvm_object_ownership.d25 pid, execname, arg0, arg7, ((vm_object_t)arg0)->purgable,

123