HomeSort by relevance Sort by last modified time
    Searched refs:vfprintf (Results 1 - 25 of 256) 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 4 // The following declaration is compatible with vfprintf, so we shouldn't
6 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/stdio/
vprintf.c 39 return (vfprintf(stdout, fmt, ap));
printf.c 44 ret = vfprintf(stdout, fmt, ap);
fprintf.c 44 ret = vfprintf(fp, fmt, ap);
  /external/bison/src/
complain.c 57 vfprintf (stderr, message, args);
72 vfprintf (stderr, message, args);
93 vfprintf (stderr, message, args);
108 vfprintf (stderr, message, args);
130 vfprintf (stderr, message, args);
146 vfprintf (stderr, message, args);
  /external/webkit/Source/ThirdParty/ANGLE/src/common/
debug.cpp 35 vfprintf(file, format, vararg);
  /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/icu4c/tools/genrb/
errmsg.c 29 vfprintf(stderr, msg, va);
67 vfprintf(stderr, msg, va);
  /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/bluetooth/glib/glib/
gprintfint.h 38 #define _g_vfprintf vfprintf
  /external/elfutils/bionic-fixup/
error.h 30 vfprintf(stderr, fmt, lst);
  /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/qemu/android/utils/
panic.c 20 vfprintf(stderr, fmt, args);
debug.c 23 vfprintf( stdout, format, args );
33 vfprintf( stdout, format, args );
40 vfprintf( stdout, format, args );
assert.c 45 vfprintf(stderr, fmt, args);
  /external/tcpdump/
vfprintf.c 24 "@(#) $Header: /tcpdump/master/tcpdump/vfprintf.c,v 1.6 2003/11/16 09:36:45 guy Exp $ (LBL)";
41 * Stock 4.3 doesn't have vfprintf.
44 vfprintf(f, fmt, args) function
  /external/e2fsprogs/lib/et/
vfprintf.c 19 static char sccsid[] = "@(#)vfprintf.c 5.2 (Berkeley) 6/27/88";
27 vfprintf(iop, fmt, ap) function
  /external/libxml2/
libxml.h 40 int vfprintf(FILE *, const char *, va_list);
  /external/linux-tools-perf/util/ui/
helpline.c 25 vfprintf(stderr, fmt, ap);
  /external/freetype/src/base/
ftdebug.c 60 vfprintf( stderr, fmt, ap );
74 vfprintf( stderr, fmt, ap );

Completed in 1172 milliseconds

1 2 3 4 5 6 7 8 91011