Lines Matching refs:h
116 CLIENT *h; in clntunix_create() local
121 h = (CLIENT *) mem_alloc (sizeof (*h)); in clntunix_create()
122 if (h == NULL || ct == NULL) in clntunix_create()
191 h->cl_ops = (struct clnt_ops *) &unix_ops; in clntunix_create()
192 h->cl_private = (caddr_t) ct; in clntunix_create()
193 h->cl_auth = authnone_create (); in clntunix_create()
194 return h; in clntunix_create()
201 mem_free ((caddr_t) h, sizeof (CLIENT)); in clntunix_create()
207 clntunix_call (CLIENT *h, u_long proc, xdrproc_t xdr_args, caddr_t args_ptr, in libc_hidden_nolink_sunrpc()
211 struct ct_data *ct = (struct ct_data *) h->cl_private; in libc_hidden_nolink_sunrpc()
234 (!AUTH_MARSHALL (h->cl_auth, xdrs)) || in libc_hidden_nolink_sunrpc()
281 if (!AUTH_VALIDATE (h->cl_auth, &reply_msg.acpted_rply.ar_verf)) in libc_hidden_nolink_sunrpc()
301 if (refreshes-- && AUTH_REFRESH (h->cl_auth)) in libc_hidden_nolink_sunrpc()
308 clntunix_geterr (CLIENT *h, struct rpc_err *errp) in clntunix_geterr() argument
310 struct ct_data *ct = (struct ct_data *) h->cl_private; in clntunix_geterr()
421 clntunix_destroy (CLIENT *h) in clntunix_destroy() argument
424 (struct ct_data *) h->cl_private; in clntunix_destroy()
432 mem_free ((caddr_t) h, sizeof (CLIENT)); in clntunix_destroy()