Home
last modified time | relevance | path

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

/openbmc/qemu/bsd-user/
H A Dmmap.c67 int prot1, ret; in target_mprotect() local
89 prot1 = prot; in target_mprotect()
91 prot1 |= page_get_flags(addr); in target_mprotect()
95 prot1 |= page_get_flags(addr); in target_mprotect()
100 qemu_host_page_size, prot1 & PAGE_RWX); in target_mprotect()
106 prot1 = prot; in target_mprotect()
108 prot1 |= page_get_flags(addr); in target_mprotect()
111 qemu_host_page_size, prot1 & PAGE_RWX); in target_mprotect()
192 int prot1, prot_new; in mmap_frag() local
198 prot1 = 0; in mmap_frag()
[all …]
/openbmc/qemu/linux-user/
H A Dmmap.c174 int prot1, ret, page_flags, nranges; in target_mprotect() local
202 prot1 = target_prot; in target_mprotect()
204 prot1 |= page_get_flags(a); in target_mprotect()
207 prot1 |= page_get_flags(a + 1); in target_mprotect()
211 prots[nranges] = prot1; in target_mprotect()
216 prot1 = target_prot; in target_mprotect()
218 prot1 |= page_get_flags(a); in target_mprotect()
221 if (prot1 != target_prot) { in target_mprotect()
224 prots[nranges] = prot1; in target_mprotect()
232 prot1 = target_prot; in target_mprotect()
[all …]
/openbmc/qemu/target/i386/
H A Dmonitor.c254 int prot1; in mem_print() local
255 prot1 = *plast_prot; in mem_print()
256 if (prot != prot1) { in mem_print()
263 prot1 & PG_USER_MASK ? 'u' : '-', in mem_print()
265 prot1 & PG_RW_MASK ? 'w' : '-'); in mem_print()