/src/sys/rump/kern/lib/libsys_linux/ |
linux_rump.c | 25 struct linux_sys_mknodat_args ua; local in function:rump_linux_sys_mknodat 27 SCARG(&ua, fd) = SCARG(uap, fd); 28 SCARG(&ua, path) = SCARG(uap, path); 29 SCARG(&ua, mode) = SCARG(uap, mode); 30 SCARG(&ua, dev) = SCARG(uap, dev); 32 return linux_sys_mknodat(l, &ua, retval);
|
/src/sys/compat/netbsd32/ |
netbsd32_compat_40.c | 57 struct compat_40_sys_mount_args ua; local in function:compat_40_netbsd32_mount 64 return compat_40_sys_mount(l, &ua, retval);
|
netbsd32_vm.c | 59 struct sys_mmap_args ua; local in function:netbsd32_mmap 71 if (SCARG(&ua, flags) & COMPAT_MAP_COPY) { 72 SCARG(&ua, flags) = MAP_PRIVATE 73 | (SCARG(&ua, flags) & ~COMPAT_MAP_COPY); 74 SCARG(&ua, prot) |= PROT_EXEC; 83 (long)SCARG(&ua, addr), (long)SCARG(&ua, len), 84 (long)SCARG(&ua, prot), (long)SCARG(&ua, flags), 85 (long)SCARG(&ua, fd), (long)SCARG(&ua, pos)) [all...] |
netbsd32_compat_50_quota.c | 62 struct compat_50_sys_quotactl_args ua; local in function:compat_50_netbsd32_quotactl 68 return compat_50_sys_quotactl(l, &ua, retval);
|
netbsd32_compat_09.c | 87 struct compat_09_sys_uname_args ua; local in function:compat_09_netbsd32_uname 90 return compat_09_sys_uname(l, &ua, retval);
|
netbsd32_compat_12.c | 95 struct compat_12_sys_reboot_args ua; local in function:compat_12_netbsd32_reboot 98 return compat_12_sys_reboot(l, &ua, retval); 108 struct sys___msync13_args ua; local in function:compat_12_netbsd32_msync 112 SCARG(&ua, flags) = MS_SYNC | MS_INVALIDATE; 113 return sys___msync13(l, &ua, retval); 122 struct sys_swapctl_args ua; local in function:compat_12_netbsd32_oswapon 124 SCARG(&ua, cmd) = SWAP_ON; 125 SCARG(&ua, arg) = SCARG_P32(uap, name); 126 SCARG(&ua, misc) = 0; /* priority */ 127 return sys_swapctl(l, &ua, retval) 205 struct compat_12_sys_getdirentries_args ua; local in function:compat_12_netbsd32_getdirentries [all...] |
netbsd32_epoll.c | 52 struct sys_epoll_create1_args ua; local in function:netbsd32_epoll_create1 55 return sys_epoll_create1(l, &ua, retval);
|
/src/sys/arch/mips/mips/ |
netbsd32_machdep_13.c | 75 struct compat_13_sys_sigreturn_args ua; local in function:compat_13_netbsd32_sigreturn 79 return compat_13_sys_sigreturn(l, &ua, retval);
|
netbsd32_machdep_16.c | 78 struct compat_16_sys___sigreturn14_args ua; local in function:compat_16_netbsd32___sigreturn14 82 return compat_16_sys___sigreturn14(l, &ua, retval);
|
/src/common/lib/libc/quad/ |
divdi3.c | 54 u_quad_t ua, ub, uq; local in function:__divdi3 57 ua = a; 61 ua = -ua, neg ^= 1; 65 uq = __qdivrem(ua, ub, (u_quad_t *)0);
|
moddi3.c | 55 u_quad_t ua, ub, ur; local in function:__moddi3 58 ua = a; 62 ua = -ua, neg ^= 1; 65 (void)__qdivrem(ua, ub, &ur);
|
/src/sys/arch/arm/arm32/ |
netbsd32_machdep_13.c | 61 struct compat_13_sys_sigreturn_args ua; local in function:compat_13_netbsd32_sigreturn 65 return compat_13_sys_sigreturn(l, &ua, retval);
|
netbsd32_machdep_16.c | 62 struct compat_16_sys___sigreturn14_args ua; local in function:compat_16_netbsd32___sigreturn14 66 return compat_16_sys___sigreturn14(l, &ua, retval);
|
sys_machdep.c | 70 struct arm_sync_icache_args ua; local in function:arm32_sync_icache 73 if ((error = copyin(args, &ua, sizeof(ua))) != 0) 77 ua.addr, ua.addr + ua.len); 110 struct arm_vfp_fpscr_args ua; local in function:arm32_vfp_fpscr 112 if ((error = copyin(uap, &ua, sizeof(ua))) != 0) 114 if ((ua.fpscr_clear|ua.fpscr_set) & ~vfp_fpscr_changable [all...] |
/src/sys/compat/linux32/common/ |
linux32_mman.c | 81 struct linux_sys_old_mmap_args ua; local in function:linux32_sys_old_mmap 84 return linux_sys_old_mmap(l, &ua, retval); 95 struct linux_sys_mprotect_args ua; local in function:linux32_sys_mprotect 100 return (linux_sys_mprotect(l, &ua, retval)); 112 struct linux_sys_mremap_args ua; local in function:linux32_sys_mremap 119 return linux_sys_mremap(l, &ua, retval); 133 struct linux_sys_mmap_args ua; local in function:linux32_sys_mmap2 142 return linux_sys_mmap2(l, &ua, retval);
|
linux32_ioctl.c | 100 struct linux_sys_ioctl_args ua; local in function:linux32_sys_ioctl 101 SCARG(&ua, fd) = SCARG(uap, fd); 102 SCARG(&ua, com) = SCARG(uap, com); 103 SCARG(&ua, data) = SCARG_P32(uap, data); 104 error = linux_ioctl_timerfd(l, &ua, retval); 135 struct sys_ioctl_args ua; local in function:linux32_sys_ioctl 141 SCARG(&ua, fd) = SCARG(uap, fd); 142 SCARG(&ua, com) = SCARG(uap, com); 143 SCARG(&ua, com) &= ~IOC_DIRMASK; 144 SCARG(&ua, com) |= com [all...] |
linux32_socketcall.c | 96 union linux32_socketcall_args ua; local in function:linux32_sys_socketcall 102 if ((error = copyin(SCARG_P32(uap, args), &ua, 107 ktrkuser(linux32_socketcall[SCARG(uap, what)].name, &ua, 110 return linux32_socketcall[SCARG(uap, what)].syscall(l, &ua, retval);
|
linux32_fcntl.c | 93 struct linux_sys_open_args ua; local in function:conv_linux_flock 99 return linux_sys_open(l, &ua, retval); 121 struct linux_sys_fcntl_args ua; local in function:linux32_sys_fcntl 144 SCARG(&ua, cmd) = cmd; 147 return linux_sys_fcntl(l, &ua, retval);
|
linux32_sched.c | 84 struct linux_sys_clone_args ua; local in function:linux32_sys_clone 91 return linux_sys_clone(l, &ua, retval); 100 struct linux_sys_sched_getscheduler_args ua; local in function:linux32_sys_sched_getscheduler 103 return linux_sys_sched_getscheduler(l, &ua, retval); 114 struct linux_sys_sched_setscheduler_args ua; local in function:linux32_sys_sched_setscheduler 119 return linux_sys_sched_setscheduler(l, &ua, retval); 129 struct linux_sys_sched_getparam_args ua; local in function:linux32_sys_sched_getparam 133 return linux_sys_sched_getparam(l, &ua, retval); 143 struct linux_sys_sched_setparam_args ua; local in function:linux32_sys_sched_setparam 147 return linux_sys_sched_setparam(l, &ua, retval) 156 struct linux_sys_exit_group_args ua; local in function:linux32_sys_exit_group 169 struct linux_sys_exit_args ua; local in function:linux32_sys_exit 182 struct linux_sys_sched_get_priority_max_args ua; local in function:linux32_sys_sched_get_priority_max 195 struct linux_sys_sched_get_priority_min_args ua; local in function:linux32_sys_sched_get_priority_min 208 struct linux_sys_set_tid_address_args ua; local in function:linux32_sys_set_tid_address 222 struct linux_sys_sched_getaffinity_args ua; local in function:linux32_sys_sched_getaffinity 238 struct linux_sys_sched_setaffinity_args ua; local in function:linux32_sys_sched_setaffinity 253 struct linux_sys_tkill_args ua; local in function:linux32_sys_tkill 268 struct linux_sys_tgkill_args ua; local in function:linux32_sys_tgkill [all...] |
linux32_wait.c | 83 struct linux32_sys_wait4_args ua; local in function:linux32_sys_waitpid 85 SCARG(&ua, pid) = SCARG(uap, pid); 86 SCARG(&ua, status) = SCARG(uap, status); 87 SCARG(&ua, options) = SCARG(uap, options); 88 NETBSD32PTR32(SCARG(&ua, rusage), NULL); 90 return linux32_sys_wait4(l, &ua, retval);
|
linux32_uid16.c | 73 struct sys___posix_chown_args ua; local in function:linux32_sys_chown16 76 SCARG(&ua, uid) = LINUX32TOBSD_UID(SCARG(uap, uid)); 77 SCARG(&ua, gid) = LINUX32TOBSD_GID(SCARG(uap, gid)); 79 return sys___posix_chown(l, &ua, retval); 90 struct sys___posix_lchown_args ua; local in function:linux32_sys_lchown16 93 SCARG(&ua, uid) = LINUX32TOBSD_UID(SCARG(uap, uid)); 94 SCARG(&ua, gid) = LINUX32TOBSD_GID(SCARG(uap, gid)); 96 return sys___posix_lchown(l, &ua, retval); 107 struct sys___posix_fchown_args ua; local in function:linux32_sys_fchown16 109 SCARG(&ua, fd) = SCARG(uap, fd) 123 struct linux_sys_getgroups16_args ua; local in function:linux32_sys_getgroups16 138 struct linux_sys_setgroups16_args ua; local in function:linux32_sys_setgroups16 [all...] |
/src/sys/compat/common/ |
vm_12.c | 60 struct sys_swapctl_args ua; local in function:compat_12_sys_swapon 62 SCARG(&ua, cmd) = SWAP_ON; 64 SCARG(&ua, arg) = __UNCONST(SCARG(uap, name)); 65 SCARG(&ua, misc) = 0; /* priority */ 66 return (sys_swapctl(l, &ua, retval)); 77 struct sys___msync13_args ua; local in function:compat_12_sys_msync 79 SCARG(&ua, addr) = SCARG(uap, addr); 80 SCARG(&ua, len) = SCARG(uap, len); 81 SCARG(&ua, flags) = MS_SYNC | MS_INVALIDATE; 82 return (sys___msync13(l, &ua, retval)) [all...] |
/src/sys/dev/qbus/ |
dz_uba.c | 69 struct uba_attach_args *ua = aux; local in function:dz_uba_match 70 bus_space_tag_t iot = ua->ua_iot; 71 bus_space_handle_t ioh = ua->ua_ioh; 109 struct uba_attach_args *ua = aux; local in function:dz_uba_attach 112 sc->sc_iot = ua->ua_iot; 113 sc->sc_ioh = ua->ua_ioh; 130 uba_intr_establish(ua->ua_icookie, ua->ua_cvec, 132 uba_intr_establish(ua->ua_icookie, ua->ua_cvec - 4 [all...] |
/src/sys/compat/linux/common/ |
linux_ioctl.c | 91 struct sys_ioctl_args ua; local in function:linux_sys_ioctl 97 SCARG(&ua, fd) = SCARG(uap, fd); 98 SCARG(&ua, com) = SCARG(uap, com); 99 SCARG(&ua, com) &= ~IOC_DIRMASK; 100 SCARG(&ua, com) |= com; 101 SCARG(&ua, data) = SCARG(uap, data); 102 error = sys_ioctl(l, (const void *)&ua, retval); 119 struct sys_ioctl_args ua; local in function:linux_sys_ioctl 125 SCARG(&ua, fd) = SCARG(uap, fd); 126 SCARG(&ua, com) = SCARG(uap, com) [all...] |
/src/sys/arch/hpcmips/tx/ |
tx39uart.c | 86 struct tx39uart_attach_args ua; local in function:tx39uart_search 88 ua.ua_tc = sc->sc_tc; 89 ua.ua_slot = cf->cf_loc[TXCOMIFCF_SLOT]; 91 if (ua.ua_slot == TXCOMIFCF_SLOT_DEFAULT) { 96 if (!(sc->sc_enabled & (1 << ua.ua_slot)) && /* not attached slot */ 97 config_probe(parent, cf, &ua)) { 98 config_attach(parent, cf, &ua, tx39uart_print, CFARGS_NONE); 99 sc->sc_enabled |= (1 << ua.ua_slot); 108 struct tx39uart_attach_args *ua = aux; local in function:tx39uart_print 110 aprint_normal(" slot %d", ua->ua_slot) [all...] |