Lines Matching refs:SVCXPRT
72 static bool_t svcunix_recv (SVCXPRT *, struct rpc_msg *);
73 static enum xprt_stat svcunix_stat (SVCXPRT *);
74 static bool_t svcunix_getargs (SVCXPRT *, xdrproc_t, caddr_t);
75 static bool_t svcunix_reply (SVCXPRT *, struct rpc_msg *);
76 static bool_t svcunix_freeargs (SVCXPRT *, xdrproc_t, caddr_t);
77 static void svcunix_destroy (SVCXPRT *);
92 static bool_t rendezvous_request (SVCXPRT *, struct rpc_msg *);
93 static enum xprt_stat rendezvous_stat (SVCXPRT *);
108 (bool_t (*) (SVCXPRT *, xdrproc_t, caddr_t)) svcunix_rendezvous_abort,
109 (bool_t (*) (SVCXPRT *, struct rpc_msg *)) svcunix_rendezvous_abort,
110 (bool_t (*) (SVCXPRT *, xdrproc_t, caddr_t)) svcunix_rendezvous_abort,
116 static SVCXPRT *makefd_xprt (int, u_int, u_int);
150 SVCXPRT *
154 SVCXPRT *xprt; in svcunix_create()
164 return (SVCXPRT *) NULL; in svcunix_create()
182 return (SVCXPRT *) NULL; in svcunix_create()
186 xprt = (SVCXPRT *) mem_alloc (sizeof (SVCXPRT)); in svcunix_create()
191 mem_free (xprt, sizeof (SVCXPRT)); in svcunix_create()
211 SVCXPRT * in libc_hidden_nolink_sunrpc()
218 static SVCXPRT * in libc_hidden_nolink_sunrpc()
221 SVCXPRT *xprt; in libc_hidden_nolink_sunrpc()
224 xprt = (SVCXPRT *) mem_alloc (sizeof (SVCXPRT)); in libc_hidden_nolink_sunrpc()
226 if (xprt == (SVCXPRT *) NULL || cd == (struct unix_conn *) NULL) in libc_hidden_nolink_sunrpc()
230 mem_free (xprt, sizeof (SVCXPRT)); in libc_hidden_nolink_sunrpc()
249 rendezvous_request (SVCXPRT *xprt, struct rpc_msg *errmsg) in rendezvous_request()
287 rendezvous_stat (SVCXPRT *xprt) in rendezvous_stat()
293 svcunix_destroy (SVCXPRT *xprt) in svcunix_destroy()
310 mem_free ((caddr_t) xprt, sizeof (SVCXPRT)); in svcunix_destroy()
425 SVCXPRT *xprt = (SVCXPRT *) xprtptr; in readunix()
466 SVCXPRT *xprt = (SVCXPRT *) xprtptr; in writeunix()
481 svcunix_stat (SVCXPRT *xprt) in svcunix_stat()
494 svcunix_recv (SVCXPRT *xprt, struct rpc_msg *msg) in svcunix_recv()
517 svcunix_getargs (SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr) in svcunix_getargs()
524 svcunix_freeargs (SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr) in svcunix_freeargs()
533 svcunix_reply (SVCXPRT *xprt, struct rpc_msg *msg) in svcunix_reply()