/vbox/src/VBox/Runtime/common/misc/ |
H A D | RTAssertMsg2.cpp | 39 va_list va; local 40 va_start(va, pszFormat); 41 RTAssertMsg2V(pszFormat, va); 42 va_end(va);
|
H A D | RTAssertMsg2Add.cpp | 39 va_list va; local 40 va_start(va, pszFormat); 41 RTAssertMsg2AddV(pszFormat, va); 42 va_end(va);
|
H A D | RTAssertMsg2AddWeak.cpp | 39 va_list va; local 40 va_start(va, pszFormat); 41 RTAssertMsg2AddWeakV(pszFormat, va); 42 va_end(va);
|
H A D | RTAssertMsg2AddWeakV.cpp | 35 RTDECL(void) RTAssertMsg2AddWeakV(const char *pszFormat, va_list va) argument 37 RTAssertMsg2AddV(pszFormat, va);
|
H A D | RTAssertMsg2Weak.cpp | 39 va_list va; local 40 va_start(va, pszFormat); 41 RTAssertMsg2WeakV(pszFormat, va); 42 va_end(va);
|
H A D | RTAssertMsg2WeakV.cpp | 35 RTDECL(void) RTAssertMsg2WeakV(const char *pszFormat, va_list va) argument 37 RTAssertMsg2V(pszFormat, va);
|
H A D | RTFileOpenF.cpp | 37 va_list va; local 38 va_start(va, pszFilenameFmt); 39 int rc = RTFileOpenV(pFile, fOpen, pszFilenameFmt, va); 40 va_end(va);
|
H A D | RTFileOpenV.cpp | 39 RTR3DECL(int) RTFileOpenV(PRTFILE pFile, uint64_t fOpen, const char *pszFilenameFmt, va_list va) argument 42 size_t cchFilename = RTStrPrintfV(szFilename, sizeof(szFilename), pszFilenameFmt, va);
|
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstFileAppendWin-1.cpp | 45 va_list va; local 48 va_start(va, pszFormat); 49 vprintf(pszFormat, va); 50 va_end(va); 58 va_list va; local 61 va_start(va, pszFormat); 62 vprintf(pszFormat, va); 63 va_end(va);
|
/vbox/src/libs/kStuff/iprt/ |
H A D | kHlpAssert-iprt.cpp | 36 va_list va; local 37 va_start(va, pszFormat); 38 RTAssertMsg2WeakV(pszFormat, va); 39 va_end(va);
|
/vbox/src/VBox/Installer/win/InstallHelper/ |
H A D | VBoxCommon.cpp | 34 va_list va; local 35 va_start(va, format); 36 ret = _vsnwprintf(buffer, cbBuffer, format, va); 37 va_end(va);
|
/vbox/src/VBox/Runtime/common/err/ |
H A D | errinfo.cpp | 55 va_list va; local 56 va_start(va, pszFormat); 57 RTErrInfoSetV(pErrInfo, rc, pszFormat, va); 58 va_end(va); 63 RTDECL(int) RTErrInfoSetV(PRTERRINFO pErrInfo, int rc, const char *pszFormat, va_list va) argument 70 RTStrPrintfV(pErrInfo->pszMsg, pErrInfo->cbMsg, pszFormat, va); 98 va_list va; local 99 va_start(va, pszFormat); 100 RTErrInfoAddV(pErrInfo, rc, pszFormat, va); 101 va_end(va); 106 RTErrInfoAddV(PRTERRINFO pErrInfo, int rc, const char *pszFormat, va_list va) argument [all...] |
/vbox/src/VBox/Runtime/common/string/ |
H A D | strhash1.cpp | 53 va_list va; local 54 va_start(va, cPairs); 55 uint32_t uHash = RTStrHash1ExNV(cPairs, va); 56 va_end(va); 61 RTDECL(uint32_t) RTStrHash1ExNV(size_t cPairs, va_list va) argument 66 const char *psz = va_arg(va, const char *); 67 size_t cch = va_arg(va, size_t);
|
/vbox/src/VBox/Runtime/r0drv/darwin/ |
H A D | assert-r0drv-darwin.cpp | 52 DECLHIDDEN(void) rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) argument 56 RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va);
|
/vbox/src/VBox/Runtime/r0drv/freebsd/ |
H A D | assert-r0drv-freebsd.c | 53 DECLHIDDEN(void) rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) argument 57 RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va);
|
/vbox/src/VBox/Runtime/r0drv/haiku/ |
H A D | assert-r0drv-haiku.c | 52 void rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) argument 56 RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va);
|
/vbox/src/VBox/Runtime/r0drv/linux/ |
H A D | assert-r0drv-linux.c | 53 DECLHIDDEN(void) rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) argument 57 RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va);
|
/vbox/src/VBox/Runtime/r0drv/nt/ |
H A D | assert-r0drv-nt.cpp | 49 DECLHIDDEN(void) rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) argument 53 RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va);
|
/vbox/src/VBox/Runtime/r0drv/solaris/ |
H A D | assert-r0drv-solaris.c | 52 DECLHIDDEN(void) rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) argument 56 RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va);
|
/vbox/src/VBox/VMM/VMMAll/ |
H A D | VMAll.cpp | 209 va_list va; local 210 va_start(va, pszFormat); 211 int rc = VMSetRuntimeErrorV(pVM, fFlags, pszErrorId, pszFormat, va); 212 va_end(va); 228 * @param va Error message arguments. 232 VMMDECL(int) VMSetRuntimeErrorV(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va) argument 264 va_copy(va2, va); /* Have to make a copy here or GCC will break. */ 271 char *pszMessage = MMR3HeapAPrintfV(pVM, MM_TAG_VM, pszFormat, va); 283 vmSetRuntimeErrorCopy(pVM, fFlags, pszErrorId, pszFormat, va); 304 * @param va Erro 308 vmSetRuntimeErrorCopy(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va) argument [all...] |
/vbox/src/VBox/Runtime/r0drv/os2/ |
H A D | assert-r0drv-os2.cpp | 77 DECLHIDDEN(void) rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) argument 81 va_copy(vaCopy, va); 88 cch += RTStrFormatV(rtR0Os2AssertOutputCB, &pch, NULL, NULL, pszFormat, va);
|
/vbox/src/VBox/HostDrivers/Support/ |
H A D | SUPR3HardenedIPRT.cpp | 97 DECLHIDDEN(void) supR3HardenedFatalMsgV(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, va_list va) argument 100 va_copy(vaCopy, va); 109 va_list va; local 110 va_start(va, pszMsgFmt); 111 supR3HardenedFatalMsgV(pszWhere, enmWhat, rc, pszMsgFmt, va); 112 va_end(va); 116 DECLHIDDEN(void) supR3HardenedFatalV(const char *pszFormat, va_list va) argument 119 va_copy(vaCopy, va); 127 va_list va; local 128 va_start(va, pszForma 134 supR3HardenedErrorV(int rc, bool fFatal, const char *pszFormat, va_list va) argument 151 va_list va; local [all...] |
/vbox/src/VBox/HostServices/auth/simple/ |
H A D | VBoxAuthSimple.cpp | 43 va_list va; local 45 va_start(va, fmt); 49 vsnprintf(buffer, sizeof(buffer), fmt, va); 58 va_end (va);
|
/vbox/src/VBox/HostServices/auth/winlogon/ |
H A D | winlogon.cpp | 32 va_list va; local 34 va_start(va, fmt); 38 _vsnprintf (buffer, sizeof (buffer), fmt, va); 49 va_end (va);
|
/vbox/src/VBox/Main/cbinding/ |
H A D | VBoxCAPIGlue.c | 108 va_list va; local 109 va_start(va, pszFormat); 110 vsnprintf(g_szVBoxErrMsg, sizeof(g_szVBoxErrMsg), pszFormat, va); 111 va_end(va);
|