Lines Matching refs:text
1635 char text[LINESIZ + 2]; in chargen_stream() local
1642 text[LINESIZ] = '\r'; in chargen_stream()
1643 text[LINESIZ + 1] = '\n'; in chargen_stream()
1648 memmove(text, rs, LINESIZ); in chargen_stream()
1650 memmove(text, rs, len); in chargen_stream()
1651 memmove(text + len, ring, LINESIZ - len); in chargen_stream()
1655 xwrite(s, text, sizeof(text)); in chargen_stream()
1662 char text[LINESIZ + 2]; in chargen_dg() local
1668 if (recvfrom(s, text, sizeof(text), MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0) in chargen_dg()
1678 memmove(text, ring_pos, LINESIZ); in chargen_dg()
1680 memmove(text, ring_pos, len); in chargen_dg()
1681 memmove(text + len, ring, LINESIZ - len); in chargen_dg()
1685 text[LINESIZ] = '\r'; in chargen_dg()
1686 text[LINESIZ + 1] = '\n'; in chargen_dg()
1687 sendto(s, text, sizeof(text), 0, &lsa->u.sa, lsa->len); in chargen_dg()