Searched defs:pszError (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Runtime/tools/
H A DRTManifest.cpp71 const char *pszError; local
72 rc = RTVfsChainOpenIoStream(pszManifest, RTFILE_O_READ | RTFILE_O_DENY_WRITE | RTFILE_O_OPEN, &hVfsIos, &pszError);
75 if (pszError && *pszError)
80 rc, pszManifest, pszError - pszManifest, "");
147 const char *pszError; local
148 int rc = RTVfsChainOpenIoStream(pszFilename, RTFILE_O_READ | RTFILE_O_DENY_WRITE | RTFILE_O_OPEN, &hVfsIos, &pszError);
151 if (pszError && *pszError)
155 rc, pszFilename, pszError
201 const char *pszError; local
[all...]
H A DRTGzip.cpp393 const char *pszError; local
394 rc = RTVfsChainOpenIoStream(pszFile, RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE, phVfsIos, &pszError);
397 if (pszError && *pszError)
402 rc, pszFile, pszError - pszFile, "");
/vbox/src/VBox/Devices/USB/testcase/
H A DtstOhciRegisterAccess.cpp103 const char *pszError = NULL; local
110 pszError = NULL;
135 pszError = "Writing changed value failed";
140 pszError = "Restore error 1";
144 pszError = "Writing back initial value failed";
149 for (unsigned iWord = 0; iWord < 2 && !pszError && !fTryAgain; iWord++)
162 pszError = s_apsz[iWord];
168 pszError = "Restore error 2";
176 if (!pszError && !fTryAgain)
187 pszError
274 const char *pszError = NULL; local
386 const char *pszError = NULL; local
[all...]
/vbox/src/VBox/Runtime/common/checksum/
H A Dmanifest2.cpp141 char *pszError; member in struct:RTMANIFESTEQUALS
142 /** The size of the buffer pszError points to. Can be 0. */
367 RTStrPrintf(pEquals->pszError, pEquals->cbError,
371 RTStrPrintf(pEquals->pszError, pEquals->cbError, "Attribute '%s' was not found in the 1st manifest", pAttr->szName);
407 RTStrPrintf(pEquals->pszError, pEquals->cbError, "'%s' was not found in the 1st manifest", pEntry->StrCore.pszString);
458 RTStrPrintf(pEquals->pszError, pEquals->cbError,
462 RTStrPrintf(pEquals->pszError, pEquals->cbError, "Attribute '%s' was not found in the 2nd manifest", pAttr1->szName);
476 RTStrPrintf(pEquals->pszError, pEquals->cbError,
480 RTStrPrintf(pEquals->pszError, pEquals->cbError,
557 RTStrPrintf(pEquals->pszError, pEqual
[all...]
/vbox/src/VBox/Runtime/common/zip/
H A Dunzipcmd.cpp257 const char *pszError; local
261 &pszError);
264 if (pszError && *pszError)
269 rc, pOpts->pszFile, pszError - pOpts->pszFile, "");
H A Dtarcmd.cpp194 const char *pszError; local
198 &pszError);
201 if (pszError && *pszError)
206 rc, pOpts->pszFile, pszError - pOpts->pszFile, "");
/vbox/src/VBox/Main/glue/
H A Dcom.cpp368 char *pszError, size_t cbError)
382 pszError, cbError,
363 VBoxLogRelCreate(const char *pcszEntity, const char *pcszLogFile, uint32_t fFlags, const char *pcszGroupSettings, const char *pcszEnvVarBase, uint32_t fDestFlags, uint32_t cMaxEntriesPerGroup, uint32_t cHistory, uint32_t uHistoryFileTime, uint64_t uHistoryFileSize, char *pszError, size_t cbError) argument
/vbox/src/VBox/Main/src-all/
H A DExtPackUtil.cpp646 * @param pszError The error buffer.
651 static int vboxExtPackReturnError(int rc, char *pszError, size_t cbError, const char *pszFormat, ...) argument
655 RTStrPrintfV(pszError, cbError, pszFormat, va);
663 * @param pszError The error buffer.
668 static void vboxExtPackSetError(char *pszError, size_t cbError, const char *pszFormat, ...) argument
672 RTStrPrintfV(pszError, cbError, pszFormat, va);
683 * @param pszError Where to store an error message on failure.
684 * @param cbError The size of the buffer @a pszError points to.
686 static int vboxExtPackVerifyXml(RTVFSFILE hXmlFile, const char *pszExtPackName, char *pszError, size_t cbError) argument
695 RTStrCopy(pszError, cbErro
724 vboxExtPackVerifyManifestAndSignature(RTMANIFEST hOurManifest, RTVFSFILE hManifestFile, RTVFSFILE hSignatureFile, char *pszError, size_t cbError) argument
800 vboxExtPackVerifyFileDigest(RTMANIFEST hFileManifest, const char *pszFileDigest, RTCString *pStrDigest, char *pszError, size_t cbError) argument
877 VBoxExtPackValidateStandardFile(const char *pszAdjName, RTVFSOBJTYPE enmType, PRTVFSOBJ phVfsObj, PRTVFSFILE phVfsFile, char *pszError, size_t cbError) argument
961 vboxExtPackValidateMemberName(const char *pszName, char *pszError, size_t cbError) argument
1028 vboxExtPackValidateMemberFile(const char *pszName, RTVFSOBJ hVfsObj, char *pszError, size_t cbError) argument
1062 vboxExtPackValidateMemberDir(const char *pszName, RTVFSOBJ hVfsObj, char *pszError, size_t cbError) argument
1092 VBoxExtPackValidateMember(const char *pszName, RTVFSOBJTYPE enmType, RTVFSOBJ hVfsObj, char *pszError, size_t cbError) argument
1125 VBoxExtPackOpenTarFss(RTFILE hTarballFile, char *pszError, size_t cbError, PRTVFSFSSTREAM phTarFss, PRTMANIFEST phFileManifest) argument
1219 VBoxExtPackValidateTarball(RTFILE hTarballFile, const char *pszExtPackName, const char *pszTarball, const char *pszTarballDigest, char *pszError, size_t cbError, PRTMANIFEST phValidManifest, PRTVFSFILE phXmlFile, RTCString *pStrDigest) argument
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DVM.cpp284 const char *pszError; local
289 pszError = N_("VirtualBox can't operate in VMX root mode. "
292 pszError = N_("VirtualBox can't operate in VMX root mode. Please close all other virtualization programs.");
298 pszError = N_("VT-x/AMD-V is either not available on your host or disabled. "
305 pszError = N_("VirtualBox can't enable the AMD-V extension. "
308 pszError = N_("VirtualBox can't enable the AMD-V extension. Please close all other virtualization programs.");
314 pszError = N_("One of the kernel modules was not successfully loaded. Make sure "
322 pszError = N_("VT-x/AMD-V is either not available on your host or disabled. "
329 pszError = N_("Because the host kernel is too old, VirtualBox cannot enable the VT-x "
334 pszError
375 const char *pszError; local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/linking/
H A Dprlink.c1013 UCHAR pszError[_MAX_PATH]; local
1016 ulRc = DosLoadModule(pszError, _MAX_PATH, (PSZ) name, &h);
/vbox/src/VBox/Storage/
H A DDMG.cpp1646 const char *pszError = dmgOpenXmlToRsrc(pThis, pszXml); local
1647 if (!pszError)
1694 (unsigned long)(pszError - pszXml), (unsigned long)(pszError - pszXml), pszError));

Completed in 60 milliseconds