Lines Matching refs:fbtbc
115 long fbtbc; /* fragment bytes to be consumed */ member
191 rstrm->fbtbc = 0; in xdrrec_create()
210 if (rstrm->fbtbc >= BYTES_PER_XDR_UNIT && in libc_hidden_nolink_sunrpc()
214 rstrm->fbtbc -= BYTES_PER_XDR_UNIT; in libc_hidden_nolink_sunrpc()
258 current = rstrm->fbtbc; in xdrrec_getbytes()
271 rstrm->fbtbc -= current; in xdrrec_getbytes()
351 if ((delta < (int) (rstrm->fbtbc)) && in xdrrec_setpos()
356 rstrm->fbtbc -= delta; in xdrrec_setpos()
385 if ((len <= rstrm->fbtbc) && in xdrrec_inline()
389 rstrm->fbtbc -= len; in xdrrec_inline()
418 if (rstrm->fbtbc >= BYTES_PER_XDR_UNIT && in xdrrec_getint32()
422 rstrm->fbtbc -= BYTES_PER_XDR_UNIT; in xdrrec_getint32()
471 while (rstrm->fbtbc > 0 || (!rstrm->last_frag)) in xdrrec_skiprecord()
473 if (!skip_input_bytes (rstrm, rstrm->fbtbc)) in xdrrec_skiprecord()
475 rstrm->fbtbc = 0; in xdrrec_skiprecord()
494 while (rstrm->fbtbc > 0 || (!rstrm->last_frag)) in libc_hidden_nolink_sunrpc()
496 if (!skip_input_bytes (rstrm, rstrm->fbtbc)) in libc_hidden_nolink_sunrpc()
498 rstrm->fbtbc = 0; in libc_hidden_nolink_sunrpc()
619 rstrm->fbtbc = header & ~LAST_FRAG; in set_input_fragment()