Home
last modified time | relevance | path

Searched refs:LINESIZE (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/tools/regression/netinet6/inet6_rth/
H A Dtest_subr.c43 char g_testdesc[LINESIZE];
44 char g_errbuf[LINESIZE];
61 char sbuf[LINESIZE]; in checkptr()
63 memset((void *)sbuf, 0, LINESIZE); in checkptr()
64 snprintf(g_testdesc, LINESIZE, desc); in checkptr()
94 char sbuf[LINESIZE]; in checkstr()
96 memset((void *)sbuf, 0, LINESIZE); in checkstr()
107 snprintf(g_errbuf, LINESIZE, in checkstr()
128 char sbuf[LINESIZE]; in checknum()
130 memset((void *)sbuf, 0, LINESIZE); in checknum()
[all …]
H A Dtest_subr.h31 #define LINESIZE 256 macro
38 extern char g_testdesc[LINESIZE];
39 extern char g_errbuf[LINESIZE];
/freebsd-13.1/usr.bin/mail/
H A Dutil.c138 char linebuf[LINESIZE]; in hfield()
146 if (readline(ibuf, linebuf, LINESIZE) < 0) in hfield()
166 char line2[LINESIZE]; in gethfield()
195 if ((c = readline(f, line2, LINESIZE)) < 0) in gethfield()
201 if (cp + c >= linebuf + LINESIZE - 2) in gethfield()
501 char namebuf[LINESIZE]; in name1()
502 char linebuf[LINESIZE]; in name1()
513 if (readline(ibuf, linebuf, LINESIZE) < 0) in name1()
522 cp2 < namebuf + LINESIZE - 1;) in name1()
525 if (readline(ibuf, linebuf, LINESIZE) < 0) in name1()
[all …]
H A Dcollect.c79 char linebuf[LINESIZE], tempname[PATHSIZE], *cp, getsub; in collect()
159 c = readline(stdin, linebuf, LINESIZE); in collect()
170 longline = c == LINESIZE - 1; in collect()
391 while ((rc = readline(fbuf, linebuf, LINESIZE)) >= 0) { in collect()
392 if (rc != LINESIZE - 1) in collect()
395 rc != LINESIZE - 1)) < 0) { in collect()
H A Dcmd1.c171 char headline[LINESIZE], wcount[LINESIZE], *subjline, dispc, curind; in printhead()
178 (void)readline(setinput(mp), headline, LINESIZE); in printhead()
372 char *valtop, linebuf[LINESIZE]; in top()
H A Dlex.c205 char linebuf[LINESIZE]; in commands()
236 if (readline(input, &linebuf[n], LINESIZE - n) < 0) { in commands()
281 char word[LINESIZE]; in execute()
H A Dsend.c62 char *cp, *cp2, line[LINESIZE]; in sendmessage()
211 c = count < LINESIZE ? count : LINESIZE; in sendmessage()
H A Dhead.c98 char word[LINESIZE]; in parse()
H A Ddef.h64 #define LINESIZE BUFSIZ /* max readable line width */ macro
H A Dcmd2.c460 char field[LINESIZE]; in ignore1()
H A Dfio.c68 char linebuf[LINESIZE], pathbuf[PATHSIZE]; in setptr()
/freebsd-13.1/crypto/openssl/crypto/pem/
H A Dpem_lib.c717 #define LINESIZE 255 macro
735 linebuf = pem_malloc(LINESIZE + 1, flags); in get_name()
742 len = BIO_gets(bp, linebuf, LINESIZE); in get_name()
767 pem_free(linebuf, flags, LINESIZE + 1); in get_name()
802 linebuf = pem_malloc(LINESIZE + 1, flags); in get_header_and_data()
810 len = BIO_gets(bp, linebuf, LINESIZE); in get_header_and_data()
822 partial_line_read = len == LINESIZE-1 && linebuf[LINESIZE-2] != '\n'; in get_header_and_data()
889 pem_free(linebuf, flags, LINESIZE + 1); in get_header_and_data()
/freebsd-13.1/contrib/byacc/
H A Dreader.c10 #define LINESIZE 100 macro
281 if (line == NULL || linesize != (LINESIZE + 1)) in get_line()
285 linesize = LINESIZE + 1; in get_line()
299 linesize += LINESIZE; in get_line()