Home
last modified time | relevance | path

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

/qemu/bsd-user/
H A Dmmap.c67 int prot1, ret; in target_mprotect() local
89 prot1 = prot; in target_mprotect()
106 prot1 = prot; in target_mprotect()
158 int prot1, prot_new; in mmap_frag() local
164 prot1 = 0; in mmap_frag()
170 if (prot1 == 0) { in mmap_frag()
176 prot1 = prot; in mmap_frag()
178 prot1 &= PAGE_RWX; in mmap_frag()
180 prot_new = prot | prot1; in mmap_frag()
189 if (!(prot1 & PROT_WRITE)) in mmap_frag()
[all …]
/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()
221 if (prot1 != target_prot) { in target_mprotect()
224 prots[nranges] = prot1; in target_mprotect()
232 prot1 = target_prot; in target_mprotect()
237 if (prot1 != target_prot) { in target_mprotect()
[all …]
/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()