Lines Matching refs:SVCXPRT
74 static bool_t svcudp_recv (SVCXPRT *, struct rpc_msg *);
75 static bool_t svcudp_reply (SVCXPRT *, struct rpc_msg *);
76 static enum xprt_stat svcudp_stat (SVCXPRT *);
77 static bool_t svcudp_getargs (SVCXPRT *, xdrproc_t, caddr_t);
78 static bool_t svcudp_freeargs (SVCXPRT *, xdrproc_t, caddr_t);
79 static void svcudp_destroy (SVCXPRT *);
91 static int cache_get (SVCXPRT *, struct rpc_msg *, char **replyp,
93 static void cache_set (SVCXPRT *xprt, u_long replylen);
121 SVCXPRT *
125 SVCXPRT *xprt; in svcudp_bufcreate()
137 return (SVCXPRT *) NULL; in svcudp_bufcreate()
153 return (SVCXPRT *) NULL; in svcudp_bufcreate()
155 xprt = (SVCXPRT *) mem_alloc (sizeof (SVCXPRT)); in svcudp_bufcreate()
162 mem_free (xprt, sizeof (SVCXPRT)); in svcudp_bufcreate()
206 SVCXPRT * in libc_hidden_def()
218 svcudp_stat (SVCXPRT *xprt) in libc_hidden_def()
225 svcudp_recv (SVCXPRT *xprt, struct rpc_msg *msg) in svcudp_recv()
327 svcudp_reply (SVCXPRT *xprt, struct rpc_msg *msg) in svcudp_reply()
371 svcudp_getargs (SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr) in svcudp_getargs()
378 svcudp_freeargs (SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr) in svcudp_freeargs()
387 svcudp_destroy (SVCXPRT *xprt) in svcudp_destroy()
396 mem_free ((caddr_t) xprt, sizeof (SVCXPRT)); in svcudp_destroy()
474 svcudp_enablecache (SVCXPRT *transp, u_long size) in svcudp_enablecache()
517 cache_set (SVCXPRT *xprt, u_long replylen) in libc_hidden_nolink_sunrpc()
587 cache_get (SVCXPRT *xprt, struct rpc_msg *msg, char **replyp, in cache_get()