Home
last modified time | relevance | path

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

/qemu/util/
H A Dosdep.c67 static int qemu_mprotect__osdep(void *addr, size_t size, int prot) in qemu_mprotect__osdep() function
93 return qemu_mprotect__osdep(addr, size, PAGE_READWRITE); in qemu_mprotect_rw()
95 return qemu_mprotect__osdep(addr, size, PROT_READ | PROT_WRITE); in qemu_mprotect_rw()
102 return qemu_mprotect__osdep(addr, size, PAGE_EXECUTE_READWRITE); in qemu_mprotect_rwx()
104 return qemu_mprotect__osdep(addr, size, PROT_READ | PROT_WRITE | PROT_EXEC); in qemu_mprotect_rwx()
111 return qemu_mprotect__osdep(addr, size, PAGE_NOACCESS); in qemu_mprotect_none()
113 return qemu_mprotect__osdep(addr, size, PROT_NONE); in qemu_mprotect_none()