Lines Matching full:section

199                                          MemoryRegionSection *section)  in guest_phys_block_add_section()  argument
201 const hwaddr target_start = section->offset_within_address_space; in guest_phys_block_add_section()
202 const hwaddr target_end = target_start + int128_get64(section->size); in guest_phys_block_add_section()
203 uint8_t *host_addr = memory_region_get_ram_ptr(section->mr) + in guest_phys_block_add_section()
204 section->offset_within_region; in guest_phys_block_add_section()
220 predecessor->mr != section->mr) { in guest_phys_block_add_section()
232 block->mr = section->mr; in guest_phys_block_add_section()
233 memory_region_ref(section->mr); in guest_phys_block_add_section()
251 static int guest_phys_ram_populate_cb(MemoryRegionSection *section, in guest_phys_ram_populate_cb() argument
256 guest_phys_block_add_section(g, section); in guest_phys_ram_populate_cb()
261 MemoryRegionSection *section) in guest_phys_blocks_region_add() argument
266 if (!memory_region_is_ram(section->mr) || in guest_phys_blocks_region_add()
267 memory_region_is_ram_device(section->mr) || in guest_phys_blocks_region_add()
268 memory_region_is_nonvolatile(section->mr)) { in guest_phys_blocks_region_add()
273 if (memory_region_has_ram_discard_manager(section->mr)) { in guest_phys_blocks_region_add()
276 rdm = memory_region_get_ram_discard_manager(section->mr); in guest_phys_blocks_region_add()
277 ram_discard_manager_replay_populated(rdm, section, in guest_phys_blocks_region_add()
282 guest_phys_block_add_section(g, section); in guest_phys_blocks_region_add()