Lines Matching defs:cl
69 clnt_call(CLIENT *cl, uint32_t proc, xdrproc_t xargs, caddr_t argsp,
72 return ((*(cl)->cl_ops->cl_call)(cl, proc, xargs, argsp, xres, resp,
77 clnt_send(CLIENT *cl, uint32_t proc, xdrproc_t xargs, caddr_t argsp)
79 return ((*(cl)->cl_ops->cl_send)(cl, proc, xargs, argsp));
83 clnt_control(CLIENT *cl, uint_t rq, char *in)
85 return ((*(cl)->cl_ops->cl_control)(cl, rq, in));
89 clnt_destroy(CLIENT *cl)
91 ((*(cl)->cl_ops->cl_destroy)(cl));
95 clnt_freeres(CLIENT *cl, xdrproc_t xres, caddr_t resp)
97 return ((*(cl)->cl_ops->cl_freeres)(cl, xres, resp));
101 clnt_geterr(CLIENT *cl, struct rpc_err *errp)
103 (*(cl)->cl_ops->cl_geterr)(cl, errp);