Symbol: CLIENT
include/rpc/clnt.h
322
extern CLIENT *clnt_create(const char *, const rpcprog_t, const rpcvers_t,
include/rpc/clnt.h
336
extern CLIENT *clnt_create_vers(const char *, const rpcprog_t, rpcvers_t *,
include/rpc/clnt.h
353
extern CLIENT *clnt_tp_create(const char *, const rpcprog_t,
include/rpc/clnt.h
366
extern CLIENT *clnt_tli_create(const int, const struct netconfig *,
include/rpc/clnt.h
383
extern CLIENT *clnt_vc_create(const int, const struct netbuf *,
include/rpc/clnt.h
398
extern CLIENT *clnt_dg_create(const int, const struct netbuf *,
include/rpc/clnt.h
417
extern CLIENT *clnt_raw_create (rpcprog_t, rpcvers_t);
include/rpc/clnt.h
442
extern void clnt_perror (CLIENT *, const char *); /* stderr */
include/rpc/clnt.h
443
extern char *clnt_sperror (CLIENT *, const char *); /* string */
include/rpc/clnt_soc.h
103
extern CLIENT *clntudp_create(struct sockaddr_in *,
include/rpc/clnt_soc.h
108
extern CLIENT *clntudp_bufcreate(struct sockaddr_in *,
include/rpc/clnt_soc.h
65
extern CLIENT *clnttcp_create(struct sockaddr_in *,
include/rpc/clnt_soc.h
77
extern CLIENT *clntraw_create (unsigned long, unsigned long);
include/rpcsvc/yp_prot.h
199
CLIENT *dom_client;
lib/libc/rpc/clnt_dg.c
158
CLIENT *
lib/libc/rpc/clnt_dg.c
167
CLIENT *cl = NULL; /* client handle */
lib/libc/rpc/clnt_dg.c
234
if ((cl = mem_alloc(sizeof (CLIENT))) == NULL)
lib/libc/rpc/clnt_dg.c
301
mem_free(cl, sizeof (CLIENT));
lib/libc/rpc/clnt_dg.c
310
CLIENT * cl, /* client handle */
lib/libc/rpc/clnt_dg.c
507
clnt_dg_geterr(CLIENT *cl, struct rpc_err *errp)
lib/libc/rpc/clnt_dg.c
519
clnt_dg_freeres(CLIENT *cl, xdrproc_t xdr_res, caddr_t res_ptr)
lib/libc/rpc/clnt_dg.c
548
clnt_dg_abort(CLIENT *h)
lib/libc/rpc/clnt_dg.c
553
clnt_dg_control(CLIENT *cl, u_int request, char *info)
lib/libc/rpc/clnt_dg.c
693
clnt_dg_destroy(CLIENT *cl)
lib/libc/rpc/clnt_dg.c
720
mem_free(cl, sizeof (CLIENT));
lib/libc/rpc/clnt_dg.c
80
static enum clnt_stat clnt_dg_call(CLIENT *, rpcproc_t, xdrproc_t,
lib/libc/rpc/clnt_dg.c
82
static void clnt_dg_geterr(CLIENT *, struct rpc_err *);
lib/libc/rpc/clnt_dg.c
83
static bool_t clnt_dg_freeres(CLIENT *, xdrproc_t, caddr_t);
lib/libc/rpc/clnt_dg.c
84
static void clnt_dg_abort(CLIENT *);
lib/libc/rpc/clnt_dg.c
85
static bool_t clnt_dg_control(CLIENT *, u_int, char *);
lib/libc/rpc/clnt_dg.c
86
static void clnt_dg_destroy(CLIENT *);
lib/libc/rpc/clnt_generic.c
151
CLIENT *
lib/libc/rpc/clnt_generic.c
159
CLIENT *clnt = NULL;
lib/libc/rpc/clnt_generic.c
224
CLIENT *
lib/libc/rpc/clnt_generic.c
232
CLIENT *cl = NULL; /* client handle */
lib/libc/rpc/clnt_generic.c
290
CLIENT *
lib/libc/rpc/clnt_generic.c
300
CLIENT *cl; /* client handle */
lib/libc/rpc/clnt_generic.c
78
CLIENT *
lib/libc/rpc/clnt_generic.c
87
CLIENT *clnt;
lib/libc/rpc/clnt_perror.c
182
clnt_perror(CLIENT *rpch, const char *s)
lib/libc/rpc/clnt_perror.c
91
clnt_sperror(CLIENT *rpch, const char *s)
lib/libc/rpc/clnt_raw.c
100
CLIENT *
lib/libc/rpc/clnt_raw.c
106
CLIENT *client;
lib/libc/rpc/clnt_raw.c
161
clnt_raw_call(CLIENT *h, rpcproc_t proc, xdrproc_t xargs, const char *argsp,
lib/libc/rpc/clnt_raw.c
253
clnt_raw_geterr(CLIENT *cl, struct rpc_err *error)
lib/libc/rpc/clnt_raw.c
260
clnt_raw_freeres(CLIENT *cl, xdrproc_t xdr_res, caddr_t res_ptr)
lib/libc/rpc/clnt_raw.c
279
clnt_raw_abort(CLIENT *cl)
lib/libc/rpc/clnt_raw.c
285
clnt_raw_control(CLIENT *cl, u_int ui, char *str)
lib/libc/rpc/clnt_raw.c
292
clnt_raw_destroy(CLIENT *cl)
lib/libc/rpc/clnt_raw.c
78
CLIENT client_object;
lib/libc/rpc/clnt_raw.c
88
static enum clnt_stat clnt_raw_call(CLIENT *, rpcproc_t, xdrproc_t,
lib/libc/rpc/clnt_raw.c
90
static void clnt_raw_geterr(CLIENT *, struct rpc_err *);
lib/libc/rpc/clnt_raw.c
91
static bool_t clnt_raw_freeres(CLIENT *, xdrproc_t, caddr_t);
lib/libc/rpc/clnt_raw.c
92
static void clnt_raw_abort(CLIENT *);
lib/libc/rpc/clnt_raw.c
93
static bool_t clnt_raw_control(CLIENT *, u_int, char *);
lib/libc/rpc/clnt_raw.c
94
static void clnt_raw_destroy(CLIENT *);
lib/libc/rpc/clnt_simple.c
80
CLIENT *client; /* Client handle */
lib/libc/rpc/clnt_vc.c
185
CLIENT *
lib/libc/rpc/clnt_vc.c
195
CLIENT *h;
lib/libc/rpc/clnt_vc.c
337
mem_free(h, sizeof(CLIENT));
lib/libc/rpc/clnt_vc.c
343
CLIENT *h,
lib/libc/rpc/clnt_vc.c
474
CLIENT *h,
lib/libc/rpc/clnt_vc.c
489
CLIENT *cl,
lib/libc/rpc/clnt_vc.c
526
clnt_vc_abort(CLIENT *cl)
lib/libc/rpc/clnt_vc.c
532
CLIENT *cl,
lib/libc/rpc/clnt_vc.c
652
clnt_vc_destroy(CLIENT *cl)
lib/libc/rpc/clnt_vc.c
680
mem_free(cl, sizeof(CLIENT));
lib/libc/rpc/clnt_vc.c
91
static enum clnt_stat clnt_vc_call(CLIENT *, rpcproc_t, xdrproc_t,
lib/libc/rpc/clnt_vc.c
93
static void clnt_vc_geterr(CLIENT *, struct rpc_err *);
lib/libc/rpc/clnt_vc.c
94
static bool_t clnt_vc_freeres(CLIENT *, xdrproc_t, caddr_t);
lib/libc/rpc/clnt_vc.c
95
static void clnt_vc_abort(CLIENT *);
lib/libc/rpc/clnt_vc.c
96
static bool_t clnt_vc_control(CLIENT *, u_int, char *);
lib/libc/rpc/clnt_vc.c
97
static void clnt_vc_destroy(CLIENT *);
lib/libc/rpc/pmap_getmaps.c
87
CLIENT *client;
lib/libc/rpc/pmap_getport.c
108
CLIENT *client;
lib/libc/rpc/pmap_getport.c
79
remote_pmap_getport(CLIENT *client, struct pmap *parms, u_short *port)
lib/libc/rpc/pmap_getport.c
92
static CLIENT *
lib/libc/rpc/pmap_rmt.c
95
CLIENT *client;
lib/libc/rpc/rpc_generic.c
480
rpc_nullproc(CLIENT *clnt)
lib/libc/rpc/rpc_internal.h
52
void *rpc_nullproc(CLIENT *);
lib/libc/rpc/rpc_internal.h
56
const char *, CLIENT **);
lib/libc/rpc/rpc_soc.c
107
static CLIENT *
lib/libc/rpc/rpc_soc.c
111
CLIENT *cl;
lib/libc/rpc/rpc_soc.c
183
CLIENT *
lib/libc/rpc/rpc_soc.c
186
CLIENT *cl;
lib/libc/rpc/rpc_soc.c
200
CLIENT *
lib/libc/rpc/rpc_soc.c
208
CLIENT *
lib/libc/rpc/rpc_soc.c
216
CLIENT *
lib/libc/rpc/rpc_soc.c
99
static CLIENT *clnt_com_create(struct sockaddr_in *, rpcprog_t, rpcvers_t,
lib/libc/rpc/rpcb_clnt.c
1016
CLIENT *client;
lib/libc/rpc/rpcb_clnt.c
1076
CLIENT *client;
lib/libc/rpc/rpcb_clnt.c
114
static CLIENT *getclnthandle(const char *, const struct netconfig *, char **);
lib/libc/rpc/rpcb_clnt.c
1143
CLIENT *client = NULL;
lib/libc/rpc/rpcb_clnt.c
115
static CLIENT *local_rpcb(void);
lib/libc/rpc/rpcb_clnt.c
1202
CLIENT *client;
lib/libc/rpc/rpcb_clnt.c
1237
CLIENT *client;
lib/libc/rpc/rpcb_clnt.c
304
static CLIENT *
lib/libc/rpc/rpcb_clnt.c
307
CLIENT *client;
lib/libc/rpc/rpcb_clnt.c
430
static CLIENT *
lib/libc/rpc/rpcb_clnt.c
433
CLIENT *client;
lib/libc/rpc/rpcb_clnt.c
536
CLIENT *client;
lib/libc/rpc/rpcb_clnt.c
594
CLIENT *client;
lib/libc/rpc/rpcb_clnt.c
678
const struct netconfig *nconf, const char *host, CLIENT **clpp)
lib/libc/rpc/rpcb_clnt.c
680
CLIENT *client = NULL;
lib/libc/yp/yp_all.c
54
CLIENT *clnt;
lib/libc/yp/yplib.c
107
CLIENT *client;
lib/libpam/modules/pam_unix/pam_unix.c
253
CLIENT *client;
lib/libquota/quota_nfs.c
104
CLIENT *client = NULL;
sbin/mount_nfs/getnfsargs.c
104
CLIENT *clp;
sbin/umount/umount.c
197
CLIENT *clp;
sys/fs/nfs/common/nfs_commonkrpc.c
173
CLIENT *client;
sys/fs/nfs/common/nfs_commonkrpc.c
380
CLIENT *client;
sys/fs/nfs/nlm/nlm.h
104
extern CLIENT *nlm_host_get_rpc(struct nlm_host *host, bool_t isserver);
sys/fs/nfs/nlm/nlm.h
161
struct svc_req *rqstp, CLIENT **rpcp);
sys/fs/nfs/nlm/nlm.h
171
struct svc_req *rqstp, bool_t monitor, CLIENT **rpcp);
sys/fs/nfs/nlm/nlm.h
181
struct svc_req *rqstp, CLIENT **rpcp);
sys/fs/nfs/nlm/nlm.h
191
struct svc_req *rqstp, CLIENT **rpcp);
sys/fs/nfs/nlm/nlm.h
201
struct svc_req *rqstp, CLIENT **rpcp);
sys/fs/nfs/nlm/nlm_advlock.c
1043
CLIENT *client;
sys/fs/nfs/nlm/nlm_advlock.c
568
nlm_test_rpc(rpcvers_t vers, nlm4_testargs *args, nlm4_testres *res, CLIENT *client,
sys/fs/nfs/nlm/nlm_advlock.c
599
nlm_lock_rpc(rpcvers_t vers, nlm4_lockargs *args, nlm4_res *res, CLIENT *client,
sys/fs/nfs/nlm/nlm_advlock.c
628
nlm_cancel_rpc(rpcvers_t vers, nlm4_cancargs *args, nlm4_res *res, CLIENT *client,
sys/fs/nfs/nlm/nlm_advlock.c
655
nlm_unlock_rpc(rpcvers_t vers, nlm4_unlockargs *args, nlm4_res *res, CLIENT *client,
sys/fs/nfs/nlm/nlm_advlock.c
769
CLIENT *client;
sys/fs/nfs/nlm/nlm_advlock.c
968
CLIENT *client;
sys/fs/nfs/nlm/nlm_prot.h
285
extern enum clnt_stat nlm_sm_notify_0(struct nlm_sm_status *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
290
extern enum clnt_stat nlm_test_1(struct nlm_testargs *, nlm_testres *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
293
extern enum clnt_stat nlm_lock_1(struct nlm_lockargs *, nlm_res *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
296
extern enum clnt_stat nlm_cancel_1(struct nlm_cancargs *, nlm_res *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
299
extern enum clnt_stat nlm_unlock_1(struct nlm_unlockargs *, nlm_res *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
302
extern enum clnt_stat nlm_granted_1(struct nlm_testargs *, nlm_res *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
305
extern enum clnt_stat nlm_test_msg_1(struct nlm_testargs *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
308
extern enum clnt_stat nlm_lock_msg_1(struct nlm_lockargs *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
311
extern enum clnt_stat nlm_cancel_msg_1(struct nlm_cancargs *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
314
extern enum clnt_stat nlm_unlock_msg_1(struct nlm_unlockargs *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
317
extern enum clnt_stat nlm_granted_msg_1(struct nlm_testargs *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
320
extern enum clnt_stat nlm_test_res_1(nlm_testres *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
323
extern enum clnt_stat nlm_lock_res_1(nlm_res *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
326
extern enum clnt_stat nlm_cancel_res_1(nlm_res *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
329
extern enum clnt_stat nlm_unlock_res_1(nlm_res *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
332
extern enum clnt_stat nlm_granted_res_1(nlm_res *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
338
extern enum clnt_stat nlm_share_3(nlm_shareargs *, nlm_shareres *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
341
extern enum clnt_stat nlm_unshare_3(nlm_shareargs *, nlm_shareres *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
344
extern enum clnt_stat nlm_nm_lock_3(nlm_lockargs *, nlm_res *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
347
extern enum clnt_stat nlm_free_all_3(nlm_notify *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
353
extern enum clnt_stat nlm4_test_4(nlm4_testargs *, nlm4_testres *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
356
extern enum clnt_stat nlm4_lock_4(nlm4_lockargs *, nlm4_res *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
359
extern enum clnt_stat nlm4_cancel_4(nlm4_cancargs *, nlm4_res *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
362
extern enum clnt_stat nlm4_unlock_4(nlm4_unlockargs *, nlm4_res *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
365
extern enum clnt_stat nlm4_granted_4(nlm4_testargs *, nlm4_res *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
368
extern enum clnt_stat nlm4_test_msg_4(nlm4_testargs *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
371
extern enum clnt_stat nlm4_lock_msg_4(nlm4_lockargs *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
374
extern enum clnt_stat nlm4_cancel_msg_4(nlm4_cancargs *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
377
extern enum clnt_stat nlm4_unlock_msg_4(nlm4_unlockargs *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
380
extern enum clnt_stat nlm4_granted_msg_4(nlm4_testargs *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
383
extern enum clnt_stat nlm4_test_res_4(nlm4_testres *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
386
extern enum clnt_stat nlm4_lock_res_4(nlm4_res *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
389
extern enum clnt_stat nlm4_cancel_res_4(nlm4_res *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
392
extern enum clnt_stat nlm4_unlock_res_4(nlm4_res *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
395
extern enum clnt_stat nlm4_granted_res_4(nlm4_res *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
398
extern enum clnt_stat nlm4_share_4(nlm4_shareargs *, nlm4_shareres *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
401
extern enum clnt_stat nlm4_unshare_4(nlm4_shareargs *, nlm4_shareres *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
404
extern enum clnt_stat nlm4_nm_lock_4(nlm4_lockargs *, nlm4_res *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot.h
407
extern enum clnt_stat nlm4_free_all_4(nlm4_notify *, void *, CLIENT *, struct rpc_callextra *, struct timeval);
sys/fs/nfs/nlm/nlm_prot_clnt.c
104
nlm_unlock_msg_1(struct nlm_unlockargs *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
113
nlm_granted_msg_1(struct nlm_testargs *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
122
nlm_test_res_1(nlm_testres *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
131
nlm_lock_res_1(nlm_res *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
140
nlm_cancel_res_1(nlm_res *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
149
nlm_unlock_res_1(nlm_res *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
158
nlm_granted_res_1(nlm_res *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
167
nlm_share_3(nlm_shareargs *argp, nlm_shareres *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
176
nlm_unshare_3(nlm_shareargs *argp, nlm_shareres *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
185
nlm_nm_lock_3(nlm_lockargs *argp, nlm_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
194
nlm_free_all_3(nlm_notify *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
203
nlm4_test_4(nlm4_testargs *argp, nlm4_testres *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
212
nlm4_lock_4(nlm4_lockargs *argp, nlm4_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
221
nlm4_cancel_4(nlm4_cancargs *argp, nlm4_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
23
nlm_sm_notify_0(struct nlm_sm_status *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
230
nlm4_unlock_4(nlm4_unlockargs *argp, nlm4_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
239
nlm4_granted_4(nlm4_testargs *argp, nlm4_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
248
nlm4_test_msg_4(nlm4_testargs *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
257
nlm4_lock_msg_4(nlm4_lockargs *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
266
nlm4_cancel_msg_4(nlm4_cancargs *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
275
nlm4_unlock_msg_4(nlm4_unlockargs *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
284
nlm4_granted_msg_4(nlm4_testargs *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
293
nlm4_test_res_4(nlm4_testres *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
302
nlm4_lock_res_4(nlm4_res *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
311
nlm4_cancel_res_4(nlm4_res *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
32
nlm_test_1(struct nlm_testargs *argp, nlm_testres *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
320
nlm4_unlock_res_4(nlm4_res *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
329
nlm4_granted_res_4(nlm4_res *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
338
nlm4_share_4(nlm4_shareargs *argp, nlm4_shareres *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
347
nlm4_unshare_4(nlm4_shareargs *argp, nlm4_shareres *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
356
nlm4_nm_lock_4(nlm4_lockargs *argp, nlm4_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
365
nlm4_free_all_4(nlm4_notify *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
41
nlm_lock_1(struct nlm_lockargs *argp, nlm_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
50
nlm_cancel_1(struct nlm_cancargs *argp, nlm_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
59
nlm_unlock_1(struct nlm_unlockargs *argp, nlm_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
68
nlm_granted_1(struct nlm_testargs *argp, nlm_res *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
77
nlm_test_msg_1(struct nlm_testargs *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
86
nlm_lock_msg_1(struct nlm_lockargs *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_clnt.c
95
nlm_cancel_msg_1(struct nlm_cancargs *argp, void *clnt_res, CLIENT *clnt, struct rpc_callextra *ext, struct timeval timo)
sys/fs/nfs/nlm/nlm_prot_impl.c
1032
CLIENT *client;
sys/fs/nfs/nlm/nlm_prot_impl.c
1263
CLIENT *
sys/fs/nfs/nlm/nlm_prot_impl.c
1267
CLIENT *client;
sys/fs/nfs/nlm/nlm_prot_impl.c
166
static CLIENT *nlm_nsm;
sys/fs/nfs/nlm/nlm_prot_impl.c
1864
CLIENT **rpcp)
sys/fs/nfs/nlm/nlm_prot_impl.c
1962
bool_t monitor, CLIENT **rpcp)
sys/fs/nfs/nlm/nlm_prot_impl.c
2022
CLIENT *client;
sys/fs/nfs/nlm/nlm_prot_impl.c
2151
CLIENT **rpcp)
sys/fs/nfs/nlm/nlm_prot_impl.c
224
CLIENT *af_rpc; /* (c) rpc client to send message */
sys/fs/nfs/nlm/nlm_prot_impl.c
2241
CLIENT **rpcp)
sys/fs/nfs/nlm/nlm_prot_impl.c
2304
CLIENT **rpcp)
sys/fs/nfs/nlm/nlm_prot_impl.c
241
CLIENT *nr_client; /* (l) RPC client handle */
sys/fs/nfs/nlm/nlm_prot_impl.c
353
static CLIENT *
sys/fs/nfs/nlm/nlm_prot_impl.c
360
CLIENT *rpcb;
sys/fs/nfs/nlm/nlm_prot_server.c
237
CLIENT *rpc;
sys/fs/nfs/nlm/nlm_prot_server.c
269
CLIENT *rpc;
sys/fs/nfs/nlm/nlm_prot_server.c
299
CLIENT *rpc;
sys/fs/nfs/nlm/nlm_prot_server.c
327
CLIENT *rpc;
sys/fs/nfs/nlm/nlm_prot_server.c
353
CLIENT *rpc;
sys/fs/nfs/nlm/nlm_prot_server.c
558
CLIENT *rpc;
sys/fs/nfs/nlm/nlm_prot_server.c
576
CLIENT *rpc;
sys/fs/nfs/nlm/nlm_prot_server.c
594
CLIENT *rpc;
sys/fs/nfs/nlm/nlm_prot_server.c
612
CLIENT *rpc;
sys/fs/nfs/nlm/nlm_prot_server.c
630
CLIENT *rpc;
sys/fs/nfs/nlm/sm_inter.h
80
extern struct sm_stat_res * sm_stat_1(struct sm_name *, CLIENT *);
sys/fs/nfs/nlm/sm_inter.h
83
extern struct sm_stat_res * sm_mon_1(struct mon *, CLIENT *);
sys/fs/nfs/nlm/sm_inter.h
86
extern struct sm_stat * sm_unmon_1(struct mon_id *, CLIENT *);
sys/fs/nfs/nlm/sm_inter.h
89
extern struct sm_stat * sm_unmon_all_1(struct my_id *, CLIENT *);
sys/fs/nfs/nlm/sm_inter.h
92
extern void * sm_simu_crash_1(void *, CLIENT *);
sys/fs/nfs/nlm/sm_inter.h
95
extern void * sm_notify_1(struct stat_chge *, CLIENT *);
tests/lib/libc/rpc/t_rpc.c
134
CLIENT *clnt;
tests/lib/libc/rpc/t_rpc.c
170
CLIENT *clnt;
tests/lib/libc/rpc/t_rpc.c
65
CLIENT *clnt;
usr.bin/chpass/pw_yp.c
112
CLIENT *client;
usr.bin/eject/am_glue.c
46
static CLIENT *clnt;
usr.bin/eject/am_glue.c
61
CLIENT *cl;
usr.bin/passwd/yp_passwd.c
226
CLIENT *client;
usr.bin/passwd/yp_passwd.c
387
CLIENT *client;
usr.bin/rpcinfo/rpcinfo.c
1252
static CLIENT *
usr.bin/rpcinfo/rpcinfo.c
1256
CLIENT *client;
usr.bin/rpcinfo/rpcinfo.c
1288
CLIENT *client;
usr.bin/rpcinfo/rpcinfo.c
133
static CLIENT *clnt_com_create(struct sockaddr_in *, rpcprog_t, rpcvers_t,
usr.bin/rpcinfo/rpcinfo.c
1387
CLIENT *client;
usr.bin/rpcinfo/rpcinfo.c
143
static CLIENT *clnt_addr_create(const char *, const struct netconfig *,
usr.bin/rpcinfo/rpcinfo.c
145
static CLIENT *clnt_rpcbind_create(const char *, rpcvers_t, struct netbuf **);
usr.bin/rpcinfo/rpcinfo.c
146
static CLIENT *getclnthandle(const char *, const struct netconfig *,
usr.bin/rpcinfo/rpcinfo.c
148
static CLIENT *local_rpcb(rpcprog_t, rpcvers_t);
usr.bin/rpcinfo/rpcinfo.c
149
static int pstatus(CLIENT *, rpcprog_t, rpcvers_t);
usr.bin/rpcinfo/rpcinfo.c
1567
pstatus(CLIENT *client, rpcprog_t prog, rpcvers_t vers)
usr.bin/rpcinfo/rpcinfo.c
1589
static CLIENT *
usr.bin/rpcinfo/rpcinfo.c
1598
CLIENT *clnt = NULL;
usr.bin/rpcinfo/rpcinfo.c
1621
static CLIENT*
usr.bin/rpcinfo/rpcinfo.c
1627
CLIENT *client = NULL;
usr.bin/rpcinfo/rpcinfo.c
315
static CLIENT *
usr.bin/rpcinfo/rpcinfo.c
337
static CLIENT *
usr.bin/rpcinfo/rpcinfo.c
341
CLIENT *clnt;
usr.bin/rpcinfo/rpcinfo.c
374
CLIENT *client;
usr.bin/rpcinfo/rpcinfo.c
473
CLIENT *client;
usr.bin/rpcinfo/rpcinfo.c
685
CLIENT *client = NULL;
usr.bin/rpcinfo/rpcinfo.c
899
CLIENT *client;
usr.bin/rpcinfo/rpcinfo.c
998
CLIENT *client;
usr.bin/rup/rup.c
289
CLIENT *rstat_clnt;
usr.bin/rusers/rusers.c
229
CLIENT *rusers_clnt;
usr.bin/rwall/rwall.c
105
CLIENT *cl;
usr.bin/showmount/showmount.c
240
CLIENT *client;
usr.bin/ypwhich/ypwhich.c
197
static CLIENT *
usr.bin/ypwhich/ypwhich.c
218
CLIENT *ypbind;
usr.bin/ypwhich/ypwhich.c
278
CLIENT *ypserv;
usr.bin/ypwhich/ypwhich.c
86
static CLIENT *mkclient(struct sockaddr_in *, unsigned long, unsigned long,
usr.sbin/rbootd/conf.c
88
CLIENT *Clients = NULL; /* list of addrs we'll accept */
usr.sbin/rbootd/defs.h
144
extern CLIENT *Clients; /* list of addrs we'll accept */
usr.sbin/rbootd/defs.h
162
CLIENT *FindClient(RMPCONN *);
usr.sbin/rbootd/defs.h
169
CLIENT *NewClient(u_int8_t *);
usr.sbin/rbootd/defs.h
174
void ProcessPacket(RMPCONN *, CLIENT *);
usr.sbin/rbootd/parseconf.c
87
CLIENT *client;
usr.sbin/rbootd/rbootd.c
222
CLIENT *client;
usr.sbin/rbootd/rbootd.c
307
CLIENT *
usr.sbin/rbootd/rbootd.c
310
CLIENT *ctmp;
usr.sbin/rbootd/rmpproto.c
88
ProcessPacket(RMPCONN *rconn, CLIENT *client)
usr.sbin/rbootd/utils.c
272
CLIENT *
usr.sbin/rbootd/utils.c
275
CLIENT *ctmp;
usr.sbin/rbootd/utils.c
277
if ((ctmp = (CLIENT *) malloc(sizeof(CLIENT))) == NULL) {
usr.sbin/rbootd/utils.c
283
memset(ctmp, 0, sizeof(CLIENT));
usr.sbin/rbootd/utils.c
307
CLIENT *ctmp;
usr.sbin/rpc.bootparamd/test.c
49
bootparamproc_whoami_1(bp_whoami_arg *argp, CLIENT *clnt)
usr.sbin/rpc.bootparamd/test.c
68
CLIENT *cli;
usr.sbin/rpc.lockd/lock_proc.c
118
static CLIENT *clnt_cache_ptr[CLIENT_CACHE_SIZE];
usr.sbin/rpc.lockd/lock_proc.c
150
CLIENT *
usr.sbin/rpc.lockd/lock_proc.c
153
CLIENT *client;
usr.sbin/rpc.lockd/lock_proc.c
268
CLIENT *cli;
usr.sbin/rpc.lockd/lock_proc.c
296
CLIENT *cli;
usr.sbin/rpc.lockd/lock_proc.c
397
CLIENT *cli;
usr.sbin/rpc.lockd/lock_proc.c
842
CLIENT *cli;
usr.sbin/rpc.lockd/lockd_lock.c
613
CLIENT *cli;
usr.sbin/rpc.lockd/lockd_lock.h
20
CLIENT *get_client(struct sockaddr *, rpcvers_t);
usr.sbin/rpc.lockd/test.c
104
nlm_test_msg_1(struct nlm_testargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
120
nlm_lock_msg_1(struct nlm_lockargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
137
nlm_cancel_msg_1(struct nlm_cancargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
153
nlm_unlock_msg_1(struct nlm_unlockargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
169
nlm_granted_msg_1(struct nlm_testargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
185
nlm_test_res_1(nlm_testres *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
201
nlm_lock_res_1(nlm_res *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
217
nlm_cancel_res_1(nlm_res *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
23
nlm_test_1(struct nlm_testargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
233
nlm_unlock_res_1(nlm_res *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
249
nlm_granted_res_1(nlm_res *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
265
nlm_share_3(nlm_shareargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
281
nlm_unshare_3(nlm_shareargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
297
nlm_nm_lock_3(nlm_lockargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
313
nlm_free_all_3(nlm_notify *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
331
CLIENT *cli;
usr.sbin/rpc.lockd/test.c
38
nlm_lock_1(struct nlm_lockargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
56
nlm_cancel_1(struct nlm_cancargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
72
nlm_unlock_1(struct nlm_unlockargs *argp, CLIENT *clnt)
usr.sbin/rpc.lockd/test.c
88
nlm_granted_1(struct nlm_testargs *argp, CLIENT *clnt)
usr.sbin/rpc.pcnfsd/pcnfsd_test.c
10
CLIENT *cl2;
usr.sbin/rpc.pcnfsd/pcnfsd_test.c
9
CLIENT *cl;
usr.sbin/rpc.statd/stat_proc.c
303
CLIENT *cli;
usr.sbin/rpc.statd/statd.c
562
CLIENT *cli;
usr.sbin/rpc.statd/test.c
17
sm_stat_1(struct sm_name *argp, CLIENT *clnt)
usr.sbin/rpc.statd/test.c
30
sm_mon_1(struct mon *argp, CLIENT *clnt)
usr.sbin/rpc.statd/test.c
43
sm_unmon_1(struct mon_id *argp, CLIENT *clnt)
usr.sbin/rpc.statd/test.c
56
sm_unmon_all_1(struct my_id *argp, CLIENT *clnt)
usr.sbin/rpc.statd/test.c
69
sm_simu_crash_1(void *argp, CLIENT *clnt)
usr.sbin/rpc.statd/test.c
84
CLIENT *cli;
usr.sbin/spray/spray.c
66
CLIENT *cl;
usr.sbin/yppoll/yppoll.c
147
static CLIENT *
usr.sbin/yppoll/yppoll.c
170
CLIENT *client;
usr.sbin/yppoll/yppoll.c
81
static CLIENT *mkclient(struct sockaddr_in *, unsigned long, unsigned long,
usr.sbin/ypserv/common/yplib_host.c
105
CLIENT *
usr.sbin/ypserv/common/yplib_host.c
110
static CLIENT *client;
usr.sbin/ypserv/common/yplib_host.c
127
yp_match_host(CLIENT *client, char *indomain, char *inmap, const char *inkey,
usr.sbin/ypserv/common/yplib_host.c
160
yp_first_host(CLIENT *client, char *indomain, char *inmap, char **outkey,
usr.sbin/ypserv/common/yplib_host.c
194
yp_next_host(CLIENT *client, char *indomain, char *inmap, char *inkey,
usr.sbin/ypserv/common/yplib_host.c
231
yp_all_host(CLIENT *client, const char *indomain, const char *inmap,
usr.sbin/ypserv/common/yplib_host.c
250
yp_order_host(CLIENT *client, char *indomain, char *inmap, int *outorder)
usr.sbin/ypserv/common/yplib_host.c
272
yp_master_host(CLIENT *client, char *indomain, char *inmap, char **outname)
usr.sbin/ypserv/common/yplib_host.c
296
yp_maplist_host(CLIENT *client, char *indomain, struct ypmaplist **outmaplist)
usr.sbin/ypserv/common/yplib_host.c
61
CLIENT *
usr.sbin/ypserv/common/yplib_host.c
68
static CLIENT *client;
usr.sbin/ypserv/common/yplib_host.h
32
int yp_match_host(CLIENT *client, char *indomain, char *inmap,
usr.sbin/ypserv/common/yplib_host.h
35
int yp_first_host(CLIENT *client, char *indomain, char *inmap,
usr.sbin/ypserv/common/yplib_host.h
38
int yp_next_host(CLIENT *client, char *indomain, char *inmap,
usr.sbin/ypserv/common/yplib_host.h
41
int yp_master_host(CLIENT *client,
usr.sbin/ypserv/common/yplib_host.h
43
int yp_order_host(CLIENT *client,
usr.sbin/ypserv/common/yplib_host.h
45
int yp_all_host(CLIENT *client, const char *indomain, const char *inmap,
usr.sbin/ypserv/common/yplib_host.h
47
int yp_maplist_host(CLIENT *client, char *indomain,
usr.sbin/ypserv/common/yplib_host.h
49
CLIENT *yp_bind_local(u_int program, u_int version);
usr.sbin/ypserv/common/yplib_host.h
50
CLIENT *yp_bind_host(char *server, u_int program, u_int version,
usr.sbin/ypserv/yppush/yppush.c
113
CLIENT *ypserv;
usr.sbin/ypserv/yppush/yppush.c
309
CLIENT *ypserv;
usr.sbin/ypserv/yppush/yppush.h
42
void *yppushproc_null_1(void *, CLIENT *);
usr.sbin/ypserv/yppush/yppush.h
44
void *yppushproc_xfrresp_1(struct yppushresp_xfr *, CLIENT *);
usr.sbin/ypserv/ypxfr/ypxfr.c
381
get_remote_ordernum(CLIENT *client, char *domain, char *map,
usr.sbin/ypserv/ypxfr/ypxfr.c
401
get_map(CLIENT *client, char *domain, char *map,
usr.sbin/ypserv/ypxfr/ypxfr.c
476
add_master(CLIENT *client, char *domain, char *map, DBM *ldb)
usr.sbin/ypserv/ypxfr/ypxfr.c
508
add_interdomain(CLIENT *client, char *domain, char *map, DBM *ldb)
usr.sbin/ypserv/ypxfr/ypxfr.c
545
add_secure(CLIENT *client, char *domain, char *map, DBM *ldb)
usr.sbin/ypserv/ypxfr/ypxfr.c
582
send_clear(CLIENT *client)
usr.sbin/ypserv/ypxfr/ypxfr.c
604
send_reply(CLIENT *client, int status, int tid)
usr.sbin/ypserv/ypxfr/ypxfr.c
65
int get_remote_ordernum(CLIENT *, char *, char *, u_int, u_int *);
usr.sbin/ypserv/ypxfr/ypxfr.c
66
void get_map(CLIENT *, char *, char *, struct ypall_callback *);
usr.sbin/ypserv/ypxfr/ypxfr.c
71
int add_master(CLIENT *, char *, char *, DBM *);
usr.sbin/ypserv/ypxfr/ypxfr.c
72
int add_interdomain(CLIENT *, char *, char *, DBM *);
usr.sbin/ypserv/ypxfr/ypxfr.c
73
int add_secure(CLIENT *, char *, char *, DBM *);
usr.sbin/ypserv/ypxfr/ypxfr.c
74
int send_clear(CLIENT *);
usr.sbin/ypserv/ypxfr/ypxfr.c
75
int send_reply(CLIENT *, int, int);
usr.sbin/ypserv/ypxfr/ypxfr.c
92
CLIENT *client;
usr.sbin/ypset/ypset.c
114
CLIENT *client;