Home
last modified time | relevance | path

Searched refs:inbuffer (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/error/common/
H A Derrorfilter.c57 char inbuffer[256]; in getignored() local
93 for (nignored = 0; fgets(inbuffer, 255, fyle) != NULL; nignored++) in getignored()
105 for (i = 0; i < nignored && (fgets(inbuffer, 255, fyle) != NULL); in getignored()
107 names_ignored[i] = strsave(inbuffer); in getignored()
H A Derrorinput.c59 static char inbuffer[BUFSIZ]; variable
67 if (fgets(inbuffer, BUFSIZ, errorfile) == NULL) in eaterrors()
69 wordvbuild(inbuffer, &wordc, &wordv); in eaterrors()
/illumos-gate/usr/src/lib/libresolv2/common/irs/
H A Dirp.c274 char *realstart = &pvt->inbuffer[0]; in irs_irp_read_line()
282 start = p = &pvt->inbuffer[pvt->incurr]; in irs_irp_read_line()
283 end = &pvt->inbuffer[pvt->inlast]; in irs_irp_read_line()
297 end = &pvt->inbuffer[pvt->inlast]; in irs_irp_read_line()
300 spare = sizeof (pvt->inbuffer) - pvt->inlast; in irs_irp_read_line()
321 i = sizeof pvt->inbuffer; in irs_irp_read_line()
H A Dirp_p.h28 char inbuffer[1024]; member
/illumos-gate/usr/src/boot/libsa/
H A Dtftp.c540 int offinblock, inbuffer; in tftp_read() local
544 inbuffer = tftpfile->validsize - offinblock; in tftp_read()
545 if (inbuffer < 0) { in tftp_read()
552 count = (size < inbuffer ? size : inbuffer); in tftp_read()
561 if ((tftpfile->islastblock) && (count == inbuffer)) in tftp_read()