HomeSort by: relevance | last modified time | path
    Searched refs:BUFSIZ (Results 1 - 25 of 200) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/games/hangman/
extern.c 45 char Word[BUFSIZ], Known[BUFSIZ];
getword.c 58 if (fgets(Word, BUFSIZ, inf) == NULL)
60 if (fgets(Word, BUFSIZ, inf) == NULL)
  /src/libexec/telnetd/
global.c 83 char ptyobuf[BUFSIZ+NETSLOP], *pfrontp, *pbackp;
84 char netibuf[BUFSIZ], *netip;
85 char netobuf[BUFSIZ+NETSLOP], *nfrontp, *nbackp;
ext.h 68 extern char ptyobuf[BUFSIZ+NETSLOP], *pfrontp, *pbackp;
69 extern char netibuf[BUFSIZ], *netip;
70 extern char netobuf[BUFSIZ+NETSLOP], *nfrontp, *nbackp;
authenc.c 48 if (nfrontp + len < netobuf + BUFSIZ) {
  /src/lib/libc/stdio/
setbuf.c 57 (void)setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
ungetc.c 70 if ((p = malloc((size_t)BUFSIZ)) == NULL)
73 _UB(fp)._size = BUFSIZ;
74 p += BUFSIZ - sizeof(fp->_ubuf);
  /src/regress/sys/fs/lfs/ckckp/
ckckp.c 44 char cmd[BUFSIZ], s[BUFSIZ];
77 while(fgets(s, BUFSIZ, pp) != NULL)
  /src/usr.sbin/lpr/lptest/
lptest.c 55 char outbuf[BUFSIZ];
  /src/usr.sbin/tcpdchk/
fakelog.c 40 char buf[BUFSIZ];
  /src/distrib/utils/more/
ch.c 67 char data[BUFSIZ];
155 pos = (ch_block * BUFSIZ) + bp->datasize;
173 n = iread(file, &bp->data[bp->datasize], BUFSIZ - bp->datasize);
271 new_block = pos / BUFSIZ;
277 ch_offset = pos % BUFSIZ;
349 return(ch_block * BUFSIZ + ch_offset);
361 if (c != EOI && ++ch_offset >= BUFSIZ) {
379 ch_offset = BUFSIZ - 1;
  /src/games/hunt/hunt/
hunt_private.h 35 #include <stdio.h> /* for BUFSIZ */
52 extern char Buf[BUFSIZ];
  /src/tools/compat/
fgetln.c 50 if (!(buf = calloc(1, BUFSIZ)))
52 bufsz = BUFSIZ;
  /src/usr.bin/telnet/
network.c 56 unsigned char netobuf[2*BUFSIZ], netibuf[BUFSIZ];
  /src/usr.sbin/rtadvd/
advcap.c 57 #ifndef BUFSIZ
58 #define BUFSIZ 1024
126 char ibuf[BUFSIZ];
149 cnt = read(tf, ibuf, BUFSIZ);
164 if (cp >= bp + BUFSIZ) {
194 char tcbuf[BUFSIZ];
223 if (l > BUFSIZ) {
225 q[BUFSIZ - (p-holdtbuf)] = 0;
  /src/sbin/sysctl/
pathconf.c 70 char names[BUFSIZ];
155 char *bufp, buf[BUFSIZ];
158 snprintf(buf, BUFSIZ, "%s", string);
  /src/usr.bin/rdist/
defs.h 129 char pathname[BUFSIZ];
130 char target[BUFSIZ];
145 extern char buf[BUFSIZ]; /* general purpose buffer */
  /src/bin/setfacl/
file.c 53 char buf[BUFSIZ+1];
  /src/games/hunt/huntd/
extern.c 44 char Buf[BUFSIZ]; /* general scribbling buffer */
  /src/libexec/rexecd/unit-tests/
rexec.c 54 char line[BUFSIZ];
  /src/usr.bin/tip/
Makefile 25 # BUFSIZ buffer sizing from stdio, must be fed
34 -DDEFBR=9600 -DDEFFS=BUFSIZ -DHAYES \
  /src/sbin/fsck_lfs/
fsck.h 73 #ifndef BUFSIZ
74 #define BUFSIZ 1024
  /src/usr.bin/cksum/
md5.c 143 unsigned char buffer[BUFSIZ];
147 while ((len = fread(buffer, (size_t)1, (size_t)BUFSIZ, stdin)) > 0) {
  /src/usr.bin/from/
from.c 64 #if MAXPATHLEN > BUFSIZ
67 char buf[BUFSIZ];
  /src/sbin/raidctl/
rf_configure.c 145 char buf[BUFSIZ], buf1[BUFSIZ], *cp;
374 char buf[BUFSIZ], smbuf[BUFSIZ];
570 char buf[BUFSIZ], targString[BUFSIZ], errString[BUFSIZ];
617 char linebuf[BUFSIZ];
619 if (fgets(linebuf, BUFSIZ, fp) == NULL) {

Completed in 19 milliseconds

1 2 3 4 5 6 7 8