Home | History | Annotate | Download | only in info

Lines Matching refs:buffered

516 /* The buffered characters pending to be read.
519 static unsigned char buffered[512];
521 /* Index of the next buffered character to be returned. */
528 if (buf_idx >= sizeof (buffered)) /* paranoia */
531 buffered[buf_idx] = '\0';
535 return (long)strlen (buffered + buf_idx);
576 /* If any ``buffered characters'' are left, return as much
578 while (buffered[buf_idx] && nbytes)
580 *buf++ = buffered[buf_idx++];
607 strcpy (buffered, key_sequence);