Home
last modified time | relevance | path

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

/xnu-8019.80.24/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; \
153 boolean_t vm_map_store_lookup_entry( struct _vm_map*, vm_map_offset_t, struct vm_map_entry**);
154 void vm_map_store_update( struct _vm_map*, struct vm_map_entry*, int);
155 void vm_map_store_find_last_free( struct _vm_map*, struct vm_map_entry**);
156 void _vm_map_store_entry_link( struct vm_map_header *, struct vm_map_entry*, struct vm_map_entry
157 void vm_map_store_entry_link( struct _vm_map*, struct vm_map_entry*, struct vm_map_entry*, vm_ma…
158 void _vm_map_store_entry_unlink( struct vm_map_header *, struct vm_map_entry*);
159 void vm_map_store_entry_unlink( struct _vm_map*, struct vm_map_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 void vm_map_store_find_last_free_ll( struct _vm_map*, struct vm_map_entry**);
39 … vm_map_store_entry_link_ll( struct vm_map_header*, struct vm_map_entry*, struct vm_map_entry*);
40 void vm_map_store_entry_unlink_ll( struct vm_map_header*, struct vm_map_entry*);
41 void update_first_free_ll(struct _vm_map*, struct vm_map_entry*);
42 void vm_map_store_copy_reset_ll( struct vm_map_copy*, struct vm_map_entry*, int);
H A Dvm_map.h139 typedef struct vm_map_entry *vm_map_entry_t;
221 struct vm_map_entry *prev; /* previous entry */
222 struct vm_map_entry *next; /* next entry */
268 struct vm_map_entry { struct
544 #define CAST_TO_VM_MAP_ENTRY(x) ((struct vm_map_entry *)(uintptr_t)(x))
H A Dvm_map_store_rb.c303 struct vm_map_entry old_hole_entry; in update_holes_on_entry_deletion()
487 struct vm_map_entry old_hole_entry; in update_holes_on_entry_creation()
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.c1084 struct vm_map_entry tmp_entry_store = {0}; in vm_shared_region_auth_remap()
2284 struct vm_map_entry tmp_entry_store; in vm_shared_region_slide_mapping()
H A Dvm_map.c801 struct vm_map_entry tmp_entry; in vm_map_apple_protected()
1081 sizeof(struct vm_map_entry), VM_MAP_ENTRY_ZFLAGS, in vm_map_init()
1088 sizeof(struct vm_map_entry), VM_MAP_ENTRY_RESERVED_ZFLAGS); in vm_map_init()
1222 sizeof(struct vm_map_entry), VM_MAP_ENTRY_ZFLAGS, in vm_map_steal_memory()
6441 struct vm_map_entry *first_entry, tmp_entry; in vm_map_wire_nested()
7196 struct vm_map_entry *first_entry, tmp_entry; in vm_map_unwire_nested()
7814 struct vm_map_entry *first_entry, tmp_entry; in vm_map_delete()
12318 tmp_entry = (struct vm_map_entry *)tmp_entry->vme_next; in vm_map_copyin_internal()
20086 new_hole->next = (struct vm_map_entry *)map->holes_list; in vm_map_set_max_addr()
20087 map->holes_list->prev->links.next = (struct vm_map_entry *)new_hole; in vm_map_set_max_addr()
[all …]
H A Dvm_fault.c6316 struct vm_map_entry tmp_entry = *entry; in vm_fault_wire()