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