Searched refs:holes_list (Results 1 – 4 of 4) sorted by relevance
180 if (hole_entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_delete_hole()181 if (hole_entry->vme_next == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_delete_hole()182 map->holes_list = NULL; in vm_map_delete_hole()187 l_next = (vm_map_entry_t) map->holes_list->next; in vm_map_delete_hole()188 l_prev = (vm_map_entry_t) map->holes_list->prev; in vm_map_delete_hole()189 map->holes_list = (struct vm_map_links*) l_next; in vm_map_delete_hole()222 if (map->holes_list == NULL) { in check_map_sanity()226 hole_entry = CAST_DOWN(vm_map_entry_t, map->holes_list); in check_map_sanity()236 if (hole_entry == CAST_DOWN(vm_map_entry_t, map->holes_list)) { in check_map_sanity()264 if (hole_entry == CAST_DOWN(vm_map_entry_t, map->holes_list)) { in check_map_sanity()[all …]
304 entry = CAST_TO_VM_MAP_ENTRY(map->holes_list); in vm_map_store_find_space_backwards()312 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_backwards()361 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_backwards()419 entry = CAST_TO_VM_MAP_ENTRY(map->holes_list); in vm_map_store_find_space_forward()427 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_forward()492 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_forward()
1278 head_entry = hole_entry = CAST_TO_VM_MAP_ENTRY(map->holes_list); in vm_map_disable_hole_optimization()1294 map->holes_list = NULL; in vm_map_disable_hole_optimization()1499 result->holes_list = result->hole_hint = hole_entry; in vm_map_create_options()1533 struct vm_map_links *hole = map->holes_list; in vm_map_adjust_offsets()20279 if (map->holes_list->prev->vme_end == old_max_offset) { in vm_map_set_max_addr()20283 map->holes_list->prev->vme_end = map->max_offset; in vm_map_set_max_addr()20294 new_hole->prev = map->holes_list->prev; in vm_map_set_max_addr()20295 new_hole->next = (struct vm_map_entry *)map->holes_list; in vm_map_set_max_addr()20296 map->holes_list->prev->links.next = (struct vm_map_entry *)new_hole; in vm_map_set_max_addr()20297 map->holes_list->prev = (struct vm_map_entry *)new_hole; in vm_map_set_max_addr()[all …]
613 #define holes_list f_s._holes macro