Home | History | Annotate | Download | only in common

Lines Matching defs:fca

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