Searched refs:vm_map_entry (Results 1 - 7 of 7) sorted by relevance

/xnu-2422.115.4/osfmk/vm/
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_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_insert_ll( struct _vm_map*, struct vm_map_entry*, struct vm_map_copy*);
42 void vm_map_store_copy_reset_ll( struct vm_map_copy*, struct vm_map_entry*, int);
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 void 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_insert_rb( struct _vm_map*, struct vm_map_entry*, struct vm_map_copy*);
43 void vm_map_store_copy_reset_rb( struct vm_map_copy*, struct vm_map_entry*, int);
44 void update_first_free_rb(struct _vm_map*, struct vm_map_entry*);
H A Dvm_map_store.h44 struct vm_map_entry;
65 struct vm_map_entry* UHEE_entry; \
76 struct vm_map_entry* tmp_entry; \
121 boolean_t vm_map_store_lookup_entry( struct _vm_map*, vm_map_offset_t, struct vm_map_entry**);
122 void vm_map_store_update( struct _vm_map*, struct vm_map_entry*, int);
123 void _vm_map_store_entry_link( struct vm_map_header *, struct vm_map_entry*, struct vm_map_entry*);
124 void vm_map_store_entry_link( struct _vm_map*, struct vm_map_entry*, struct vm_map_entry*);
125 void _vm_map_store_entry_unlink( struct vm_map_header *, struct vm_map_entry*);
[all...]
H A Dvm_protos.h299 struct vm_map_entry;
300 extern struct vm_object *find_vnode_object(struct vm_map_entry *entry);
H A Dvm_map.h129 typedef struct vm_map_entry *vm_map_entry_t;
203 struct vm_map_entry *prev; /* previous entry */
204 struct vm_map_entry *next; /* next entry */
209 struct vm_map_entry { struct
355 #define vm_map_to_entry(map) ((struct vm_map_entry *) &(map)->hdr.links)
450 ((struct vm_map_entry *) &(copy)->cpy_hdr.links)
H A Dvm_map.c298 * Macros to copy a vm_map_entry. We must be careful to correctly
430 static zone_t vm_map_entry_zone; /* zone for vm_map_entry structures */
634 vm_map_entry_zone = zinit((vm_map_size_t) sizeof(struct vm_map_entry),
641 vm_map_entry_reserved_zone = zinit((vm_map_size_t) sizeof(struct vm_map_entry),
710 zone_prio_refill_configure(vm_map_entry_reserved_zone, (6*PAGE_SIZE)/sizeof(struct vm_map_entry));
4112 struct vm_map_entry *first_entry, tmp_entry;
4611 struct vm_map_entry *first_entry, tmp_entry;
5110 struct vm_map_entry *first_entry, tmp_entry;
8696 tmp_entry = (struct vm_map_entry *)tmp_entry->vme_next;
11279 * within the vm_map_entry w
[all...]
H A Dvm_fault.c4663 struct vm_map_entry tmp_entry = *entry;

Completed in 43 milliseconds