Lines Matching refs:netbuf
84 struct netbuf *caller_addr;
101 static int forward_register(u_int32_t, struct netbuf *, int, char *,
106 static int netbufcmp(struct netbuf *, struct netbuf *);
107 static struct netbuf *netbufdup(struct netbuf *);
108 static void netbuffree(struct netbuf *);
366 static struct netbuf nbuf; in rpcbproc_uaddr2taddr_com()
367 static struct netbuf *taddr; in rpcbproc_uaddr2taddr_com()
373 (void) memset((char *)&nbuf, 0, sizeof (struct netbuf)); in rpcbproc_uaddr2taddr_com()
388 struct netbuf *taddr = (struct netbuf *)arg; in rpcbproc_taddr2uaddr_com()
598 struct netbuf *caller; in rpcbproc_callit_com()
603 struct netbuf *na = (struct netbuf *) NULL; in rpcbproc_callit_com()
614 struct netbuf tbuf; in rpcbproc_callit_com()
915 forward_register(u_int32_t caller_xid, struct netbuf *caller_addr, in forward_register()
1032 netbufcmp(struct netbuf *n1, struct netbuf *n2) in netbufcmp()
1038 netbuf_copybuf(struct netbuf *dst, const struct netbuf *src) in netbuf_copybuf()
1055 static struct netbuf *
1056 netbufdup(struct netbuf *ap) in netbufdup()
1058 struct netbuf *np; in netbufdup()
1060 if ((np = calloc(1, sizeof(struct netbuf))) == NULL) in netbufdup()
1070 netbuffree(struct netbuf *ap) in netbuffree()