Lines Matching defs:pszFormat

47  * @param   pszFormat       Error message format string.
51 VMMDECL(int) VMSetError(PVM pVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)
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)
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_list args)
114 NOREF(pVM); NOREF(rc); RT_SRC_POS_NOREF(); NOREF(pszFormat); NOREF(args);
126 size_t cchFormat = strlen(pszFormat);
202 * @param pszFormat Error message format string.
207 VMMDECL(int) VMSetRuntimeError(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)
210 va_start(va, pszFormat);
211 int rc = VMSetRuntimeErrorV(pVM, fFlags, pszErrorId, pszFormat, va);
227 * @param pszFormat Error message format string.
232 VMMDECL(int) VMSetRuntimeErrorV(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va)
246 AssertPtr(pszFormat);
247 Assert(RTStrEnd(pszFormat, 512) != NULL);
266 (PFNRT)vmR3SetRuntimeErrorV, 5, pVM, fFlags, pszErrorId, pszFormat, &va2);
271 char *pszMessage = MMR3HeapAPrintfV(pVM, MM_TAG_VM, pszFormat, va);
283 vmSetRuntimeErrorCopy(pVM, fFlags, pszErrorId, pszFormat, va);
303 * @param pszFormat Error message format string.
308 void vmSetRuntimeErrorCopy(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va)
310 NOREF(pVM); NOREF(fFlags); NOREF(pszErrorId); NOREF(pszFormat); NOREF(va);
321 size_t cchFormat = strlen(pszFormat);