Symbol: SVCXPRT
include/rpc/svc.h
135
SVCXPRT *rq_xprt; /* associated transport */
include/rpc/svc.h
201
extern bool_t svc_reg(SVCXPRT *, const rpcprog_t, const rpcvers_t,
include/rpc/svc.h
202
void (*)(struct svc_req *, SVCXPRT *),
include/rpc/svc.h
225
extern bool_t xprt_register (SVCXPRT *);
include/rpc/svc.h
235
extern void xprt_unregister (SVCXPRT *);
include/rpc/svc.h
266
extern bool_t svc_sendreply (SVCXPRT *, xdrproc_t, const char *);
include/rpc/svc.h
267
extern void svcerr_decode (SVCXPRT *);
include/rpc/svc.h
268
extern void svcerr_weakauth (SVCXPRT *);
include/rpc/svc.h
269
extern void svcerr_noproc (SVCXPRT *);
include/rpc/svc.h
270
extern void svcerr_progvers (SVCXPRT *, rpcvers_t, rpcvers_t);
include/rpc/svc.h
271
extern void svcerr_auth (SVCXPRT *, enum auth_stat);
include/rpc/svc.h
272
extern void svcerr_noprog (SVCXPRT *);
include/rpc/svc.h
273
extern void svcerr_systemerr(SVCXPRT *);
include/rpc/svc.h
361
extern int svc_create(void (*)(struct svc_req *, SVCXPRT *),
include/rpc/svc.h
376
extern SVCXPRT *svc_tp_create(void (*)(struct svc_req *, SVCXPRT *),
include/rpc/svc.h
390
extern SVCXPRT *svc_tli_create(const int, const struct netconfig *,
include/rpc/svc.h
405
extern SVCXPRT *svc_vc_create(const int, const unsigned int,
include/rpc/svc.h
413
extern SVCXPRT *svc_dg_create(const int, const unsigned int,
include/rpc/svc.h
426
extern SVCXPRT *svc_fd_create(const int, const unsigned int,
include/rpc/svc.h
437
extern SVCXPRT *svc_raw_create(void);
include/rpc/svc.h
442
int svc_dg_enablecache(SVCXPRT *, const unsigned int);
include/rpc/svc_soc.h
105
extern SVCXPRT *svctcp_create(int, unsigned int, unsigned int);
include/rpc/svc_soc.h
112
extern SVCXPRT *svcfd_create(int, unsigned int, unsigned int);
include/rpc/svc_soc.h
67
extern bool_t svc_register(SVCXPRT *, unsigned long, unsigned long,
include/rpc/svc_soc.h
68
void (*)(struct svc_req *, SVCXPRT *), int);
include/rpc/svc_soc.h
87
extern SVCXPRT *svcraw_create(void);
include/rpc/svc_soc.h
95
extern SVCXPRT *svcudp_create(int);
include/rpc/svc_soc.h
96
extern SVCXPRT *svcudp_bufcreate(int, unsigned int, unsigned int);
include/rpc/svc_soc.h
97
extern int svcudp_enablecache(SVCXPRT *, unsigned long);
lib/libc/rpc/rpc_internal.h
38
void __xprt_unregister_unlocked(SVCXPRT *);
lib/libc/rpc/rpc_internal.h
64
extern SVCXPRT **__svc_xports;
lib/libc/rpc/rpc_soc.c
101
static SVCXPRT *svc_com_create(int, u_int, u_int, const char *);
lib/libc/rpc/rpc_soc.c
225
static SVCXPRT *
lib/libc/rpc/rpc_soc.c
229
SVCXPRT *svc;
lib/libc/rpc/rpc_soc.c
283
SVCXPRT *
lib/libc/rpc/rpc_soc.c
289
SVCXPRT *
lib/libc/rpc/rpc_soc.c
295
SVCXPRT *
lib/libc/rpc/rpc_soc.c
302
SVCXPRT *
lib/libc/rpc/rpc_soc.c
308
SVCXPRT *
lib/libc/rpc/svc.c
116
void (*sc_dispatch)(struct svc_req *, SVCXPRT *);
lib/libc/rpc/svc.c
121
static void __xprt_do_unregister(SVCXPRT *xprt, bool_t dolock);
lib/libc/rpc/svc.c
129
SVCXPRT **oldxports, **newxports;
lib/libc/rpc/svc.c
151
newxports = realloc(oldxports, newmaxxports * sizeof(SVCXPRT *));
lib/libc/rpc/svc.c
158
(newmaxxports - oldmaxxports) * sizeof(SVCXPRT *));
lib/libc/rpc/svc.c
171
xprt_register(SVCXPRT *xprt)
lib/libc/rpc/svc.c
197
xprt_unregister(SVCXPRT *xprt)
lib/libc/rpc/svc.c
203
__xprt_unregister_unlocked(SVCXPRT *xprt)
lib/libc/rpc/svc.c
212
__xprt_do_unregister(SVCXPRT *xprt, bool_t dolock)
lib/libc/rpc/svc.c
248
svc_reg(SVCXPRT *xprt, const rpcprog_t prog, const rpcvers_t vers,
lib/libc/rpc/svc.c
249
void (*dispatch)(struct svc_req *, SVCXPRT *),
lib/libc/rpc/svc.c
297
if ((((SVCXPRT *) xprt)->xp_netid = strdup(netid)) == NULL) {
lib/libc/rpc/svc.c
316
&((SVCXPRT *) xprt)->xp_ltaddr);
lib/libc/rpc/svc.c
357
svc_register(SVCXPRT *xprt, u_long prog, u_long vers,
lib/libc/rpc/svc.c
358
void (*dispatch)(struct svc_req *, SVCXPRT *), int protocol)
lib/libc/rpc/svc.c
443
svc_sendreply(SVCXPRT *xprt, xdrproc_t xdr_results, const char *xdr_location)
lib/libc/rpc/svc.c
462
svcerr_noproc(SVCXPRT *xprt)
lib/libc/rpc/svc.c
479
svcerr_decode(SVCXPRT *xprt)
lib/libc/rpc/svc.c
496
svcerr_systemerr(SVCXPRT *xprt)
lib/libc/rpc/svc.c
517
__svc_versquiet_on(SVCXPRT *xprt)
lib/libc/rpc/svc.c
528
__svc_versquiet_off(SVCXPRT *xprt)
lib/libc/rpc/svc.c
539
svc_versquiet(SVCXPRT *xprt)
lib/libc/rpc/svc.c
545
__svc_versquiet_get(SVCXPRT *xprt)
lib/libc/rpc/svc.c
558
svcerr_auth(SVCXPRT *xprt, enum auth_stat why)
lib/libc/rpc/svc.c
575
svcerr_weakauth(SVCXPRT *xprt)
lib/libc/rpc/svc.c
587
svcerr_noprog(SVCXPRT *xprt)
lib/libc/rpc/svc.c
604
svcerr_progvers(SVCXPRT *xprt, rpcvers_t low_vers, rpcvers_t high_vers)
lib/libc/rpc/svc.c
677
SVCXPRT *xprt;
lib/libc/rpc/svc.c
94
SVCXPRT **__svc_xports;
lib/libc/rpc/svc_dg.c
109
SVCXPRT *
lib/libc/rpc/svc_dg.c
112
SVCXPRT *xprt;
lib/libc/rpc/svc_dg.c
132
xprt = mem_alloc(sizeof (SVCXPRT));
lib/libc/rpc/svc_dg.c
135
memset(xprt, 0, sizeof (SVCXPRT));
lib/libc/rpc/svc_dg.c
171
(void) mem_free(xprt, sizeof (SVCXPRT));
lib/libc/rpc/svc_dg.c
178
svc_dg_stat(SVCXPRT *xprt)
lib/libc/rpc/svc_dg.c
184
svc_dg_recv(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_dg.c
238
svc_dg_reply(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_dg.c
268
svc_dg_getargs(SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr)
lib/libc/rpc/svc_dg.c
274
svc_dg_freeargs(SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr)
lib/libc/rpc/svc_dg.c
286
svc_dg_destroy(SVCXPRT *xprt)
lib/libc/rpc/svc_dg.c
306
(void) mem_free(xprt, sizeof (SVCXPRT));
lib/libc/rpc/svc_dg.c
311
svc_dg_control(SVCXPRT *xprt, const u_int rq, void *in)
lib/libc/rpc/svc_dg.c
317
svc_dg_ops(SVCXPRT *xprt)
lib/libc/rpc/svc_dg.c
417
svc_dg_enablecache(SVCXPRT *transp, u_int size)
lib/libc/rpc/svc_dg.c
476
cache_set(SVCXPRT *xprt, size_t replylen)
lib/libc/rpc/svc_dg.c
570
cache_get(SVCXPRT *xprt, struct rpc_msg *msg, char **replyp, size_t *replylenp)
lib/libc/rpc/svc_dg.c
84
static void svc_dg_ops(SVCXPRT *);
lib/libc/rpc/svc_dg.c
85
static enum xprt_stat svc_dg_stat(SVCXPRT *);
lib/libc/rpc/svc_dg.c
86
static bool_t svc_dg_recv(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_dg.c
87
static bool_t svc_dg_reply(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_dg.c
88
static bool_t svc_dg_getargs(SVCXPRT *, xdrproc_t, caddr_t);
lib/libc/rpc/svc_dg.c
89
static bool_t svc_dg_freeargs(SVCXPRT *, xdrproc_t, caddr_t);
lib/libc/rpc/svc_dg.c
90
static void svc_dg_destroy(SVCXPRT *);
lib/libc/rpc/svc_dg.c
91
static bool_t svc_dg_control(SVCXPRT *, const u_int, void *);
lib/libc/rpc/svc_dg.c
92
static int cache_get(SVCXPRT *, struct rpc_msg *, char **, size_t *);
lib/libc/rpc/svc_dg.c
93
static void cache_set(SVCXPRT *, size_t);
lib/libc/rpc/svc_generic.c
101
SVCXPRT *xprt;
lib/libc/rpc/svc_generic.c
159
SVCXPRT *
lib/libc/rpc/svc_generic.c
161
void (*dispatch)(struct svc_req *, SVCXPRT *),
lib/libc/rpc/svc_generic.c
166
SVCXPRT *xprt;
lib/libc/rpc/svc_generic.c
197
SVCXPRT *
lib/libc/rpc/svc_generic.c
205
SVCXPRT *xprt = NULL; /* service handle */
lib/libc/rpc/svc_generic.c
77
extern int __svc_vc_setflag(SVCXPRT *, int);
lib/libc/rpc/svc_generic.c
90
void (*dispatch)(struct svc_req *, SVCXPRT *),
lib/libc/rpc/svc_generic.c
96
SVCXPRT *xprt; /* Server handle */
lib/libc/rpc/svc_raw.c
133
svc_raw_stat(SVCXPRT *xprt) /* args needed to satisfy ANSI-C typechecking */
lib/libc/rpc/svc_raw.c
140
svc_raw_recv(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_raw.c
164
svc_raw_reply(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_raw.c
189
svc_raw_getargs(SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr)
lib/libc/rpc/svc_raw.c
205
svc_raw_freeargs(SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr)
lib/libc/rpc/svc_raw.c
225
svc_raw_destroy(SVCXPRT *xprt)
lib/libc/rpc/svc_raw.c
231
svc_raw_control(SVCXPRT *xprt, const u_int rq, void *in)
lib/libc/rpc/svc_raw.c
237
svc_raw_ops(SVCXPRT *xprt)
lib/libc/rpc/svc_raw.c
79
SVCXPRT server;
lib/libc/rpc/svc_raw.c
84
static enum xprt_stat svc_raw_stat(SVCXPRT *);
lib/libc/rpc/svc_raw.c
85
static bool_t svc_raw_recv(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_raw.c
86
static bool_t svc_raw_reply(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_raw.c
87
static bool_t svc_raw_getargs(SVCXPRT *, xdrproc_t, caddr_t);
lib/libc/rpc/svc_raw.c
88
static bool_t svc_raw_freeargs(SVCXPRT *, xdrproc_t, caddr_t);
lib/libc/rpc/svc_raw.c
89
static void svc_raw_destroy(SVCXPRT *);
lib/libc/rpc/svc_raw.c
90
static void svc_raw_ops(SVCXPRT *);
lib/libc/rpc/svc_raw.c
91
static bool_t svc_raw_control(SVCXPRT *, const u_int, void *);
lib/libc/rpc/svc_raw.c
95
SVCXPRT *
lib/libc/rpc/svc_simple.c
134
SVCXPRT *svcxprt;
lib/libc/rpc/svc_simple.c
252
universal(struct svc_req *rqstp, SVCXPRT *transp)
lib/libc/rpc/svc_simple.c
73
static void universal(struct svc_req *, SVCXPRT *);
lib/libc/rpc/svc_simple.c
80
SVCXPRT *p_transp;
lib/libc/rpc/svc_vc.c
132
SVCXPRT *
lib/libc/rpc/svc_vc.c
135
SVCXPRT *xprt;
lib/libc/rpc/svc_vc.c
153
xprt = mem_alloc(sizeof(SVCXPRT));
lib/libc/rpc/svc_vc.c
205
SVCXPRT *
lib/libc/rpc/svc_vc.c
210
SVCXPRT *ret;
lib/libc/rpc/svc_vc.c
259
static SVCXPRT *
lib/libc/rpc/svc_vc.c
262
SVCXPRT *xprt;
lib/libc/rpc/svc_vc.c
269
xprt = mem_alloc(sizeof(SVCXPRT));
lib/libc/rpc/svc_vc.c
296
mem_free(xprt, sizeof(SVCXPRT));
lib/libc/rpc/svc_vc.c
302
rendezvous_request(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_vc.c
310
SVCXPRT *newxprt;
lib/libc/rpc/svc_vc.c
381
rendezvous_stat(SVCXPRT *xprt)
lib/libc/rpc/svc_vc.c
388
svc_vc_destroy(SVCXPRT *xprt)
lib/libc/rpc/svc_vc.c
397
__svc_vc_dodestroy(SVCXPRT *xprt)
lib/libc/rpc/svc_vc.c
424
mem_free(xprt, sizeof(SVCXPRT));
lib/libc/rpc/svc_vc.c
429
svc_vc_control(SVCXPRT *xprt, const u_int rq, void *in)
lib/libc/rpc/svc_vc.c
436
svc_vc_rendezvous_control(SVCXPRT *xprt, const u_int rq, void *in)
lib/libc/rpc/svc_vc.c
466
SVCXPRT *xprt;
lib/libc/rpc/svc_vc.c
478
xprt = (SVCXPRT *)(void *)xprtp;
lib/libc/rpc/svc_vc.c
569
SVCXPRT *xprt;
lib/libc/rpc/svc_vc.c
574
xprt = (SVCXPRT *)(void *)xprtp;
lib/libc/rpc/svc_vc.c
609
svc_vc_stat(SVCXPRT *xprt)
lib/libc/rpc/svc_vc.c
625
svc_vc_recv(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_vc.c
653
svc_vc_getargs(SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr)
lib/libc/rpc/svc_vc.c
664
svc_vc_freeargs(SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr)
lib/libc/rpc/svc_vc.c
678
svc_vc_reply(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_vc.c
698
svc_vc_ops(SVCXPRT *xprt)
lib/libc/rpc/svc_vc.c
721
svc_vc_rendezvous_ops(SVCXPRT *xprt)
lib/libc/rpc/svc_vc.c
731
(bool_t (*)(SVCXPRT *, xdrproc_t, caddr_t))abort;
lib/libc/rpc/svc_vc.c
733
(bool_t (*)(SVCXPRT *, struct rpc_msg *))abort;
lib/libc/rpc/svc_vc.c
735
(bool_t (*)(SVCXPRT *, xdrproc_t, caddr_t))abort;
lib/libc/rpc/svc_vc.c
754
SVCXPRT *xprt, *least_active;
lib/libc/rpc/svc_vc.c
81
static SVCXPRT *makefd_xprt(int, u_int, u_int);
lib/libc/rpc/svc_vc.c
82
static bool_t rendezvous_request(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_vc.c
83
static enum xprt_stat rendezvous_stat(SVCXPRT *);
lib/libc/rpc/svc_vc.c
84
static void svc_vc_destroy(SVCXPRT *);
lib/libc/rpc/svc_vc.c
85
static void __svc_vc_dodestroy(SVCXPRT *);
lib/libc/rpc/svc_vc.c
88
static enum xprt_stat svc_vc_stat(SVCXPRT *);
lib/libc/rpc/svc_vc.c
89
static bool_t svc_vc_recv(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_vc.c
90
static bool_t svc_vc_getargs(SVCXPRT *, xdrproc_t, caddr_t);
lib/libc/rpc/svc_vc.c
91
static bool_t svc_vc_freeargs(SVCXPRT *, xdrproc_t, caddr_t);
lib/libc/rpc/svc_vc.c
92
static bool_t svc_vc_reply(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_vc.c
93
static void svc_vc_rendezvous_ops(SVCXPRT *);
lib/libc/rpc/svc_vc.c
94
static void svc_vc_ops(SVCXPRT *);
lib/libc/rpc/svc_vc.c
95
static bool_t svc_vc_control(SVCXPRT *, const u_int, void *);
lib/libc/rpc/svc_vc.c
96
static bool_t svc_vc_rendezvous_control(SVCXPRT *, const u_int, void *);
libexec/rpc.rquotad/rquotad.c
116
rquota_service(struct svc_req *request, SVCXPRT *transp)
libexec/rpc.rquotad/rquotad.c
137
ext_rquota_service(struct svc_req *request, SVCXPRT *transp)
libexec/rpc.rquotad/rquotad.c
211
sendquota(struct svc_req *request, int vers, SVCXPRT *transp)
libexec/rpc.rquotad/rquotad.c
37
static void rquota_service(struct svc_req *request, SVCXPRT *transp);
libexec/rpc.rquotad/rquotad.c
38
static void ext_rquota_service(struct svc_req *request, SVCXPRT *transp);
libexec/rpc.rquotad/rquotad.c
39
static void sendquota(struct svc_req *request, int vers, SVCXPRT *transp);
libexec/rpc.rquotad/rquotad.c
56
SVCXPRT *transp;
libexec/rpc.rstatd/rstat_proc.c
103
void rstat_service(struct svc_req *, SVCXPRT *);
libexec/rpc.rstatd/rstat_proc.c
292
rstat_service(struct svc_req *rqstp, SVCXPRT *transp)
libexec/rpc.rstatd/rstatd.c
52
extern void rstat_service(struct svc_req *, SVCXPRT *);
libexec/rpc.rstatd/rstatd.c
70
SVCXPRT *transp;
libexec/rpc.rusersd/rusers_proc.c
286
rusers_service(struct svc_req *rqstp, SVCXPRT *transp)
libexec/rpc.rusersd/rusers_proc.h
27
void rusers_service(struct svc_req *, SVCXPRT *);
libexec/rpc.rusersd/rusersd.c
66
SVCXPRT *transp;
libexec/rpc.rwalld/rwalld.c
149
wallprog_1(struct svc_req *rqstp, SVCXPRT *transp)
libexec/rpc.rwalld/rwalld.c
65
static void wallprog_1(struct svc_req *, SVCXPRT *);
libexec/rpc.rwalld/rwalld.c
78
SVCXPRT *transp;
libexec/rpc.sprayd/sprayd.c
122
spray_service(struct svc_req *rqstp, SVCXPRT *transp)
libexec/rpc.sprayd/sprayd.c
45
static void spray_service(struct svc_req *, SVCXPRT *);
libexec/rpc.sprayd/sprayd.c
69
SVCXPRT *transp;
sys/fs/nfs/client/nfs_clkrpc.c
176
SVCXPRT *xprt;
sys/fs/nfs/client/nfs_clkrpc.c
68
nfscb_program(struct svc_req *rqst, SVCXPRT *xprt)
sys/fs/nfs/common/nfs.h
607
SVCXPRT *nd_xprt; /* Server RPC handle */
sys/fs/nfs/common/nfs_commonkrpc.c
178
SVCXPRT *xprt;
sys/fs/nfs/common/nfsclstate.h
62
SVCXPRT *nfsess_xprt; /* For backchannel callback */
sys/fs/nfs/nlm/nlm_prot.h
334
extern int nlm_prog_1_freeresult(SVCXPRT *, xdrproc_t, caddr_t);
sys/fs/nfs/nlm/nlm_prot.h
349
extern int nlm_prog_3_freeresult(SVCXPRT *, xdrproc_t, caddr_t);
sys/fs/nfs/nlm/nlm_prot.h
409
extern int nlm_prog_4_freeresult(SVCXPRT *, xdrproc_t, caddr_t);
sys/fs/nfs/nlm/nlm_prot_impl.c
1426
extern void nlm_prog_0(struct svc_req *rqstp, SVCXPRT *transp);
sys/fs/nfs/nlm/nlm_prot_impl.c
1427
extern void nlm_prog_1(struct svc_req *rqstp, SVCXPRT *transp);
sys/fs/nfs/nlm/nlm_prot_impl.c
1428
extern void nlm_prog_3(struct svc_req *rqstp, SVCXPRT *transp);
sys/fs/nfs/nlm/nlm_prot_impl.c
1429
extern void nlm_prog_4(struct svc_req *rqstp, SVCXPRT *transp);
sys/fs/nfs/nlm/nlm_prot_impl.c
1437
static void (*dispatchers[])(struct svc_req *, SVCXPRT *) = {
sys/fs/nfs/nlm/nlm_prot_impl.c
1441
SVCXPRT **xprts;
sys/fs/nfs/nlm/nlm_prot_impl.c
1458
xprts = malloc(addr_count * sizeof(SVCXPRT *), M_NLM, M_WAITOK|M_ZERO);
sys/fs/nfs/nlm/nlm_prot_server.c
425
nlm_prog_1_freeresult(SVCXPRT *transp, xdrproc_t xdr_result, caddr_t result)
sys/fs/nfs/nlm/nlm_prot_server.c
507
nlm_prog_3_freeresult(SVCXPRT *transp, xdrproc_t xdr_result, caddr_t result)
sys/fs/nfs/nlm/nlm_prot_server.c
715
nlm_prog_4_freeresult(SVCXPRT *transp, xdrproc_t xdr_result, caddr_t result)
sys/fs/nfs/nlm/nlm_prot_svc.c
252
nlm_prog_3(struct svc_req *rqstp, SVCXPRT *transp)
sys/fs/nfs/nlm/nlm_prot_svc.c
345
nlm_prog_4(struct svc_req *rqstp, SVCXPRT *transp)
sys/fs/nfs/nlm/nlm_prot_svc.c
44
void nlm_prog_0(struct svc_req *rqstp, SVCXPRT *transp);
sys/fs/nfs/nlm/nlm_prot_svc.c
45
void nlm_prog_1(struct svc_req *rqstp, SVCXPRT *transp);
sys/fs/nfs/nlm/nlm_prot_svc.c
46
void nlm_prog_3(struct svc_req *rqstp, SVCXPRT *transp);
sys/fs/nfs/nlm/nlm_prot_svc.c
47
void nlm_prog_4(struct svc_req *rqstp, SVCXPRT *transp);
sys/fs/nfs/nlm/nlm_prot_svc.c
50
nlm_prog_0(struct svc_req *rqstp, SVCXPRT *transp)
sys/fs/nfs/nlm/nlm_prot_svc.c
98
nlm_prog_1(struct svc_req *rqstp, SVCXPRT *transp)
sys/fs/nfs/nlm/sm_inter.h
78
extern void sm_prog_1(struct svc_req *rqstp, SVCXPRT *transp);
sys/fs/nfs/nlm/sm_inter.h
97
extern int sm_prog_1_freeresult(SVCXPRT *, xdrproc_t, caddr_t);
sys/fs/nfs/server/nfs_nfsdkrpc.c
108
static int nfs_proc(struct nfsrv_descript *, u_int32_t, SVCXPRT *xprt,
sys/fs/nfs/server/nfs_nfsdkrpc.c
120
nfssvc_program(struct svc_req *rqst, SVCXPRT *xprt)
sys/fs/nfs/server/nfs_nfsdkrpc.c
318
nfs_proc(struct nfsrv_descript *nd, u_int32_t xid, SVCXPRT *xprt,
sys/fs/nfs/server/nfs_nfsdkrpc.c
413
nfssvc_loss(SVCXPRT *xprt)
sys/fs/nfs/server/nfs_nfsdkrpc.c
431
SVCXPRT *xprt;
sys/fs/nfs/server/nfs_nfsdstate.c
5780
SVCXPRT *savxprt;
sys/fs/nfs/server/nfs_nfsdstate.c
6084
SVCXPRT *xprt;
tests/lib/libc/rpc/t_rpc.c
135
SVCXPRT *svc;
tests/lib/libc/rpc/t_rpc.c
97
server(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/mountd/mountd.c
210
static void mntsrv(struct svc_req *, SVCXPRT *);
usr.sbin/mountd/mountd.c
348
SVCXPRT *udptransp, *tcptransp, *udp6transp, *tcp6transp;
usr.sbin/mountd/mountd.c
572
mntsrv(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/rpc.bootparamd/bootparamd.c
56
extern void bootparamprog_1(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.bootparamd/bootparamd.c
78
SVCXPRT *transp;
usr.sbin/rpc.lockd/lockd.c
74
void nlm_prog_0(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.lockd/lockd.c
75
void nlm_prog_1(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.lockd/lockd.c
76
void nlm_prog_3(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.lockd/lockd.c
77
void nlm_prog_4(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.lockd/lockd.c
87
SVCXPRT *transp;
usr.sbin/rpc.statd/statd.h
116
void sm_prog_1(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.yppasswdd/extern.h
30
void make_passwd(yppasswd *, struct svc_req *, SVCXPRT *);
usr.sbin/rpc.yppasswdd/rpc.yppasswdd.c
136
yppasswddprog_1(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/rpc.yppasswdd/rpc.yppasswdd.c
56
void yppasswddprog_1(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.yppasswdd/rpc.yppasswdd.c
62
SVCXPRT *transp;
usr.sbin/rpc.yppasswdd/yppasswdd_mkpw.c
65
make_passwd(yppasswd *argp, struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/rpcbind/check_bound.c
169
mergeaddr(SVCXPRT *xprt, char *netid, char *uaddr, char *saddr)
usr.sbin/rpcbind/pmap_svc.c
168
pmapproc_change(struct svc_req *rqstp __unused, SVCXPRT *xprt, unsigned long op)
usr.sbin/rpcbind/pmap_svc.c
262
pmapproc_getport(struct svc_req *rqstp __unused, SVCXPRT *xprt)
usr.sbin/rpcbind/pmap_svc.c
343
pmapproc_dump(struct svc_req *rqstp __unused, SVCXPRT *xprt)
usr.sbin/rpcbind/pmap_svc.c
62
static bool_t pmapproc_change(struct svc_req *, SVCXPRT *, u_long);
usr.sbin/rpcbind/pmap_svc.c
63
static bool_t pmapproc_getport(struct svc_req *, SVCXPRT *);
usr.sbin/rpcbind/pmap_svc.c
64
static bool_t pmapproc_dump(struct svc_req *, SVCXPRT *);
usr.sbin/rpcbind/pmap_svc.c
70
pmap_service(struct svc_req *rqstp, SVCXPRT *xprt)
usr.sbin/rpcbind/rpcb_stat.c
201
SVCXPRT *xprt __unused, rpcvers_t versnum __unused)
usr.sbin/rpcbind/rpcb_svc.c
207
SVCXPRT *transp __unused, rpcvers_t versnum __unused)
usr.sbin/rpcbind/rpcb_svc.c
229
SVCXPRT *transp __unused, rpcvers_t versnum __unused)
usr.sbin/rpcbind/rpcb_svc.c
55
static void *rpcbproc_getaddr_3_local(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcb_svc.c
57
static void *rpcbproc_dump_3_local(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcb_svc.c
65
rpcb_service_3(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/rpcbind/rpcb_svc.c
77
void *(*local)(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcb_svc_4.c
262
rpcbproc_getaddr_4_local(void *arg, struct svc_req *rqstp, SVCXPRT *transp,
usr.sbin/rpcbind/rpcb_svc_4.c
292
rpcbproc_getversaddr_4_local(void *arg, struct svc_req *rqstp, SVCXPRT *transp,
usr.sbin/rpcbind/rpcb_svc_4.c
321
SVCXPRT *transp, rpcvers_t versnum __unused)
usr.sbin/rpcbind/rpcb_svc_4.c
450
SVCXPRT *xprt __unused, rpcvers_t versnum __unused)
usr.sbin/rpcbind/rpcb_svc_4.c
54
static void *rpcbproc_getaddr_4_local(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcb_svc_4.c
56
static void *rpcbproc_getversaddr_4_local(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcb_svc_4.c
58
static void *rpcbproc_getaddrlist_4_local(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcb_svc_4.c
61
static void *rpcbproc_dump_4_local(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcb_svc_4.c
69
rpcb_service_4(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/rpcbind/rpcb_svc_4.c
80
void *(*local)(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcb_svc_com.c
110
static SVCXPRT *find_rmtcallxprt_by_fd(int);
usr.sbin/rpcbind/rpcb_svc_com.c
120
static void xprt_set_caller(SVCXPRT *, struct finfo *);
usr.sbin/rpcbind/rpcb_svc_com.c
121
static void send_svcsyserr(SVCXPRT *, struct finfo *);
usr.sbin/rpcbind/rpcb_svc_com.c
1213
SVCXPRT *xprt;
usr.sbin/rpcbind/rpcb_svc_com.c
122
static void handle_reply(int, SVCXPRT *);
usr.sbin/rpcbind/rpcb_svc_com.c
1241
xprt_set_caller(SVCXPRT *xprt, struct finfo *fi)
usr.sbin/rpcbind/rpcb_svc_com.c
125
static char *getowner(SVCXPRT *, char *, size_t);
usr.sbin/rpcbind/rpcb_svc_com.c
1254
send_svcsyserr(SVCXPRT *xprt, struct finfo *fi)
usr.sbin/rpcbind/rpcb_svc_com.c
1264
handle_reply(int fd, SVCXPRT *xprt)
usr.sbin/rpcbind/rpcb_svc_com.c
134
rpcbproc_set_com(void *arg, struct svc_req *rqstp __unused, SVCXPRT *transp,
usr.sbin/rpcbind/rpcb_svc_com.c
1419
getowner(SVCXPRT *transp, char *owner, size_t ownersize)
usr.sbin/rpcbind/rpcb_svc_com.c
222
rpcbproc_unset_com(void *arg, struct svc_req *rqstp __unused, SVCXPRT *transp,
usr.sbin/rpcbind/rpcb_svc_com.c
321
SVCXPRT *transp, rpcvers_t rpcbversnum, rpcvers_t verstype)
usr.sbin/rpcbind/rpcb_svc_com.c
364
SVCXPRT *transp __unused, rpcvers_t rpcbversnum __unused)
usr.sbin/rpcbind/rpcb_svc_com.c
379
SVCXPRT *transp, rpcvers_t rpcbversnum __unused)
usr.sbin/rpcbind/rpcb_svc_com.c
406
SVCXPRT *transp, rpcvers_t rpcbversnum __unused)
usr.sbin/rpcbind/rpcb_svc_com.c
507
SVCXPRT *xprt;
usr.sbin/rpcbind/rpcb_svc_com.c
556
static SVCXPRT *
usr.sbin/rpcbind/rpcb_svc_com.c
609
rpcbproc_callit_com(struct svc_req *rqstp, SVCXPRT *transp,
usr.sbin/rpcbind/rpcb_svc_com.c
82
SVCXPRT *xprt;
usr.sbin/rpcbind/rpcbind.c
286
SVCXPRT *my_xprt;
usr.sbin/rpcbind/rpcbind.c
511
my_xprt = (SVCXPRT *)svc_tli_create(fd, nconf, &taddr,
usr.sbin/rpcbind/rpcbind.c
564
my_xprt = (SVCXPRT *)svc_tli_create(fd, nconf, &taddr,
usr.sbin/rpcbind/rpcbind.h
100
void *rpcbproc_getstat(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcbind.h
102
void rpcb_service_3(struct svc_req *, SVCXPRT *);
usr.sbin/rpcbind/rpcbind.h
103
void rpcb_service_4(struct svc_req *, SVCXPRT *);
usr.sbin/rpcbind/rpcbind.h
106
void *rpcbproc_set_com(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcbind.h
107
void *rpcbproc_unset_com(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcbind.h
111
void *rpcbproc_getaddr_com(RPCB *, struct svc_req *, SVCXPRT *, rpcvers_t,
usr.sbin/rpcbind/rpcbind.h
113
void *rpcbproc_gettime_com(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcbind.h
116
SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcbind.h
117
void *rpcbproc_taddr2uaddr_com(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcbind.h
120
void rpcbproc_callit_com(struct svc_req *, SVCXPRT *, rpcvers_t,
usr.sbin/rpcbind/rpcbind.h
128
int check_access(SVCXPRT *, rpcproc_t, void *, unsigned int);
usr.sbin/rpcbind/rpcbind.h
129
int check_callit(SVCXPRT *, struct r_rmtcall_args *, int);
usr.sbin/rpcbind/rpcbind.h
134
extern void pmap_service(struct svc_req *, SVCXPRT *);
usr.sbin/rpcbind/rpcbind.h
90
char *mergeaddr(SVCXPRT *, char *, char *, char *);
usr.sbin/rpcbind/security.c
244
check_callit(SVCXPRT *xprt, struct r_rmtcall_args *args, int versnum __unused)
usr.sbin/rpcbind/security.c
75
check_access(SVCXPRT *xprt, rpcproc_t proc, void *args, unsigned int rpcbvers)
usr.sbin/ypbind/ypbind.c
1167
SVCXPRT dummy_svc;
usr.sbin/ypbind/ypbind.c
135
static SVCXPRT *udptransp, *tcptransp;
usr.sbin/ypbind/ypbind.c
689
ypbindproc_null_2(SVCXPRT *transp, void *argp)
usr.sbin/ypbind/ypbind.c
703
ypbindproc_domain_2(SVCXPRT *transp, void *argp)
usr.sbin/ypbind/ypbind.c
829
ypbindproc_setdom_2(SVCXPRT *transp, void *argp)
usr.sbin/ypbind/ypbind.c
899
ypbindprog_2(struct svc_req *rqstp, register SVCXPRT *transp)
usr.sbin/ypbind/ypbind.c
909
void *(*local)(SVCXPRT *, void *);
usr.sbin/ypserv/yppush/yppush.c
310
SVCXPRT *transp;
usr.sbin/ypserv/yppush/yppush.h
47
void yppush_xfrrespprog_1(struct svc_req *, SVCXPRT *);
usr.sbin/ypserv/yppush/yppush_svc.c
83
yppush_xfrrespprog_1(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/ypserv/ypserv/ypserv.c
115
ypprog_2(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/ypserv/ypserv/ypserv.c
279
ypprog_1(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/ypserv/ypserv/ypserv.c
297
SVCXPRT *xprt;