Lines Matching refs:xdrs
181 XDR *xdrs, in xdrrec_create() argument
220 xdrs->x_ops = &xdrrec_ops; in xdrrec_create()
221 xdrs->x_private = rstrm; in xdrrec_create()
250 xdrrec_getlong(XDR *xdrs, long *lp) in xdrrec_getlong() argument
252 RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private); in xdrrec_getlong()
263 if (! xdrrec_getbytes(xdrs, (char *)(void *)&mylong, in xdrrec_getlong()
272 xdrrec_putlong(XDR *xdrs, const long *lp) in xdrrec_putlong() argument
274 RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private); in xdrrec_putlong()
294 xdrrec_getbytes(XDR *xdrs, char *addr, u_int len) in xdrrec_getbytes() argument
296 RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private); in xdrrec_getbytes()
319 xdrrec_putbytes(XDR *xdrs, const char *addr, u_int len) in xdrrec_putbytes() argument
321 RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private); in xdrrec_putbytes()
343 xdrrec_getpos(XDR *xdrs) in xdrrec_getpos() argument
345 RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private; in xdrrec_getpos()
350 switch (xdrs->x_op) { in xdrrec_getpos()
368 xdrrec_setpos(XDR *xdrs, u_int pos) in xdrrec_setpos() argument
370 RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private; in xdrrec_setpos()
371 u_int currpos = xdrrec_getpos(xdrs); in xdrrec_setpos()
376 switch (xdrs->x_op) { in xdrrec_setpos()
405 xdrrec_inline(XDR *xdrs, u_int len) in xdrrec_inline() argument
407 RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private; in xdrrec_inline()
410 switch (xdrs->x_op) { in xdrrec_inline()
435 xdrrec_destroy(XDR *xdrs) in xdrrec_destroy() argument
437 RECSTREAM *rstrm = (RECSTREAM *)xdrs->x_private; in xdrrec_destroy()
454 xdrrec_skiprecord(XDR *xdrs) in xdrrec_skiprecord() argument
456 RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private); in xdrrec_skiprecord()
460 if (__xdrrec_getrec(xdrs, &xstat, FALSE)) { in xdrrec_skiprecord()
488 xdrrec_eof(XDR *xdrs) in xdrrec_eof() argument
490 RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private); in xdrrec_eof()
511 xdrrec_endofrecord(XDR *xdrs, int sendnow) in xdrrec_endofrecord() argument
513 RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private); in xdrrec_endofrecord()
535 __xdrrec_getrec(XDR *xdrs, enum xprt_stat *statp, bool_t expectdata) in __xdrrec_getrec() argument
537 RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private); in __xdrrec_getrec()
615 __xdrrec_setnonblock(XDR *xdrs, int maxrec) in __xdrrec_setnonblock() argument
617 RECSTREAM *rstrm = (RECSTREAM *)(xdrs->x_private); in __xdrrec_setnonblock()