Lines Matching defs:argp
222 nfssvc_addsock_in(struct nfsd_args *nfsdarg, const void *argp)
225 return copyin(argp, nfsdarg, sizeof *nfsdarg);
229 nfssvc_setexports_in(struct mountd_exports_list *mel, const void *argp)
232 return copyin(argp, mel, sizeof *mel);
236 nfssvc_nsd_in(struct nfsd_srvargs *nsd, const void *argp)
239 return copyin(argp, nsd, sizeof *nsd);
243 nfssvc_nsd_out(void *argp, const struct nfsd_srvargs *nsd)
246 return copyout(nsd, argp, sizeof *nsd);
250 nfssvc_exp_in(struct export_args *exp, const void *argp, size_t nexports)
253 return copyin(argp, exp, sizeof(*exp) * nexports);
281 syscallarg(void *) argp;
284 void *argp = SCARG(uap, argp);
286 return do_nfssvc(&native_ops, l, flag, argp, retval);
290 do_nfssvc(struct nfssvc_copy_ops *ops, struct lwp *l, int flag, void *argp, register_t *retval)
318 error = ops->addsock_in(&nfsdarg, argp);
347 error = ops->setexports_in(&mel, argp);
365 error = ops->nsd_in(nsd, argp);
459 error = nfssvc_nfsd(ops, nsd, argp, l);
593 void *argp, struct lwp *l)
748 !ops->nsd_out(argp, nsd)) {