Home | History | Annotate | Download | only in target-mips

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);
418 int prot = PAGE_READ;
420 prot |= PAGE_WRITE;
423 physical & TARGET_PAGE_MASK, prot,
443 int prot;
464 ret = get_physical_address(env, &physical, &prot,
466 qemu_log("%s address=" TARGET_FMT_lx " ret %d physical " TARGET_FMT_plx " prot %d\n",
467 __func__, address, ret, physical, prot);
470 physical & TARGET_PAGE_MASK, prot,
489 int prot;
497 ret = get_physical_address(env, &physical, &prot,
514 int prot, ret;
516 ret = get_physical_address(env, &phys_addr, &prot, addr, 0, ACCESS_INT);