Home
last modified time | relevance | path

Searched refs:vm_map_entry (Results 1 – 11 of 11) sorted by relevance

/xnu-8020.140.41/osfmk/vm/
H A Dvm_map_store.h45 struct vm_map_entry;
76 struct vm_map_entry* UHEE_entry; \
99 struct vm_map_entry* tmp_entry; \
152 boolean_t vm_map_store_lookup_entry( struct _vm_map*, vm_map_offset_t, struct vm_map_entry**);
153 void vm_map_store_update( struct _vm_map*, struct vm_map_entry*, int);
154 void _vm_map_store_entry_link( struct vm_map_header *, struct vm_map_entry*, struct vm_map_entry
155 void vm_map_store_entry_link( struct _vm_map*, struct vm_map_entry*, struct vm_map_entry*, vm_ma…
156 void _vm_map_store_entry_unlink( struct vm_map_header *, struct vm_map_entry*);
157 void vm_map_store_entry_unlink( struct _vm_map*, struct vm_map_entry*);
158 void vm_map_store_update_first_free( struct _vm_map*, struct vm_map_entry*, boolean_t new_entry_…
[all …]
H A Dvm_map_store_rb.h38 void vm_map_store_walk_rb( struct _vm_map*, struct vm_map_entry**, struct vm_map_entry**);
39 boolean_t vm_map_store_lookup_entry_rb( struct _vm_map*, vm_map_offset_t, struct vm_map_entry**);
40 … vm_map_store_entry_link_rb( struct vm_map_header*, struct vm_map_entry*, struct vm_map_entry*);
41 void vm_map_store_entry_unlink_rb( struct vm_map_header*, struct vm_map_entry*);
42 void vm_map_store_copy_reset_rb( struct vm_map_copy*, struct vm_map_entry*, int);
43 void update_first_free_rb(struct _vm_map*, struct vm_map_entry*, boolean_t new_entry_creation);
H A Dvm_map_store_ll.h37 boolean_t vm_map_store_lookup_entry_ll( struct _vm_map*, vm_map_offset_t, struct vm_map_entry**);
38 … vm_map_store_entry_link_ll( struct vm_map_header*, struct vm_map_entry*, struct vm_map_entry*);
39 void vm_map_store_entry_unlink_ll( struct vm_map_header*, struct vm_map_entry*);
40 void update_first_free_ll(struct _vm_map*, struct vm_map_entry*);
41 void vm_map_store_copy_reset_ll( struct vm_map_copy*, struct vm_map_entry*, int);
H A Dvm_map_store.c270 static struct vm_map_entry *
384 static struct vm_map_entry *
515 struct vm_map_entry *
H A Dvm_map_store_rb.c34 #define VME_FOR_STORE(ptr) __container_of(ptr, struct vm_map_entry, store)
299 struct vm_map_entry old_hole_entry; in update_holes_on_entry_deletion()
483 struct vm_map_entry old_hole_entry; in update_holes_on_entry_creation()
H A Dvm_map.h139 typedef struct vm_map_entry *vm_map_entry_t;
206 struct vm_map_entry *prev; /* previous entry */
207 struct vm_map_entry *next; /* next entry */
260 struct vm_map_entry { struct
624 #define CAST_TO_VM_MAP_ENTRY(x) ((struct vm_map_entry *)(uintptr_t)(x))
H A Dvm_kern.h98 struct vm_map_entry;
510 struct vm_map_entry *entry,
H A Dvm_protos.h451 struct vm_map_entry;
452 extern struct vm_object *find_vnode_object(struct vm_map_entry *entry);
H A Dvm_shared_region.c1070 struct vm_map_entry tmp_entry_store = {0}; in vm_shared_region_auth_remap()
2274 struct vm_map_entry tmp_entry_store; in vm_shared_region_slide_mapping()
H A Dvm_map.c839 struct vm_map_entry tmp_entry; in vm_map_apple_protected()
1119 sizeof(struct vm_map_entry), VM_MAP_ENTRY_ZFLAGS, in vm_map_init()
1126 sizeof(struct vm_map_entry), VM_MAP_ENTRY_RESERVED_ZFLAGS); in vm_map_init()
1236 sizeof(struct vm_map_entry), VM_MAP_ENTRY_ZFLAGS, in vm_map_steal_memory()
1703 return __container_of(list->vmz_tail, struct vm_map_entry, vme_next); in vm_map_zap_last_entry()
6340 struct vm_map_entry *first_entry, tmp_entry; in vm_map_wire_nested()
7095 struct vm_map_entry *first_entry, tmp_entry; in vm_map_unwire_nested()
8072 struct vm_map_entry tmp_entry; in vm_map_delete()
12124 tmp_entry = (struct vm_map_entry *)tmp_entry->vme_next; in vm_map_copyin_internal()
19681 new_hole->next = (struct vm_map_entry *)map->holes_list; in vm_map_set_max_addr()
[all …]
H A Dvm_fault.c6360 struct vm_map_entry tmp_entry = *entry; in vm_fault_wire()