/vbox/src/VBox/HostDrivers/Support/ |
H A D | SUPR3HardenedIPRT.cpp | 134 DECLHIDDEN(int) supR3HardenedErrorV(int rc, bool fFatal, const char *pszFormat, va_list va) argument 136 if (fFatal) 149 DECLHIDDEN(int) supR3HardenedError(int rc, bool fFatal, const char *pszFormat, ...) argument 153 supR3HardenedErrorV(rc, fFatal, pszFormat, va);
|
H A D | SUPR3HardenedVerify.cpp | 252 * @returns VINF_SUCCESS on success, some error code on failure (fFatal 258 * @param fFatal Whether failures should be treated as fatal (true) or not (false). 260 static int supR3HardenedMakePath(SUPINSTDIR enmDir, char *pszDst, size_t cchDst, bool fFatal) argument 301 return supR3HardenedError(VERR_INTERNAL_ERROR, fFatal, 305 supR3HardenedError(rc, fFatal, 315 * @returns VINF_SUCCESS on success, some error code on failure (fFatal 322 * @param fFatal Whether failures should be treated as fatal (true) or not (false). 324 static int supR3HardenedMakeFilePath(PCSUPINSTFILE pFile, char *pszDst, size_t cchDst, bool fWithFilename, bool fFatal) argument 329 int rc = supR3HardenedMakePath(pFile->enmDir, pszDst, cchDst, fFatal); 340 rc = supR3HardenedError(VERR_BUFFER_OVERFLOW, fFatal, 357 supR3HardenedVerifyFixedDir(SUPINSTDIR enmDir, bool fFatal) argument 501 supR3HardenedVerifyFileOpen(PCSUPINSTFILE pFile, bool fFatal, intptr_t *phFile) argument 555 supR3HardenedVerifyFileSignature(PCSUPINSTFILE pFile, PSUPVERIFIEDFILE pVerified, bool fFatal, bool fLeaveFileOpen) argument 630 supR3HardenedVerifyFileInternal(int iFile, bool fFatal, bool fLeaveFileOpen, bool fVerifyAll) argument 763 supR3HardenedVerifySameFile(int iFile, const char *pszFilename, bool fFatal) argument 828 supR3HardenedVerifyFixedFile(const char *pszFilename, bool fFatal) argument 856 supR3HardenedVerifyProgram(const char *pszProgName, bool fFatal, bool fLeaveOpen) argument 939 supR3HardenedVerifyAll(bool fFatal, const char *pszProgName) argument [all...] |
H A D | SUPR3HardenedMain.cpp | 1315 DECLHIDDEN(int) supR3HardenedErrorV(int rc, bool fFatal, const char *pszFormat, va_list va) argument 1317 if (fFatal) 1342 DECLHIDDEN(int) supR3HardenedError(int rc, bool fFatal, const char *pszFormat, ...) argument 1346 supR3HardenedErrorV(rc, fFatal, pszFormat, va); 1883 supR3HardenedVerifyAll(true /* fFatal */, pszProgName); 1900 supR3HardenedVerifyAll(true /* fFatal */, pszProgName);
|
/vbox/src/VBox/Frontends/VirtualBox/src/globals/ |
H A D | UIMessageCenter.cpp | 1682 void UIMessageCenter::showRuntimeError(const CConsole &console, bool fFatal, const QString &strErrorId, const QString &strErrorMsg) const argument 1695 if (fFatal) 1697 /* The machine must be paused on fFatal errors: */ 1704 if (fFatal) 1767 if (fFatal) 1769 /* Power down after a fFatal error: */
|
/vbox/src/VBox/Frontends/VBoxSDL/ |
H A D | VBoxSDL.cpp | 498 BOOL fFatal; local 500 pRTEEv->COMGETTER(Fatal)(&fFatal); 505 if (fFatal)
|
/vbox/src/VBox/Main/src-client/ |
H A D | ConsoleImpl.cpp | 9144 bool const fFatal = !!(fFlags & VMSETRTERR_FLAGS_FATAL); local 9153 fFatal, pszErrorId, message.c_str())); 9155 that->i_onRuntimeError(BOOL(fFatal), Bstr(pszErrorId).raw(), Bstr(message).raw());
|