Searched defs:pszFormat (Results 1 - 25 of 145) sorted by relevance

123456

/vbox/src/VBox/Runtime/common/misc/
H A DRTAssertMsg2.cpp37 RTDECL(void) RTAssertMsg2(const char *pszFormat, ...) argument
40 va_start(va, pszFormat);
41 RTAssertMsg2V(pszFormat, va);
H A DRTAssertMsg2Add.cpp37 RTDECL(void) RTAssertMsg2Add(const char *pszFormat, ...) argument
40 va_start(va, pszFormat);
41 RTAssertMsg2AddV(pszFormat, va);
H A DRTAssertMsg2AddWeak.cpp37 RTDECL(void) RTAssertMsg2AddWeak(const char *pszFormat, ...) argument
40 va_start(va, pszFormat);
41 RTAssertMsg2AddWeakV(pszFormat, va);
H A DRTAssertMsg2AddWeakV.cpp35 RTDECL(void) RTAssertMsg2AddWeakV(const char *pszFormat, va_list va) argument
37 RTAssertMsg2AddV(pszFormat, va);
H A DRTAssertMsg2Weak.cpp37 RTDECL(void) RTAssertMsg2Weak(const char *pszFormat, ...) argument
40 va_start(va, pszFormat);
41 RTAssertMsg2WeakV(pszFormat, va);
H A DRTAssertMsg2WeakV.cpp35 RTDECL(void) RTAssertMsg2WeakV(const char *pszFormat, va_list va) argument
37 RTAssertMsg2V(pszFormat, va);
/vbox/src/VBox/Runtime/common/log/
H A Dlogrelellipsis.cpp48 * @param pszFormat Format string.
52 RTDECL(void) RTLogRelLogger(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup, const char *pszFormat, ...) argument
55 va_start(args, pszFormat);
56 RTLogRelLoggerV(pLogger, fFlags, iGroup, pszFormat, args);
65 * @param pszFormat Printf like format string.
66 * @param ... Optional arguments as specified in pszFormat.
70 RTDECL(void) RTLogRelPrintf(const char *pszFormat, ...) argument
73 va_start(args, pszFormat);
74 RTLogRelPrintfV(pszFormat, args);
H A Dlogellipsis.cpp43 * @param pszFormat Format string.
46 RTDECL(void) RTLogLogger(PRTLOGGER pLogger, void *pvCallerRet, const char *pszFormat, ...) argument
49 va_start(args, pszFormat);
54 RTLogLoggerExV(pLogger, 0, ~0U, pszFormat, args);
56 RTLogLoggerExV(pLogger, 0, ~0U, pszFormat, args);
75 * @param pszFormat Format string.
79 RTDECL(void) RTLogLoggerEx(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup, const char *pszFormat, ...) argument
82 va_start(args, pszFormat);
83 RTLogLoggerExV(pLogger, fFlags, iGroup, pszFormat, args);
92 * @param pszFormat Print
97 RTLogPrintf(const char *pszFormat, ...) argument
[all...]
H A Dlogcom.cpp68 * @param pszFormat Format string.
71 RTDECL(size_t) RTLogComPrintf(const char *pszFormat, ...) argument
75 va_start(args, pszFormat);
76 cb = RTLogComPrintfV(pszFormat, args);
88 * @param pszFormat Format string.
91 RTDECL(size_t) RTLogComPrintfV(const char *pszFormat, va_list args) argument
93 return RTLogFormatV(rtLogComOutput, NULL, pszFormat, args);
H A Dlogformat.cpp62 * @param pszFormat Format string.
65 RTDECL(size_t) RTLogFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArg, const char *pszFormat, va_list args) argument
67 return RTStrFormatV(pfnOutput, pvArg, rtlogFormatStr, NULL, pszFormat, args);
H A Dlogrel.cpp115 * @param pszFormat Format string.
118 RTDECL(void) RTLogRelLoggerV(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup, const char *pszFormat, va_list args) argument
129 RTLogLoggerExV(pLogger, fFlags, iGroup, pszFormat, args);
137 * @param pszFormat Printf like format string.
138 * @param args Optional arguments as specified in pszFormat.
142 RTDECL(void) RTLogRelPrintfV(const char *pszFormat, va_list args) argument
144 RTLogRelLoggerV(NULL, 0, ~0U, pszFormat, args);
/vbox/src/VBox/Additions/WINNT/VBoxCredProv/
H A DVBoxCredProvUtils.cpp38 * @param pszFormat The message text.
41 void VBoxCredProvVerbose(DWORD dwLevel, const char *pszFormat, ...) argument
46 va_start(args, pszFormat);
48 RTStrAPrintfV(&psz, pszFormat, args);
/vbox/src/VBox/Runtime/testcase/
H A DtstFileAppendWin-1.cpp43 static int MyFailure(const char *pszFormat, ...) argument
48 va_start(va, pszFormat);
49 vprintf(pszFormat, va);
56 void MyError(const char *pszFormat, ...) argument
61 va_start(va, pszFormat);
62 vprintf(pszFormat, va);
/vbox/src/recompiler/Sun/crt/
H A Dstdio.h45 DECLINLINE(int) fprintf(FILE *ignored, const char *pszFormat, ...) argument
54 va_start(va, pszFormat);
55 RTLogLoggerExV(NULL, 0, LOG_GROUP_REM_PRINTF, pszFormat, va);
/vbox/src/libs/kStuff/iprt/
H A DkHlpAssert-iprt.cpp34 KHLP_DECL(void) kHlpAssertMsg2(const char *pszFormat, ...) argument
37 va_start(va, pszFormat);
38 RTAssertMsg2WeakV(pszFormat, va);
/vbox/src/VBox/Runtime/VBox/
H A Dlogbackdoor.cpp45 RTDECL(size_t) RTLogBackdoorPrintf(const char *pszFormat, ...) argument
50 va_start(args, pszFormat);
51 cb = RTLogBackdoorPrintfV(pszFormat, args);
60 RTDECL(size_t) RTLogBackdoorPrintfV(const char *pszFormat, va_list args) argument
62 return RTLogFormatV(rtLogBackdoorOutput, NULL, pszFormat, args);
/vbox/src/VBox/Runtime/common/err/
H A Derrinfo.cpp53 RTDECL(int) RTErrInfoSetF(PRTERRINFO pErrInfo, int rc, const char *pszFormat, ...) argument
56 va_start(va, pszFormat);
57 RTErrInfoSetV(pErrInfo, rc, pszFormat, va);
63 RTDECL(int) RTErrInfoSetV(PRTERRINFO pErrInfo, int rc, const char *pszFormat, va_list va) argument
70 RTStrPrintfV(pErrInfo->pszMsg, pErrInfo->cbMsg, pszFormat, va);
96 RTDECL(int) RTErrInfoAddF(PRTERRINFO pErrInfo, int rc, const char *pszFormat, ...) argument
99 va_start(va, pszFormat);
100 RTErrInfoAddV(pErrInfo, rc, pszFormat, va);
106 RTDECL(int) RTErrInfoAddV(PRTERRINFO pErrInfo, int rc, const char *pszFormat, va_list va) argument
116 RTStrPrintfV(pszOut, &pErrInfo->pszMsg[pErrInfo->cbMsg] - pszOut, pszFormat, v
[all...]
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dassert-r0drv-darwin.cpp52 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 Dassert-r0drv-freebsd.c53 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 Dassert-r0drv-haiku.c52 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 Dassert-r0drv-linux.c53 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 Dassert-r0drv-nt.cpp49 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 Dassert-r0drv-solaris.c52 DECLHIDDEN(void) rtR0AssertNativeMsg2V(bool fInitial, const char *pszFormat, va_list va) argument
56 RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va);
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxOemHookStatusCodeLib/
H A DVBoxOemHookStatusCodeLib.c139 CHAR8 *pszFormat; local
158 else if ( ReportStatusCodeExtractDebugInfo(Data, &uErrorLevel, &bs, &pszFormat)
160 || VBoxSecExtractDebugInfo(Data, &uErrorLevel, &va, &pszFormat)
167 cch = AsciiBSPrint(szBuf, sizeof(szBuf), pszFormat, bs);
/vbox/src/VBox/VMM/VMMAll/
H A DVMAll.cpp47 * @param pszFormat Error message format string.
51 VMMDECL(int) VMSetError(PVM pVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...) argument
54 va_start(args, pszFormat);
55 int rc2 = VMSetErrorV(pVM, rc, RT_SRC_POS_ARGS, pszFormat, args); Assert(rc == rc2); NOREF(rc2);
71 * @param pszFormat Error message format string.
75 VMMDECL(int) VMSetErrorV(PVM pVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list args) argument
84 pVM->pUVM, rc, RT_SRC_POS_ARGS, pszFormat, &va2);
91 vmSetErrorCopy(pVM, rc, RT_SRC_POS_ARGS, pszFormat, args);
108 * @param pszFormat Error message format string.
112 void vmSetErrorCopy(PVM pVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_lis argument
207 VMSetRuntimeError(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...) argument
232 VMSetRuntimeErrorV(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va) argument
308 vmSetRuntimeErrorCopy(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va) argument
[all...]

Completed in 4409 milliseconds

123456