HomeSort by relevance Sort by last modified time
    Searched refs:vfprintf (Results 1 - 25 of 457) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
vfprintf-invalid-redecl.c 4 // The following declaration is not compatible with vfprintf(), but make
6 char vfprintf(); // expected-warning {{incompatible redeclaration of library function 'vfprintf'}} expected-note {{'vfprintf' is a builtin}}
vfprintf-valid-redecl.c 8 // `vfprintf' in this file, and we getPreviousDecl()->getTypeSourceInfo() on it, then we will
10 int vfprintf(void) { return 0; } function
14 // The following declaration is compatible with vfprintf, so we shouldn't
16 int vfprintf();
  /external/clang/test/CodeGen/
vfprintf.c 4 int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);
6 vfprintf(0, " ", ap);
  /external/clang/test/CodeGen/Inputs/
stdio.h 2 extern int vfprintf(struct FILE *s, const char *format, __builtin_va_list arg);
8 return vfprintf (0, 0, 0);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vprintf.c 39 return (vfprintf(stdout, fmt, ap));
printf.c 45 ret = vfprintf(stdout, fmt, ap);
fprintf.c 45 ret = vfprintf(fp, fmt, ap);
  /ndk/sources/android/support/src/musl-stdio/
vprintf.c 5 return vfprintf(stdout, fmt, ap);
printf.c 9 ret = vfprintf(stdout, fmt, ap);
  /external/chromium_org/third_party/skia/src/ports/
SkDebug_stdio.cpp 18 vfprintf(stderr, format, args);
  /external/skia/src/ports/
SkDebug_stdio.cpp 18 vfprintf(stderr, format, args);
  /external/bison/lib/
printf.c 36 retval = vfprintf (stdout, format, args);
  /external/qemu/distrib/libsparse/src/
sparse_err.c 28 vfprintf(stderr, fmt, argp);
  /system/core/libsparse/
sparse_err.c 28 vfprintf(stderr, fmt, argp);
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdio-write.c 73 retval = vfprintf (stdout, format, args);
88 retval = vfprintf (stream, format, args);
99 return vfprintf (stdout, format, args);
103 # if !REPLACE_VPRINTF_POSIX /* avoid collision with vfprintf.c */
105 vfprintf (FILE *stream, const char *format, va_list args) function
106 #undef vfprintf macro
108 CALL_WITH_SIGPIPE_EMULATION (int, vfprintf (stream, format, args), ret == EOF)
  /external/chromium_org/third_party/icu/source/tools/genrb/
errmsg.c 29 vfprintf(stderr, msg, va);
67 vfprintf(stderr, msg, va);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
util.c 11 vfprintf(stderr, format, args);
18 vfprintf(stderr, format, args);
  /frameworks/base/tools/aapt/
IndentPrinter.h 24 vfprintf(mStream, fmt, args);
32 vfprintf(mStream, fmt, args);
  /bionic/libc/bionic/
err.c 67 (void)vfprintf(stderr, fmt, ap);
80 (void)vfprintf(stderr, fmt, ap);
113 (void)vfprintf(stderr, fmt, ap);
124 (void)vfprintf(stderr, fmt, ap);
  /external/elfutils/0.153/bionic-fixup/
error.h 30 vfprintf(stderr, fmt, lst);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
util.c 39 vfprintf(stderr, format, args);
64 vfprintf(stderr, format, args);
85 vfprintf(stderr, format, args);
  /external/sonivox/arm-fm-22k/host_src/
eas_report.c 164 vfprintf(debugFile, debugMessages[i].m_pDebugMsg, vargs);
199 vfprintf(debugFile, fmt, vargs);
229 vfprintf(debugFile, fmt, vargs);
  /external/sonivox/arm-hybrid-22k/host_src/
eas_report.c 164 vfprintf(debugFile, debugMessages[i].m_pDebugMsg, vargs);
199 vfprintf(debugFile, fmt, vargs);
229 vfprintf(debugFile, fmt, vargs);
  /external/sonivox/arm-wt-22k/host_src/
eas_report.c 164 vfprintf(debugFile, debugMessages[i].m_pDebugMsg, vargs);
199 vfprintf(debugFile, fmt, vargs);
229 vfprintf(debugFile, fmt, vargs);
  /external/chromium_org/third_party/WebKit/Source/wtf/
FilePrintStream.cpp 55 vfprintf(m_file, format, argList);

Completed in 1593 milliseconds

1 2 3 4 5 6 7 8 91011>>