Home
last modified time | relevance | path

Searched refs:_IOLBF (Results 1 – 25 of 25) sorted by relevance

/freebsd-9-stable/contrib/ncurses/ncurses/tinfo/
Dsetbuf.c139 (void) setvbuf(ofp, buf_ptr, buf_len, buf_len ? _IOFBF : _IOLBF); in NCURSES_EXPORT()
141 (void) setvbuf(ofp, buf_ptr, buf_len ? _IOFBF : _IOLBF, buf_len); in NCURSES_EXPORT()
/freebsd-9-stable/lib/libc/stdio/
Dsetvbuf.c63 if ((mode != _IOFBF && mode != _IOLBF) || (int)size < 0) in setvbuf()
137 if (mode == _IOLBF) in setvbuf()
Dsetbuffer.c59 return (setvbuf(fp, (char *)NULL, _IOLBF, (size_t)0));
/freebsd-9-stable/crypto/openssl/demos/easy_tls/
Dtest.c158 setvbuf(conn_in, NULL, _IOLBF, 256); in main()
159 setvbuf(conn_out, NULL, _IOLBF, 256); in main()
/freebsd-9-stable/contrib/ofed/libibverbs/examples/
Dasyncwatch.c84 setvbuf(stdout, NULL, _IOLBF, 0); in main()
/freebsd-9-stable/crypto/openssh/openbsd-compat/
Dbsd-misc.h57 #define setlinebuf(a) (setvbuf((a), NULL, _IOLBF, 0))
/freebsd-9-stable/lib/libstdbuf/
Dstdbuf.c61 mode = _IOLBF; in change_buf()
/freebsd-9-stable/bin/ed/
Dbuf.c265 setvbuf(stdout, NULL, _IOLBF, 0); in init_buffers()
/freebsd-9-stable/contrib/ncurses/ncurses/trace/
Dlib_trace.c123 (void) setvbuf(TraceFP, (char *) 0, _IOLBF, 0); in trace()
/freebsd-9-stable/contrib/wpa/src/utils/
Dwpa_debug.c288 setvbuf(out_file, NULL, _IOLBF, 0); in wpa_debug_open_file()
/freebsd-9-stable/include/
Dstdio.h189 #define _IOLBF 1 /* setvbuf should set line buffered */ macro
/freebsd-9-stable/contrib/libc++/include/
Dcstdio30 _IOLBF
Dmodule.modulemap208 SEEK_CUR, SEEK_END, SEEK_SET, TMP_MAX, _IOFBF, _IOLBF,
/freebsd-9-stable/contrib/gdb/gdb/tui/
Dtui-io.c621 setvbuf (tui_rl_outstream, (char*) NULL, _IOLBF, 0); in tui_initialize_io()
/freebsd-9-stable/contrib/gcclibs/libmudflap/
Dmf-hooks2.c626 bufmode = fileno (f) == 2 ? _IONBF : (isatty (fileno (f)) ? _IOLBF : _IOFBF); in mkbuffer()
693 if ((buf == NULL) && ((mode == _IOFBF) || (mode == _IOLBF))) in WRAPPER2()
719 return __mfwrap_setvbuf(stream, NULL, _IOLBF, 0); in WRAPPER2()
/freebsd-9-stable/contrib/ntp/ntpd/
Drefclock_true.c247 setvbuf(up->debug, buf, _IOLBF, BUFSIZ); in true_debug()
/freebsd-9-stable/contrib/tnftp/src/
Dmain.c421 setvbuf(ttyout, NULL, _IOLBF, 0); in main()
/freebsd-9-stable/tools/regression/fsx/
Dfsx.c1003 setvbuf(stdout, (char *)0, _IOLBF, 0); /* line buffered stdout */ in main()
/freebsd-9-stable/usr.sbin/traceroute6/
Dtraceroute6.c605 setvbuf(stdout, NULL, _IOLBF, BUFSIZ);
/freebsd-9-stable/contrib/bmake/
Dmain.c358 setvbuf(stdout, NULL, _IOLBF, 0); in parse_debug_options()
/freebsd-9-stable/contrib/tcpdump/
Dtcpdump.c917 setvbuf(stdout, NULL, _IOLBF, 0); in main()
/freebsd-9-stable/contrib/traceroute/
Dtraceroute.c703 setvbuf(stdout, NULL, _IOLBF, 0); in main()
/freebsd-9-stable/contrib/ntp/ntpdate/
Dntpdate.c443 setvbuf(stdout, buf, _IOLBF, BUFSIZ); in ntpdatemain()
/freebsd-9-stable/cddl/contrib/opensolaris/cmd/ztest/
Dztest.c6080 (void) setvbuf(stdout, NULL, _IOLBF, 0); in main()
/freebsd-9-stable/crypto/openssh/
DChangeLog2877 setlinebuf(3) is more readable than setvbuf(.., _IOLBF, ...)