/src/sys/compat/linux/common/ |
linux_llseek.c | 67 struct sys_lseek_args bla; local in function:linux_sys_llseek 73 SCARG(&bla, fd) = SCARG(uap, fd); 74 SCARG(&bla, offset) = off; 75 SCARG(&bla, whence) = SCARG(uap, whence); 77 if ((error = sys_lseek(l, &bla, retval)))
|
linux_uid16.c | 97 struct sys___posix_lchown_args bla; local in function:linux_sys_lchown16 99 SCARG(&bla, path) = SCARG(uap, path); 100 SCARG(&bla, uid) = LINUXTOBSD_UID(SCARG(uap, uid)); 101 SCARG(&bla, gid) = LINUXTOBSD_GID(SCARG(uap, gid)); 103 return sys___posix_lchown(l, &bla, retval);
|