Home
last modified time | relevance | path

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

/freebsd-14.2/tools/regression/netinet6/inet6_rth/
H A Dtest_subr.c41 char g_testdesc[LINESIZE];
42 char g_errbuf[LINESIZE];
59 char sbuf[LINESIZE]; in checkptr()
61 memset((void *)sbuf, 0, LINESIZE); in checkptr()
62 snprintf(g_testdesc, LINESIZE, desc); in checkptr()
92 char sbuf[LINESIZE]; in checkstr()
94 memset((void *)sbuf, 0, LINESIZE); in checkstr()
105 snprintf(g_errbuf, LINESIZE, in checkstr()
126 char sbuf[LINESIZE]; in checknum()
128 memset((void *)sbuf, 0, LINESIZE); in checknum()
[all …]
H A Dtest_subr.h29 #define LINESIZE 256 macro
36 extern char g_testdesc[LINESIZE];
37 extern char g_errbuf[LINESIZE];
/freebsd-14.2/usr.bin/mail/
H A Dutil.c136 char linebuf[LINESIZE]; in hfield()
144 if (readline(ibuf, linebuf, LINESIZE) < 0) in hfield()
164 char line2[LINESIZE]; in gethfield()
193 if ((c = readline(f, line2, LINESIZE)) < 0) in gethfield()
199 if (cp + c >= linebuf + LINESIZE - 2) in gethfield()
500 char namebuf[LINESIZE]; in name1()
501 char linebuf[LINESIZE]; in name1()
512 if (readline(ibuf, linebuf, LINESIZE) < 0) in name1()
521 cp2 < namebuf + LINESIZE - 1;) in name1()
524 if (readline(ibuf, linebuf, LINESIZE) < 0) in name1()
[all …]
H A Dcollect.c77 char linebuf[LINESIZE], tempname[PATHSIZE], *cp, getsub; in collect()
157 c = readline(stdin, linebuf, LINESIZE); in collect()
168 longline = c == LINESIZE - 1; in collect()
389 while ((rc = readline(fbuf, linebuf, LINESIZE)) >= 0) { in collect()
390 if (rc != LINESIZE - 1) in collect()
393 rc != LINESIZE - 1)) < 0) { in collect()
H A Dcmd1.c169 char headline[LINESIZE], wcount[LINESIZE], *subjline, dispc, curind; in printhead()
176 (void)readline(setinput(mp), headline, LINESIZE); in printhead()
370 char *valtop, linebuf[LINESIZE]; in top()
H A Dlex.c203 char linebuf[LINESIZE]; in commands()
234 if (readline(input, &linebuf[n], LINESIZE - n) < 0) { in commands()
279 char word[LINESIZE]; in execute()
H A Dsend.c60 char *cp, *cp2, line[LINESIZE]; in sendmessage()
209 c = count < LINESIZE ? count : LINESIZE; in sendmessage()
H A Ddef.h62 #define LINESIZE BUFSIZ /* max readable line width */ macro
H A Dhead.c96 char word[LINESIZE]; in parse()
H A Dcmd2.c459 char field[LINESIZE]; in ignore1()
H A Dfio.c66 char linebuf[LINESIZE], pathbuf[PATHSIZE]; in setptr()
/freebsd-14.2/crypto/openssl/crypto/pem/
H A Dpem_lib.c734 #define LINESIZE 255 macro
753 linebuf = pem_malloc(LINESIZE + 1, flags); in get_name()
760 len = BIO_gets(bp, linebuf, LINESIZE); in get_name()
786 pem_free(linebuf, flags, LINESIZE + 1); in get_name()
821 linebuf = pem_malloc(LINESIZE + 1, flags); in get_header_and_data()
829 len = BIO_gets(bp, linebuf, LINESIZE); in get_header_and_data()
841 partial_line_read = len == LINESIZE-1 && linebuf[LINESIZE-2] != '\n'; in get_header_and_data()
908 pem_free(linebuf, flags, LINESIZE + 1); in get_header_and_data()
/freebsd-14.2/contrib/byacc/
H A Dreader.c10 #define LINESIZE 100 macro
289 if (line == NULL || linesize != (LINESIZE + 1)) in get_line()
293 linesize = LINESIZE + 1; in get_line()
307 linesize += LINESIZE; in get_line()