| /freebsd-14.2/contrib/wpa/src/utils/ |
| H A D | wpa_debug.c | 656 buflen = vsnprintf(NULL, 0, fmt, ap) + 1; in wpa_msg() 676 len = vsnprintf(buf, buflen, fmt, ap); in wpa_msg() 696 buflen = vsnprintf(NULL, 0, fmt, ap) + 1; in wpa_msg_ctrl() 706 len = vsnprintf(buf, buflen, fmt, ap); in wpa_msg_ctrl() 721 buflen = vsnprintf(NULL, 0, fmt, ap) + 1; in wpa_msg_global() 731 len = vsnprintf(buf, buflen, fmt, ap); in wpa_msg_global() 751 buflen = vsnprintf(NULL, 0, fmt, ap) + 1; in wpa_msg_global_ctrl() 761 len = vsnprintf(buf, buflen, fmt, ap); in wpa_msg_global_ctrl() 786 len = vsnprintf(buf, buflen, fmt, ap); in wpa_msg_no_global() 813 len = vsnprintf(buf, buflen, fmt, ap); in wpa_msg_global_only() [all …]
|
| /freebsd-14.2/sbin/dhclient/ |
| H A D | errwarn.c | 68 vsnprintf(mbuf, sizeof(mbuf), fbuf, list); in error() 102 vsnprintf(mbuf, sizeof(mbuf), fbuf, list); in warning() 128 vsnprintf(mbuf, sizeof(mbuf), fbuf, list); in note() 154 vsnprintf(mbuf, sizeof(mbuf), fbuf, list); in debug() 216 vsnprintf(mbuf, sizeof(mbuf), fbuf, list); in parse_warn()
|
| /freebsd-14.2/sys/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_string.c | 90 size = vsnprintf(NULL, 0, fmt, adx) + 1; in kmem_asprintf() 96 (void) vsnprintf(buf, size, fmt, adx); in kmem_asprintf() 130 n = vsnprintf(str, size, fmt, ap); in kmem_scnprintf()
|
| /freebsd-14.2/contrib/ntp/sntp/m4/ |
| H A D | snprintf.m4 | 106 # define vsnprintf to rpl_vsnprintf. 111 AC_CHECK_FUNC([vsnprintf], 115 [AC_CACHE_CHECK([whether vsnprintf is C99 compliant], 128 result = vsnprintf(buf, size, format, ap); 142 [Define if C99-compliant `vsnprintf' is available.]) 143 AC_MSG_CHECKING([if C99-snprintf replacement vsnprintf will be used]) 152 [AC_DEFINE([vsnprintf], [rpl_vsnprintf], 175 # The same will be done for vsnprintf, as if HW_FUNC_VSNPRINTF were 179 AC_REQUIRE([HW_FUNC_VSNPRINTF])dnl Our snprintf(3) calls vsnprintf(3). 218 # The same will be done for vsnprintf, as if HW_FUNC_VSNPRINTF were [all …]
|
| /freebsd-14.2/contrib/openpam/lib/libpam/ |
| H A D | openpam_vasprintf.c | 50 len = vsnprintf(NULL, 0, fmt, ap); in openpam_vasprintf() 53 ret = vsnprintf(*str, len + 1, fmt, apcopy); in openpam_vasprintf()
|
| /freebsd-14.2/contrib/mandoc/ |
| H A D | compat_vasprintf.c | 37 sz = vsnprintf(buf, sizeof(buf), format, ap2); in vasprintf() 41 if (vsnprintf(*ret, sz + 1, format, ap) == sz) in vasprintf()
|
| /freebsd-14.2/contrib/libpcap/missing/ |
| H A D | asprintf.c | 64 len = vsnprintf(&buf, sizeof buf, format, args); in pcapint_vasprintf() 75 ret = vsnprintf(str, str_size, format, args); in pcapint_vasprintf()
|
| /freebsd-14.2/sys/libkern/ |
| H A D | asprintf.c | 42 len = vsnprintf(&dummy, 0, format, tmp_va); in vasprintf() 55 ret = vsnprintf(*buf, len, format, va); in vasprintf()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Utility/ |
| H A D | VASprintf.cpp | 30 int length = ::vsnprintf(buf.data(), buf.size(), fmt, args); in VASprintf() 41 length = ::vsnprintf(buf.data(), buf.size(), fmt, copy_args); in VASprintf()
|
| /freebsd-14.2/contrib/gdtoa/ |
| H A D | stdio1.h | 93 #undef vsnprintf /* for MacOSX */ 98 #define vsnprintf Vsnprintf macro
|
| /freebsd-14.2/sys/cddl/compat/opensolaris/kern/ |
| H A D | opensolaris_string.c | 87 size = vsnprintf(NULL, 0, fmt, adx) + 1; in kmem_asprintf() 93 (void) vsnprintf(buf, size, fmt, adx); in kmem_asprintf()
|
| /freebsd-14.2/contrib/libfido2/openbsd-compat/ |
| H A D | bsd-asprintf.c | 46 ret = vsnprintf(string, INIT_SZ, fmt, ap2); in vasprintf() 60 ret = vsnprintf(newstr, len, fmt, ap2); in vasprintf()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/src/filesystem/ |
| H A D | format_string.h | 37 int ret = ::vsnprintf(buf.data(), buf.size(), msg, apcopy); in vformat_string() 49 ret = ::vsnprintf(&result[0], size_with_null, msg, ap); in vformat_string()
|
| /freebsd-14.2/crypto/openssh/openbsd-compat/ |
| H A D | bsd-asprintf.c | 52 ret = vsnprintf(string, INIT_SZ, fmt, ap2); in vasprintf() 66 ret = vsnprintf(newstr, len, fmt, ap2); in vasprintf()
|
| /freebsd-14.2/sys/contrib/openzfs/module/os/linux/spl/ |
| H A D | spl-err.c | 62 (void) vsnprintf(msg, sizeof (msg), fmt, ap); in spl_panic() 86 vsnprintf(msg, MAXMSGLEN, fmt, ap); in vcmn_err()
|
| /freebsd-14.2/sys/contrib/openzfs/lib/libuutil/ |
| H A D | uu_alloc.c | 116 M = vsnprintf(attic, 1, format, args); in uu_msprintf() 125 M = vsnprintf(b, m + 1, format, args); in uu_msprintf()
|
| /freebsd-14.2/contrib/lib9p/sbuf/ |
| H A D | sbuf.c | 92 req = vsnprintf(NULL, 0, fmt, copy); in sbuf_vprintf() 102 req = vsnprintf(s->s_buf + s->s_size, req + 1, fmt, args); in sbuf_vprintf()
|
| /freebsd-14.2/sys/contrib/zlib/ |
| H A D | gzguts.h | 85 # if !defined(vsnprintf) && !defined(NO_vsnprintf) 87 # define vsnprintf _vsnprintf macro
|
| /freebsd-14.2/sys/kern/ |
| H A D | kern_kthread.c | 149 vsnprintf(tdname, sizeof(tdname), fmt, ap); in kproc_create() 353 vsnprintf(tdname, sizeof(tdname), fmt, ap); in kthread_add() 515 vsnprintf(td->td_name, sizeof(td->td_name), fmt, ap); in kproc_kthread_add() 523 vsnprintf(buf, sizeof(buf), fmt, ap); in kproc_kthread_add()
|
| /freebsd-14.2/sys/contrib/zstd/zlibWrapper/ |
| H A D | gzguts.h | 93 # if !defined(vsnprintf) && !defined(NO_vsnprintf) 95 # define vsnprintf _vsnprintf macro
|
| /freebsd-14.2/sys/dev/isci/ |
| H A D | isci_logger.c | 60 vsnprintf(buffer, sizeof(buffer)-1, log_message, argp); in isci_log_message() 91 vsnprintf(buffer, sizeof(buffer)-1, log_message, argp); \
|
| /freebsd-14.2/contrib/dma/ |
| H A D | util.c | 151 vsnprintf(sufx, sizeof(sufx), fmt, ap); in setlogident() 169 vsnprintf(outs, sizeof(outs), fmt, ap); in errlog() 194 vsnprintf(outs, sizeof(outs), fmt, ap); in errlogx()
|
| /freebsd-14.2/contrib/tcpdump/lbl/ |
| H A D | os-osf4.h | 24 int vsnprintf(char *, size_t, const char *, va_list);
|
| /freebsd-14.2/contrib/atf/atf-c++/detail/ |
| H A D | application.cpp | 50 using ::vsnprintf; 68 std::vsnprintf(m_text, sizeof(m_text), fmt, ap); in usage_error()
|
| /freebsd-14.2/contrib/libpcap/lbl/ |
| H A D | os-osf4.h | 24 int vsnprintf(char *, size_t, const char *, va_list);
|