Searched refs:pszWhere (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/HostDrivers/Support/
H A DSUPR3HardenedIPRT.cpp97 DECLHIDDEN(void) supR3HardenedFatalMsgV(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, va_list va) argument
101 AssertFatalMsgFailed(("%s (rc=%Rrc): %N", pszWhere, rc, pszMsgFmt, &vaCopy));
107 DECLHIDDEN(void) supR3HardenedFatalMsg(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, ...) argument
111 supR3HardenedFatalMsgV(pszWhere, enmWhat, rc, pszMsgFmt, va);
H A DSUPLibInternal.h395 DECLHIDDEN(void) supR3HardenedFatalMsgV(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, va_list va);
400 DECLHIDDEN(void) supR3HardenedFatalMsg(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, ...);
480 DECLHIDDEN(void) supR3HardenedWinReportErrorToParent(const char *pszWhere, SUPINITOP enmWhat, int rc,
H A DSUPR3HardenedMain.cpp1151 DECLHIDDEN(void) supR3HardenedFatalMsgV(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, va_list va) argument
1156 supR3HardenedLog("Error %d in %s! (enmWhat=%d)\n", rc, pszWhere, enmWhat);
1169 g_pfnRTLogRelPrintf("supR3HardenedFatalMsgV: %s enmWhat=%d rc=%Rrc (%#x)\n", pszWhere, enmWhat, rc);
1179 suplibHardenedPrintF("Error %d in %s!\n", rc, pszWhere);
1240 pfnTrustedError(pszWhere, enmWhat, rc, pszMsgFmt, va);
1252 supR3HardenedWinReportErrorToParent(pszWhere, enmWhat, rc, pszMsgFmt, va);
1262 DECLHIDDEN(void) supR3HardenedFatalMsg(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, ...) argument
1266 supR3HardenedFatalMsgV(pszWhere, enmWhat, rc, pszMsgFmt, va);
/vbox/src/VBox/Frontends/VirtualBox/src/
H A Dmain.cpp615 extern "C" DECLEXPORT(void) TrustedError(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, va_list va) argument
628 QString strTitle = QApplication::tr("VirtualBox - Error In %1").arg(pszWhere);
/vbox/src/VBox/VMM/include/
H A DTMInternal.h758 void tmTimerQueuesSanityChecks(PVM pVM, const char *pszWhere);
/vbox/src/VBox/VMM/VMMAll/
H A DTMAll.cpp558 void tmTimerQueuesSanityChecks(PVM pVM, const char *pszWhere) argument
579 AssertMsg((int)pCur->enmClock == i, ("%s: %d != %d\n", pszWhere, pCur->enmClock, i));
580 AssertMsg(TMTIMER_GET_PREV(pCur) == pPrev, ("%s: %p != %p\n", pszWhere, TMTIMER_GET_PREV(pCur), pPrev)); local
587 ("%s: %RI32\n", pszWhere, pCur->offScheduleNext));
594 AssertMsgFailed(("%s: Invalid state enmState=%d %s\n", pszWhere, enmState, tmTimerState(enmState)));
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPR3HardenedMain-win.cpp3035 * @param pszWhere Who's having child rasing troubles.
3040 static void supR3HardenedWinKillChild(HANDLE hProcess, const char *pszWhere, int rc, const char *pszFormat, ...) argument
3087 supR3HardenedFatalMsgV(pszWhere, kSupInitOp_Misc, rc, pszFormat, va);
5400 * @param pszWhere Where this error occured, if fatal message. NULL
5408 DECLHIDDEN(void) supR3HardenedWinReportErrorToParent(const char *pszWhere, SUPINITOP enmWhat, int rc, argument
5411 if (pszWhere)
5412 RTStrCopy(g_ProcParams.szWhere, sizeof(g_ProcParams.szWhere), pszWhere);
/vbox/src/VBox/HostDrivers/VBoxNetFlt/linux/
H A DVBoxNetFlt-linux.c984 static void vboxNetFltDumpPacket(PINTNETSG pSG, bool fEgress, const char *pszWhere, int iIncrement) argument
1003 fEgress ? "-->" : "<--", pszWhere,
/vbox/include/VBox/
H A Dsup.h1029 * @param pszWhere Where the error occurred (function name).
1035 typedef DECLCALLBACK(void) FNSUPTRUSTEDERROR(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, va_list va);
/vbox/src/VBox/VMM/VMMR3/
H A DPGMSavedState.cpp1290 static void pgmR3StateVerifyCrc32ForPage(void const *pvPage, PPGMRAMRANGE pCur, PPGMLIVESAVERAMPAGE paLSPages, uint32_t iPage, const char *pszWhere) argument
1300 pCur->GCPhys + ((RTGCPHYS)iPage << PAGE_SHIFT), &pCur->aPages[iPage], pszWhere));
1314 static void pgmR3StateVerifyCrc32ForRamPage(PVM pVM, PPGMRAMRANGE pCur, PPGMLIVESAVERAMPAGE paLSPages, uint32_t iPage, const char *pszWhere) argument
1324 pgmR3StateVerifyCrc32ForPage(pvPage, pCur, paLSPages, iPage, pszWhere);
H A DPGM.cpp3742 const char *pszWhere = paArgs[0].u.pszString; local
3743 if (!strcmp(pszWhere, "handy"))
3746 return DBGCCmdHlpPrintf(pCmdHlp, "error: Invalid 'where' value: %s.\n", pszWhere);
/vbox/src/VBox/Storage/
H A DVMDK.cpp5188 * @param pszWhere UTF-8 string to search in.
5192 static char *vmdkStrReplace(const char *pszWhere, const char *pszWhat, argument
5195 AssertPtr(pszWhere);
5198 const char *pszFoundStr = strstr(pszWhere, pszWhat);
5201 size_t cFinal = strlen(pszWhere) + 1 + strlen(pszByWhat) - strlen(pszWhat);
5206 memcpy(pszTmp, pszWhere, pszFoundStr - pszWhere);
5207 pszTmp += pszFoundStr - pszWhere;

Completed in 117 milliseconds