Lines Matching refs:CLIENT
88 static enum clnt_stat clnt_vc_call(CLIENT *, rpcproc_t, xdrproc_t, void *,
90 static void clnt_vc_geterr(CLIENT *, struct rpc_err *);
91 static bool_t clnt_vc_freeres(CLIENT *, xdrproc_t, void *);
92 static void clnt_vc_abort(CLIENT *);
93 static bool_t clnt_vc_control(CLIENT *, u_int, void *);
94 static void clnt_vc_destroy(CLIENT *);
199 CLIENT *
203 CLIENT *cl; /* client handle */ in clnt_vc_create()
215 cl = (CLIENT *)mem_alloc(sizeof (*cl)); in clnt_vc_create()
217 if ((cl == (CLIENT *)NULL) || (ct == (struct ct_data *)NULL)) { in clnt_vc_create()
308 mem_free(cl, sizeof (CLIENT)); in clnt_vc_create()
309 return ((CLIENT *)NULL); in clnt_vc_create()
313 clnt_vc_call(CLIENT *cl, rpcproc_t proc, xdrproc_t xdr_args, void *args_ptr, in clnt_vc_call()
452 clnt_vc_geterr(CLIENT *cl, struct rpc_err *errp) in clnt_vc_geterr()
464 clnt_vc_freeres(CLIENT *cl, xdrproc_t xdr_res, void *res_ptr) in clnt_vc_freeres()
493 clnt_vc_abort(CLIENT *cl) in clnt_vc_abort()
512 clnt_vc_control(CLIENT *cl, u_int request, void *info) in clnt_vc_control()
625 clnt_vc_destroy(CLIENT *cl) in clnt_vc_destroy()
652 mem_free(cl, sizeof(CLIENT)); in clnt_vc_destroy()