Home
last modified time | relevance | path

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

/external/qemu/
Dexec.c2286 target_ulong host_start, host_end, addr; in page_unprotect() local
2293 host_start = address & qemu_host_page_mask; in page_unprotect()
2294 page_index = host_start >> TARGET_PAGE_BITS; in page_unprotect()
2300 host_end = host_start + qemu_host_page_size; in page_unprotect()
2303 for(addr = host_start;addr < host_end; addr += TARGET_PAGE_SIZE) { in page_unprotect()
2310 pindex = (address - host_start) >> TARGET_PAGE_BITS; in page_unprotect()
2312 mprotect((void *)g2h(host_start), qemu_host_page_size, in page_unprotect()