Searched refs:access_type (Results 1 - 25 of 32) sorted by relevance

12

/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/ppc/
H A Dhw_iobus.c55 access_type access,
H A Dcorefile.c84 core_map_types access_type; local
85 for (access_type = 0;
86 access_type < nr_core_map_types;
87 access_type++) {
88 core_map *map = memory->map + access_type;
219 access_type access,
H A Dhw_core.c66 access_type access,
H A Dcorefile.h110 access_type access,
H A Ddevice.h656 } access_type; typedef in typeref:enum:_access_type
673 access_type access,
683 access_type access,
H A Ddevice_table.c221 access_type access,
236 access_type access,
H A Dhw_sem.c171 access_type access,
H A Dhw_shm.c155 access_type access,
H A Dhw_vm.c111 access_type access,
H A Ddevice_table.h69 access_type access,
H A Dhw_pal.c323 access_type access,
H A Dhw_init.c324 access_type access;
H A Dhw_ide.c689 access_type access,
/netbsd-6-1-5-RELEASE/sys/uvm/
H A Duvm_bio.c225 struct vm_page *pg, vm_prot_t prot, vm_prot_t access_type, vaddr_t va)
251 if ((access_type & VM_PROT_WRITE) == 0) {
272 (access_type & VM_PROT_WRITE) == 0 ||
276 rdonly = ((access_type & VM_PROT_WRITE) == 0 &&
282 prot & mask, PMAP_CANFAIL | (access_type & mask));
299 int ign3, int ign4, vm_prot_t access_type, int flags)
331 * this means that the access_type for "write" operations
334 * deal with this by resetting access_type based on the info
338 access_type = umap->writelen ? VM_PROT_WRITE : VM_PROT_READ;
339 UVMHIST_LOG(ubchist, "va 0x%lx ubc_offset 0x%lx access_type
224 ubc_fault_page(const struct uvm_faultinfo *ufi, const struct ubc_map *umap, struct vm_page *pg, vm_prot_t prot, vm_prot_t access_type, vaddr_t va) argument
298 ubc_fault(struct uvm_faultinfo *ufi, vaddr_t ign1, struct vm_page **ign2, int ign3, int ign4, vm_prot_t access_type, int flags) argument
[all...]
H A Duvm_vnode.c164 int centeridx, vm_prot_t access_type, int advice, int flags)
173 if (vp->v_type == VREG && (access_type & VM_PROT_WRITE) == 0
181 access_type, advice, flags);
161 uvn_get(struct uvm_object *uobj, voff_t offset, struct vm_page **pps , int *npagesp , int centeridx, vm_prot_t access_type, int advice, int flags) argument
H A Duvm_fault.c693 vm_prot_t access_type; member in struct:uvm_faultctx
787 vm_prot_t access_type, int fault_flag)
793 .access_type = access_type,
812 orig_map, vaddr, access_type, fault_flag);
899 flt.centeridx, flt.access_type,
980 if ((check_prot & flt->access_type) != flt->access_type) {
983 ufi->entry->protection, flt->access_type, 0, 0);
1000 flt->access_type
786 uvm_fault_internal(struct vm_map *orig_map, vaddr_t vaddr, vm_prot_t access_type, int fault_flag) argument
2343 uvm_fault_wire(struct vm_map *map, vaddr_t start, vaddr_t end, vm_prot_t access_type, int maxprot) argument
[all...]
H A Duvm_device.c354 int npages, int centeridx, vm_prot_t access_type,
418 mdpgno = cdev_mmap(device, curr_offset, access_type);
353 udv_fault(struct uvm_faultinfo *ufi, vaddr_t vaddr, struct vm_page **pps, int npages, int centeridx, vm_prot_t access_type, int flags) argument
H A Duvm_glue.c150 uvm_vslock(struct vmspace *vs, void *addr, size_t len, vm_prot_t access_type) argument
159 error = uvm_fault_wire(map, start, end, access_type, 0);
H A Duvm_aobj.c822 int *npagesp, int centeridx, vm_prot_t access_type, int advice, int flags)
1091 if ((access_type & VM_PROT_WRITE) == 0) {
821 uao_get(struct uvm_object *uobj, voff_t offset, struct vm_page **pps, int *npagesp, int centeridx, vm_prot_t access_type, int advice, int flags) argument
/netbsd-6-1-5-RELEASE/sys/arch/sparc64/sparc64/
H A Dtrap.c1016 vm_prot_t access_type; local
1078 access_type = VM_PROT_READ;
1080 access_type = (sfsr & SFSR_W) ? VM_PROT_WRITE : VM_PROT_READ;
1104 rv = uvm_fault(kernel_map, va, access_type);
1111 kernel_map, va, access_type, rv,
1135 rv = uvm_fault(&vm->vm_map, va, access_type);
1143 &vm->vm_map, va, access_type, rv,
1406 vm_prot_t access_type; local
1444 access_type = VM_PROT_EXECUTE;
1459 rv = uvm_fault(&vm->vm_map, va, access_type);
1518 vm_prot_t access_type; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/python/
H A Dpy-breakpoint.c604 int access_type = hw_write; local
610 &spec, &type, &access_type, &internal))
641 if (access_type == hw_write)
643 else if (access_type == hw_access)
645 else if (access_type == hw_read)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/cp/
H A Dsemantics.c1410 tree access_type = TREE_TYPE (object); local
1413 while (!DERIVED_FROM_P (lookup_context, access_type))
1415 access_type = TYPE_CONTEXT (access_type);
1416 while (access_type && DECL_P (access_type))
1417 access_type = DECL_CONTEXT (access_type);
1419 if (!access_type)
1436 perform_or_defer_access_check (TYPE_BINFO (access_type), dec
[all...]
/netbsd-6-1-5-RELEASE/sys/rump/librump/rumpvfs/
H A Drumpvnode_if.c613 int access_type,
620 error = VOP_GETPAGES(vp, offset, m, count, centeridx, access_type, advice, flags);
608 RUMP_VOP_GETPAGES(struct vnode *vp, off_t offset, struct vm_page **m, int *count, int centeridx, int access_type, int advice, int flags) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/cp/
H A Dsemantics.c1496 tree access_type = TREE_TYPE (object); local
1499 while (!DERIVED_FROM_P (lookup_context, access_type))
1501 access_type = TYPE_CONTEXT (access_type);
1502 while (access_type && DECL_P (access_type))
1503 access_type = DECL_CONTEXT (access_type);
1505 if (!access_type)
1513 perform_or_defer_access_check (TYPE_BINFO (access_type), dec
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/xen/xen/
H A Dprivcmd.c489 int npages, int centeridx, vm_prot_t access_type, int flags)
488 privpgop_fault(struct uvm_faultinfo *ufi, vaddr_t vaddr, struct vm_page **pps, int npages, int centeridx, vm_prot_t access_type, int flags) argument

Completed in 360 milliseconds

12