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

1 2

  /src/lib/libc/stdio/
setbuffer.c 55 (void)setvbuf(fp, buf, buf ? _IOFBF : _IONBF, (size_t)size);
67 return setvbuf(fp, NULL, _IOLBF, (size_t)0);
setbuf.c 57 (void)setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
setvbuf.c 1 /* $NetBSD: setvbuf.c,v 1.19 2012/03/15 18:22:30 christos Exp $ */
38 static char sccsid[] = "@(#)setvbuf.c 8.2 (Berkeley) 11/16/93";
40 __RCSID("$NetBSD: setvbuf.c,v 1.19 2012/03/15 18:22:30 christos Exp $");
57 setvbuf(FILE *fp, char *buf, int mode, size_t size) function in typeref:typename:int
Makefile.inc 17 rget.c scanf.c setbuf.c setbuffer.c setvbuf.c snprintf_ss.c \
60 MLINKS+=setbuf.3 setbuffer.3 setbuf.3 setlinebuf.3 setbuf.3 setvbuf.3
  /src/usr.bin/dc/
dc.c 77 (void)setvbuf(stdout, NULL, _IOLBF, 0);
78 (void)setvbuf(stderr, NULL, _IOLBF, 0);
  /src/tests/lib/libc/sys/
t_ptrace_wait.c 168 setvbuf(stdout, NULL, _IONBF, 0);
169 setvbuf(stderr, NULL, _IONBF, 0);
t_ptrace.c 235 setvbuf(stdout, NULL, _IONBF, 0);
236 setvbuf(stderr, NULL, _IONBF, 0);
t_ptrace_sigchld.c 239 setvbuf(stdout, NULL, _IONBF, 0);
240 setvbuf(stderr, NULL, _IONBF, 0);
  /src/regress/sys/kern/latency2/
latency2.c 99 (void)setvbuf(stdout, NULL, _IOLBF, BUFSIZ);
  /src/usr.bin/leave/
leave.c 81 if (setvbuf(stdout, NULL, _IONBF, 0) != 0)
  /src/usr.bin/xlint/lint1/
main1.c 233 setvbuf(stdout, NULL, _IONBF, 0);
  /src/tests/lib/libc/stdio/
h_intr.c 158 setvbuf(ofp, NULL, opts.btype, opts.asize);
159 setvbuf(ifp, NULL, opts.btype, opts.asize);
168 setvbuf(ofp, r ? abuf : NULL,
  /src/regress/sys/kern/nameibench/
nameibench.c 205 (void)setvbuf(stdout, NULL, _IOLBF, BUFSIZ);
  /src/usr.bin/sed/
main.c 180 c = setvbuf(stdout, NULL, _IOLBF, 0);
192 c = setvbuf(stdout, NULL, _IONBF, 0);
  /src/lib/libcurses/
tstp.c 243 (void)setvbuf(_cursesi_screen->outfd, NULL, _IOLBF, 0);
tty.c 538 * However, setvbuf may only be used after opening a stream and
544 * The BSD systems do not suffer from this limitation on setvbuf.
553 (void)setvbuf(screen->outfd, screen->stdbuf, _IOFBF, screen->len);
  /src/regress/sys/uvm/pdsim/
pdsim.c 289 setvbuf(stderr, NULL, _IOFBF, 0); /* XXX */
  /src/tests/fs/lfs/
t_rfw.c 97 setvbuf(stdout, NULL, _IONBF, 0);
  /src/usr.bin/xlint/llib/
llib-lstdc 143 int (setvbuf)(FILE *stream, char *buf, int mode, size_t size);
llib-lposix 236 int (setvbuf)(FILE *stream, char *buf, int mode, size_t size);
  /src/usr.sbin/mrouted/
defs.h 93 #define setlinebuf(s) setvbuf(s, NULL, _IOLBF, 0)
  /src/bin/csh/
csh.c 310 (void)setvbuf(cshin, NULL, _IOLBF, 0);
311 (void)setvbuf(cshout, NULL, _IOLBF, 0);
312 (void)setvbuf(csherr, NULL, _IOLBF, 0);
  /src/include/
stdio.h 173 * made them official arguments to setvbuf(), without renaming them.
179 #define _IOFBF 0 /* setvbuf should set fully buffered */
180 #define _IOLBF 1 /* setvbuf should set line buffered */
181 #define _IONBF 2 /* setvbuf should set unbuffered */
257 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
  /src/usr.bin/m4/
main.c 277 setvbuf(stdout, NULL, _IONBF, 0);
  /src/usr.bin/grep/
grep.c 694 setvbuf(stdout, NULL, _IOLBF, 0);

Completed in 23 milliseconds

1 2