Searched refs:vsprintf (Results 1 - 25 of 108) sorted by relevance

12345

/macosx-10.10.1/ksh-23/ksh/src/lib/libast/stdio/
H A D_stdvsprnt.c24 /* OBSOLETE 20010101 -- use vsprintf */
31 return vsprintf(s, fmt, args);
H A Dvsprintf.c27 vsprintf(char* s, const char* fmt, va_list args) function
/macosx-10.10.1/ntp-92/libntp/
H A Dsnprintf.c36 rp = vsprintf(str, fmt, ap);
40 rval = vsprintf(str, fmt, ap);
55 return (strlen(vsprintf(str, fmt, ap)));
57 return (vsprintf(str, fmt, ap));
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dvsprintf.c1 /* Simple implementation of vsprintf for systems without it.
3 implementations of stdio; newer ones should already have vsprintf.
32 #undef vsprintf macro
37 vsprintf (char *buf, const char *format, va_list ap) function
H A Dvasprintf.c1 /* Like vsprintf but provides a pointer to malloc'd storage, which must
49 Like @code{vsprintf}, but instead of passing a pointer to a buffer,
53 returned is the same as @code{vsprintf} would return. If memory could
146 return vsprintf (*result, format, args);
/macosx-10.10.1/ntp-92/libopts/compat/
H A Dsnprintf.c35 rp = vsprintf(str, fmt, ap);
41 rval = vsprintf(str, fmt, ap);
56 return (strlen(vsprintf(str, fmt, ap)));
58 return (vsprintf(str, fmt, ap));
/macosx-10.10.1/ntp-92/sntp/libopts/compat/
H A Dsnprintf.c35 rp = vsprintf(str, fmt, ap);
41 rval = vsprintf(str, fmt, ap);
56 return (strlen(vsprintf(str, fmt, ap)));
58 return (vsprintf(str, fmt, ap));
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dcurlx.h101 # undef vsprintf macro
112 # define vsprintf curlx_mvsprintf macro
H A Dchecksrc.pl157 if($l =~ /^(.*\W)(sprintf|vsprintf|strcat|strncat|gets)\s*\(/) {
/macosx-10.10.1/Libc-1044.1.2/secure/
H A Dvsprintf_chk.c37 done = vsprintf (dest, format, arg);
H A Dsprintf_chk.c39 done = vsprintf (dest, format, arg);
/macosx-10.10.1/curl-83.1.2/curl/include/curl/
H A Dmprintf.h51 # undef vsprintf macro
64 # define vsprintf vsprintf_was_used macro
67 # define vsprintf curl_mvsprintf macro
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/rde_critcl/
H A Dutil.c83 len = vsprintf(msg, pat, args);
104 len = vsprintf(msg, pat, args);
121 len = vsprintf(msg, pat, args);
/macosx-10.10.1/BerkeleyDB-21/db/clib/
H A Dsnprintf.c50 len = (size_t)vsprintf(str, fmt, ap);
66 * Bounded version of vsprintf.
86 len = (size_t)vsprintf(str, fmt, ap);
136 * vsprintf, etc. will be the same as sprintf, and check the easy one.
/macosx-10.10.1/Libc-1044.1.2/include/secure/
H A D_stdio.h40 /* sprintf, vsprintf, snprintf, vsnprintf */
64 #undef vsprintf macro
65 #define vsprintf(str, format, ap) \ macro
/macosx-10.10.1/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/wsock/common/
H A Dprintf.c74 vsprintf(msg, fmt, arg_ptr);
94 vsprintf(msg, fmt, arg_ptr);
/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dvsprintf.c34 static char sccsid[] = "@(#)vsprintf.c 8.1 (Berkeley) 6/4/93";
37 __FBSDID("$FreeBSD: src/lib/libc/stdio/vsprintf.c,v 1.16 2008/04/17 22:17:54 jhb Exp $");
66 vsprintf(char * __restrict str, const char * __restrict fmt, __va_list ap) function
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dc++locale.h49 #include <cstdio> // get std::vsnprintf or std::vsprintf
60 // fall back to the unsafe vsprintf which, in general, can be dangerous
82 const int __ret = std::vsprintf(__out, __fmt, __args);
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Drpcsvc.c185 vsprintf (buf, fmt, arg_ptr);
262 vsprintf (bptr, format, arg_ptr);
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dstdio_.h190 # define vsprintf rpl_vsprintf macro
191 extern int vsprintf (char *str, const char *format, va_list args)
195 # undef vsprintf macro
196 # define vsprintf(b,f,a) \ macro
197 (GL_LINK_WARNING ("vsprintf is not always POSIX compliant - " \
198 "use gnulib module vsprintf-posix for portable " \
200 vsprintf (b, f, a))
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dvprint.c68 * Ditto for vsprintf
71 vsprintf (str, fmt, ap) function
/macosx-10.10.1/bc-21/bc/lib/
H A Dtestmul.c56 vsprintf (error_mesg, mesg, args);
89 vsprintf (error_mesg, mesg, args);
/macosx-10.10.1/ncurses-44/ncurses/ncurses/base/
H A Dsafe_sprintf.c214 * Wrapper for vsprintf that allocates a buffer big enough to hold the result.
232 vsprintf(my_buffer, fmt, ap);
253 vsprintf(my_buffer, fmt, ap); /* ANSI */
/macosx-10.10.1/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dlog.c180 (void)vsprintf(buf, fmt, args);
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/win32/
H A Dsyslog.c102 vsprintf(buf, fmt, ap);

Completed in 304 milliseconds

12345