Lines Matching refs:fca
297 struct sys_fcntl_args fca; in linux_sys_fcntl() local
324 SCARG(&fca, fd) = fd; in linux_sys_fcntl()
325 SCARG(&fca, cmd) = F_GETFL; in linux_sys_fcntl()
326 SCARG(&fca, arg) = arg; in linux_sys_fcntl()
327 if ((error = sys_fcntl(l, &fca, retval))) in linux_sys_fcntl()
366 SCARG(&fca, fd) = fd; in linux_sys_fcntl()
367 SCARG(&fca, cmd) = F_SETFL; in linux_sys_fcntl()
368 SCARG(&fca, arg) = (void *) val; in linux_sys_fcntl()
370 error = sys_fcntl(l, &fca, retval); in linux_sys_fcntl()
469 SCARG(&fca, fd) = fd; in linux_sys_fcntl()
470 SCARG(&fca, cmd) = cmd; in linux_sys_fcntl()
471 SCARG(&fca, arg) = arg; in linux_sys_fcntl()
473 return sys_fcntl(l, &fca, retval); in linux_sys_fcntl()