Lines Matching refs:XDR
37 * when serialized using XDR.
42 __FBSDID("$FreeBSD: src/lib/libc/xdr/xdr_sizeof.c,v 1.5.38.1 2010/12/21 17:10:29 kensmith Exp $");
49 #include <rpc/xdr.h>
57 static bool_t x_putlong(XDR *, const long *);
58 static bool_t x_putbytes(XDR *, const char *, u_int);
59 static u_int x_getpostn(XDR *);
60 static bool_t x_setpostn(XDR *, u_int);
61 static int32_t *x_inline(XDR *, u_int);
63 static void x_destroy(XDR *);
67 x_putlong(XDR *xdrs, const long *longp)
75 x_putbytes(XDR *xdrs, const char *bp, u_int len)
82 x_getpostn(XDR *xdrs)
89 x_setpostn(XDR *xdrs, u_int pos)
96 x_inline(XDR *xdrs, u_int len)
130 x_destroy(XDR *xdrs)
144 XDR x;
148 typedef bool_t (* dummyfunc1)(XDR *, long *);
149 typedef bool_t (* dummyfunc2)(XDR *, caddr_t, u_int);