Lines Matching refs:in_finger

104 	caddr_t in_finger;	/* location of next byte to be had */  member
201 rstrm->in_finger = (rstrm->in_boundry += rstrm->recvsize); in xdrrec_create()
220 int current = rstrm->in_boundry - rstrm->in_finger; in align_instream()
222 (void) memcpy(rstrm->in_base, rstrm->in_finger, current); in align_instream()
223 rstrm->in_finger = rstrm->in_base; in align_instream()
224 rstrm->in_boundry = rstrm->in_finger + current; in align_instream()
237 int32_t *buflp = (int32_t *)(rstrm->in_finger); in xdrrec_getint32()
250 buflp = (int32_t *)(rstrm->in_finger); in xdrrec_getint32()
254 rstrm->in_finger += sizeof (int32_t); in xdrrec_getint32()
414 pos -= rstrm->in_boundry - rstrm->in_finger; in xdrrec_getpos()
446 newpos = rstrm->in_finger - delta; in xdrrec_setpos()
450 rstrm->in_finger = newpos; in xdrrec_setpos()
478 ((rstrm->in_finger + len) <= rstrm->in_boundry)) { in xdrrec_inline()
483 if (((intptr_t)rstrm->in_finger) & in xdrrec_inline()
487 buf = (rpc_inline_t *)rstrm->in_finger; in xdrrec_inline()
489 rstrm->in_finger += len; in xdrrec_inline()
532 rstrm->in_finger == rstrm->in_boundry)) { in xdrrec_skiprecord()
574 if (rstrm->in_finger == rstrm->in_boundry) in xdrrec_eof()
659 rstrm->in_finger = where; in fill_input_buf()
677 current = (int)(rstrm->in_boundry - rstrm->in_finger); in get_input_bytes()
680 (void) memcpy(addr, rstrm->in_finger, len); in get_input_bytes()
681 rstrm->in_finger += len; in get_input_bytes()
688 (intptr_t)rstrm->in_finger; in get_input_bytes()
695 (void) memcpy(addr, rstrm->in_finger, current); in get_input_bytes()
696 rstrm->in_finger += current; in get_input_bytes()
735 (intptr_t)rstrm->in_finger; in skip_input_bytes()
742 rstrm->in_finger += current; in skip_input_bytes()
763 rstrm->in_finger += offset; in __xdrrec_nonblock_realloc()
850 rstrm->in_nextrec = rstrm->in_finger = rstrm->in_base; in __xdrrec_getbytes_nonblock()
856 rstrm->in_boundry = rstrm->in_finger = rstrm->in_base; in __xdrrec_getbytes_nonblock()
931 rstrm->in_finger); in __xdrrec_getbytes_nonblock()
933 header = (uint32_t *)rstrm->in_finger; in __xdrrec_getbytes_nonblock()
1003 if (rstrm->in_finger == rstrm->in_base) { in __xdrrec_getbytes_nonblock()
1004 rstrm->in_finger += sizeof (*header); in __xdrrec_getbytes_nonblock()
1007 (void) memmove(rstrm->in_finger, in __xdrrec_getbytes_nonblock()
1008 rstrm->in_finger + sizeof (*header), in __xdrrec_getbytes_nonblock()
1009 rstrm->in_boundry - rstrm->in_finger); in __xdrrec_getbytes_nonblock()
1028 rstrm->in_finger += rstrm->fbtbc; in __xdrrec_getbytes_nonblock()
1032 rstrm->in_finger += len_received; in __xdrrec_getbytes_nonblock()
1046 rstrm->in_nextrec = rstrm->in_finger; in __xdrrec_getbytes_nonblock()
1063 rstrm->fbtbc = (int)(rstrm->in_finger - in __xdrrec_getbytes_nonblock()
1065 rstrm->in_finger = rstrm->in_base + sizeof (*header); in __xdrrec_getbytes_nonblock()
1109 if (rstrm->in_finger == rstrm->in_boundry) in __xdrrec_setfirst()