Lines Matching refs:h
115 CLIENT *h; in clnttcp_create() local
119 h = (CLIENT *) mem_alloc (sizeof (*h)); in clnttcp_create()
121 if (h == NULL || ct == NULL) in clnttcp_create()
139 mem_free ((caddr_t) h, sizeof (CLIENT)); in clnttcp_create()
208 h->cl_ops = (struct clnt_ops *) &tcp_ops; in clnttcp_create()
209 h->cl_private = (caddr_t) ct; in clnttcp_create()
210 h->cl_auth = authnone_create (); in clnttcp_create()
211 return h; in clnttcp_create()
218 mem_free ((caddr_t) h, sizeof (CLIENT)); in clnttcp_create()
228 clnttcp_call (CLIENT *h, u_long proc, xdrproc_t xdr_args, caddr_t args_ptr, in libc_hidden_def()
232 struct ct_data *ct = (struct ct_data *) h->cl_private; in libc_hidden_def()
255 (!AUTH_MARSHALL (h->cl_auth, xdrs)) || in libc_hidden_def()
304 if (!AUTH_VALIDATE (h->cl_auth, &reply_msg.acpted_rply.ar_verf)) in libc_hidden_def()
324 if (refreshes-- && AUTH_REFRESH (h->cl_auth)) in libc_hidden_def()
331 clnttcp_geterr (CLIENT *h, struct rpc_err *errp) in clnttcp_geterr() argument
334 (struct ct_data *) h->cl_private; in clnttcp_geterr()
447 clnttcp_destroy (CLIENT *h) in clnttcp_destroy() argument
450 (struct ct_data *) h->cl_private; in clnttcp_destroy()
458 mem_free ((caddr_t) h, sizeof (CLIENT)); in clnttcp_destroy()