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

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/stdio/
ferror.c 1 /* $NetBSD: ferror.c,v 1.12 2012/03/15 18:22:30 christos Exp $ */
38 static char sccsid[] = "@(#)ferror.c 8.1 (Berkeley) 6/4/93";
40 __RCSID("$NetBSD: ferror.c,v 1.12 2012/03/15 18:22:30 christos Exp $");
50 * A subroutine version of the macro ferror.
52 #undef ferror macro
55 ferror(FILE *fp) function
  /src/tests/usr.bin/xlint/lint1/
d_c99_bool_strict_syshdr.c 302 int ferror(FILE *);
314 if (ferror(f))
320 if (!ferror(f))
330 * the expression 'ferror(stdio_files[1])'.
338 * Seen in bin/echo/echo.c, function main, call to ferror.
341 if (ferror(
359 if (ferror(
374 if (ferror(
400 if (ferror(
  /src/tests/lib/csu/
h_hello.c 47 return ferror(stdout);
  /src/external/public-domain/xz/dist/src/common/
tuklib_exit.c 29 const int ferror_err = ferror(stdout);
35 // in errno. If only ferror() indicated an error,
50 const int ferror_err = ferror(stderr);
  /src/external/apache2/llvm/dist/libcxx/include/
stdio.h 97 int ferror(FILE* stream);
115 #undef ferror macro
  /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
closeout.c 48 the failure. That's what the ferror test is checking below.
73 if (ferror (stderr) || fflush (stderr))
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
closeout.c 48 the failure. That's what the ferror test is checking below.
73 if (ferror (stderr) || fflush (stderr))
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
closeout.c 48 the failure. That's what the ferror test is checking below.
73 if (ferror (stderr) || fflush (stderr))
  /src/external/gpl2/texinfo/dist/lib/
xexit.c 54 if (ferror (stdout))
56 fputs (_("ferror on stdout\n"), stderr);
85 the failure. That's what the ferror test is checking below.
  /src/external/gpl3/gcc/dist/gcc/
genmddump.cc 59 return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
gencodes.cc 91 if (ferror (stdout) || fflush (stdout) || fclose (stdout))
  /src/external/gpl3/gcc.old/dist/gcc/
genmddump.cc 59 return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
gencodes.cc 91 if (ferror (stdout) || fflush (stdout) || fclose (stdout))
  /src/external/gpl2/rcs/dist/src/
ident.c 154 if (ferror(stdout) || fclose(stdout)!=0) {
194 if (ferror(stdout))
199 while (c != EOF || ! (feof(file)|ferror(file))) {
203 if (ferror(stdout))
209 if (ferror(file) || fclose(file) != 0) {
236 if (c == EOF && feof(fp) | ferror(fp))
  /src/external/bsd/nvi/dist/ex/
ex_mkexrc.c 84 if (seq_save(sp, fp, "abbreviate ", SEQ_ABBREV) || ferror(fp))
86 if (seq_save(sp, fp, "map ", SEQ_COMMAND) || ferror(fp))
88 if (seq_save(sp, fp, "map! ", SEQ_INPUT) || ferror(fp))
90 if (opts_save(sp, fp) || ferror(fp))
  /src/external/lgpl3/gmp/dist/mpq/
out_str.c 52 return ferror (stream) ? 0 : written;
  /src/common/dist/zlib/examples/
zpipe.c 55 if (ferror(source)) {
70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
113 if (ferror(source)) {
136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
156 if (ferror(stdin))
158 if (ferror(stdout))
  /src/external/gpl3/binutils/dist/zlib/examples/
zpipe.c 55 if (ferror(source)) {
70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
113 if (ferror(source)) {
136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
156 if (ferror(stdin))
158 if (ferror(stdout))
  /src/external/gpl3/binutils.old/dist/zlib/examples/
zpipe.c 55 if (ferror(source)) {
70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
113 if (ferror(source)) {
136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
156 if (ferror(stdin))
158 if (ferror(stdout))
  /src/external/gpl3/gdb/dist/zlib/examples/
zpipe.c 55 if (ferror(source)) {
70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
113 if (ferror(source)) {
136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
156 if (ferror(stdin))
158 if (ferror(stdout))
  /src/external/gpl3/gdb.old/dist/zlib/examples/
zpipe.c 55 if (ferror(source)) {
70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
113 if (ferror(source)) {
136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
156 if (ferror(stdin))
158 if (ferror(stdout))
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/config/mingw/
msvc.c 131 #ifdef ferror
132 #undef ferror macro
135 ferror (FILE *fp) function
140 #endif /* ferror */
  /src/external/lgpl3/mpc/dist/tests/
tpl_native.c 40 if (ferror (datafile_context->fd) || n == 0 || n == EOF)
72 if (ferror (datafile_context->fd) || n == 0 || n == EOF)
105 if (ferror (datafile_context->fd) || n == 0 || n == EOF)
  /src/bin/echo/
echo.c 72 if (ferror(stdout) != 0)
  /src/external/gpl2/xcvs/dist/lib/
closeout.c 70 the failure. That's what the ferror test is checking below.
79 bool prev_fail = ferror (stdout);
88 /* If ferror returned zero, no data remains to be flushed, and we'd

Completed in 36 milliseconds

1 2 3 4 5 6 7 8 91011>>