Searched defs:pszDefine (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstRTErrUnique.cpp53 const char *pszDefine = pMsg->pszDefine; local
54 size_t cchDefine = strlen(pszDefine);
59 return STR_ENDS_WITH(pszDefine, cchDefine, "_FIRST")
60 || STR_ENDS_WITH(pszDefine, cchDefine, "_LAST")
61 || STR_ENDS_WITH(pszDefine, cchDefine, "_LOWEST")
62 || STR_ENDS_WITH(pszDefine, cchDefine, "_HIGHEST")
83 g_aErrorMessages[i].pszDefine,
84 g_aErrorMessages[j].pszDefine);
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPLib-win.cpp243 const char *pszDefine = RTErrGetDefine(rc); local
244 if (strncmp(pszDefine, RT_STR_TUPLE("Unknown")))
245 cchPrefix = RTStrPrintf(pErrInfo->pszMsg, pErrInfo->cbMsg / 2, "Integrity error (%#x/%s): ", rcNt, pszDefine);
H A DSUPR3HardenedMain-win.cpp4396 const char *pszDefine; local
4399 case STATUS_NO_SUCH_DEVICE: pszDefine = " STATUS_NO_SUCH_DEVICE"; break;
4400 case STATUS_OBJECT_NAME_NOT_FOUND: pszDefine = " STATUS_OBJECT_NAME_NOT_FOUND"; break;
4401 case STATUS_ACCESS_DENIED: pszDefine = " STATUS_ACCESS_DENIED"; break;
4402 case STATUS_TRUST_FAILURE: pszDefine = " STATUS_TRUST_FAILURE"; break;
4403 default: pszDefine = ""; break;
4415 SUP_DPRINTF(("Error opening VBoxDrvStub: %s\n", pszDefine));
4422 , s_wszName, rcNt, pszDefine, iTry,
4431 , s_wszName, rcNt, pszDefine, iTry,
4439 s_wszName, rcNt, pszDefine, iTr
[all...]
/vbox/src/bldprogs/
H A DVBoxCPP.cpp524 static PVBCPPMACRO vbcppMacroLookup(PVBCPP pThis, const char *pszDefine, size_t cchDefine);
1640 * @param pszDefine The define name and optionally the argument
1644 static bool vbcppMacroExists(PVBCPP pThis, const char *pszDefine, size_t cchDefine) argument
1647 && VBCPP_BITMAP_IS_SET(pThis->bmDefined, *pszDefine)
1648 && RTStrSpaceGetN(&pThis->StrSpace, pszDefine, cchDefine) != NULL;
1657 * @param pszDefine The define name and optionally the argument
1661 static PVBCPPMACRO vbcppMacroLookup(PVBCPP pThis, const char *pszDefine, size_t cchDefine) argument
1665 if (!VBCPP_BITMAP_IS_SET(pThis->bmDefined, *pszDefine))
1667 return (PVBCPPMACRO)RTStrSpaceGetN(&pThis->StrSpace, pszDefine, cchDefine);
2522 * @param pszDefine Th
2527 vbcppMacroUndef(PVBCPP pThis, const char *pszDefine, size_t cchDefine, bool fExplicitUndef) argument
2634 vbcppMacroAddFn(PVBCPP pThis, const char *pszDefine, size_t cchDefine, const char *pszParams, size_t cchParams, const char *pszValue, size_t cchValue, bool fCmdLine) argument
2757 vbcppMacroAdd(PVBCPP pThis, const char *pszDefine, size_t cchDefine, const char *pszValue, size_t cchValue, bool fCmdLine) argument
2840 const char *pszDefine = pMacro->Core.pszString; local
[all...]
/vbox/include/iprt/
H A Derr.h294 const char *pszDefine; member in struct:RTSTATUSMSG
317 #define RTErrGetDefine(rc) (RTErrGet(rc)->pszDefine)
344 const char *pszDefine; member in struct:RTWINERRMSG
374 const char *pszDefine; member in struct:RTCOMERRMSG

Completed in 147 milliseconds