/src/sys/compat/freebsd/ |
freebsd_misc.c | 71 struct sys___msync13_args bma; local in function:freebsd_sys_msync 78 SCARG(&bma, addr) = SCARG(uap, addr); 79 SCARG(&bma, len) = SCARG(uap, len); 80 SCARG(&bma, flags) = SCARG(uap, flags); 81 return sys___msync13(l, &bma, retval); 96 struct sys_mmap_args bma; local in function:freebsd_sys_mmap 124 SCARG(&bma, addr) = SCARG(uap, addr); 125 SCARG(&bma, len) = SCARG(uap, len); 126 SCARG(&bma, prot) = prot; 127 SCARG(&bma, flags) = flags [all...] |
/src/sys/compat/linux/common/ |
linux_ipccall.c | 208 struct sys_msgsnd_args bma; local in function:linux_msgsnd 210 SCARG(&bma, msqid) = SCARG(uap, a1); 211 SCARG(&bma, msgp) = SCARG(uap, ptr); 212 SCARG(&bma, msgsz) = SCARG(uap, a2); 213 SCARG(&bma, msgflg) = SCARG(uap, a3); 215 return sys_msgsnd(l, &bma, retval); 221 struct sys_msgrcv_args bma; local in function:linux_msgrcv 228 SCARG(&bma, msqid) = SCARG(uap, a1); 229 SCARG(&bma, msgp) = kluge.msg; 230 SCARG(&bma, msgsz) = SCARG(uap, a2) 240 struct sys_msgget_args bma; local in function:linux_msgget [all...] |
linux_file.c | 713 struct sys_mkfifoat_args bma; local in function:linux_sys_mknodat 715 SCARG(&bma, fd) = SCARG(uap, fd); 716 SCARG(&bma, path) = SCARG(uap, path); 717 SCARG(&bma, mode) = SCARG(uap, mode); 718 return sys_mkfifoat(l, &bma, retval);
|
/src/sys/compat/linux32/common/ |
linux32_ipccall.c | 382 struct netbsd32_msgsnd_args bma; local in function:linux32_msgsnd 384 SCARG(&bma, msqid) = SCARG(uap, a1); 385 SCARG(&bma, msgp) = SCARG(uap, ptr); 386 SCARG(&bma, msgsz) = SCARG(uap, a2); 387 SCARG(&bma, msgflg) = SCARG(uap, a3); 389 return netbsd32_msgsnd(l, &bma, retval); 404 struct netbsd32_msgrcv_args bma; local in function:linux32_msgrcv 411 SCARG(&bma, msqid) = SCARG(uap, a1); 412 SCARG(&bma, msgp) = kluge.msg; 413 SCARG(&bma, msgsz) = SCARG(uap, a2) 423 struct sys_msgget_args bma; local in function:linux32_msgget [all...] |