Lines Matching refs:prot

38 int no_mmu_map_address (CPUState *env, target_phys_addr_t *physical, int *prot,
42 *prot = PAGE_READ | PAGE_WRITE;
47 int fixed_mmu_map_address (CPUState *env, target_phys_addr_t *physical, int *prot,
60 *prot = PAGE_READ | PAGE_WRITE;
65 int r4k_map_address (CPUState *env, target_phys_addr_t *physical, int *prot,
96 *prot = PAGE_READ;
98 *prot |= PAGE_WRITE;
109 int *prot, target_ulong address,
131 *prot = PAGE_READ | PAGE_WRITE;
133 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
139 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
147 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
156 *prot = PAGE_READ | PAGE_WRITE;
164 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
173 *prot = PAGE_READ | PAGE_WRITE;
181 *prot = PAGE_READ | PAGE_WRITE;
188 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
196 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
203 address, rw, access_type, *physical, *prot, ret);
378 int prot = PAGE_READ;
380 prot |= PAGE_WRITE;
383 physical & TARGET_PAGE_MASK, prot,
403 int prot;
424 ret = get_physical_address(env, &physical, &prot,
426 qemu_log("%s address=" TARGET_FMT_lx " ret %d physical " TARGET_FMT_plx " prot %d\n",
427 __func__, address, ret, physical, prot);
430 physical & TARGET_PAGE_MASK, prot,
449 int prot;
457 ret = get_physical_address(env, &physical, &prot,
474 int prot, ret;
476 ret = get_physical_address(env, &phys_addr, &prot, addr, 0, ACCESS_INT);