Searched refs:pszExpr (Results 1 - 25 of 30) sorted by relevance

12

/vbox/src/VBox/Runtime/common/misc/
H A DRTAssertMsg1Weak.cpp37 RTDECL(void) RTAssertMsg1Weak(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
39 RTAssertMsg1(pszExpr, uLine, pszFile, pszFunction);
H A Dassert.cpp105 RTDECL(void) RTAssertMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
110 ASMAtomicUoWritePtr(&g_pszRTAssertExpr, pszExpr);
118 pszExpr, pszFile, uLine, pszFunction);
133 pszExpr, pszFile, uLine, pszFunction);
136 rtR0AssertNativeMsg1(pszExpr, uLine, pszFile, pszFunction);
144 pszExpr, pszFile, uLine, pszFunction);
154 pszExpr, pszFile, uLine, pszFunction);
170 pszExpr, pszFile, uLine, pszFunction);
183 VALID_PTR(pszExpr) ? pszExpr
[all...]
/vbox/src/VBox/Debugger/
H A DDBGCEval.cpp234 * @param pszExpr The expression string.
239 static int dbgcEvalSubNumericOrPointer(PDBGC pDbgc, char *pszExpr, size_t cchExpr, DBGCVARCAT enmCategory, argument
242 char const ch = pszExpr[0];
243 char const ch2 = pszExpr[1];
247 return dbgcEvalSubNum(pszExpr + 2, cchExpr - 2, 16, pResult);
250 if (RT_C_IS_XDIGIT(*pszExpr) && (pszExpr[cchExpr - 1] == 'h' || pszExpr[cchExpr - 1] == 'H'))
252 pszExpr[cchExpr] = '\0';
253 return dbgcEvalSubNum(pszExpr, cchExp
331 dbgcEvalSubUnaryAny(PDBGC pDbgc, char *pszExpr, size_t cchExpr, PDBGCVAR pResult) argument
453 dbgcEvalSubUnary(PDBGC pDbgc, char *pszExpr, size_t cchExpr, DBGCVARCAT enmCategory, PDBGCVAR pResult) argument
573 dbgcEvalSub(PDBGC pDbgc, char *pszExpr, size_t cchExpr, DBGCVARCAT enmCategory, PDBGCVAR pResult) argument
[all...]
H A DDBGCInternal.h383 int dbgcEvalSub(PDBGC pDbgc, char *pszExpr, size_t cchExpr, DBGCVARCAT enmCategory, PDBGCVAR pResult);
388 PCDBGCOP dbgcOperatorLookup(PDBGC pDbgc, const char *pszExpr, bool fPreferBinary, char chPrev);
H A DDBGCCmdHlp.cpp625 static DECLCALLBACK(int) dbgcHlpExec(PDBGCCMDHLP pCmdHlp, const char *pszExpr, ...) argument
636 va_start(args, pszExpr);
638 size_t cb = RTStrPrintfExV(dbgcStringFormatter, pDbgc, pDbgc->pszScratch, cbScratch, pszExpr, args);
661 static DECLCALLBACK(int) dbgcHlpEvalV(PDBGCCMDHLP pCmdHlp, PDBGCVAR pResult, const char *pszExpr, va_list va) argument
669 size_t cb = RTStrPrintfExV(dbgcStringFormatter, pDbgc, szExprFormatted, sizeof(szExprFormatted), pszExpr, va);
727 static DECLCALLBACK(int) dbgcHlpParserError(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, int iArg, const char *pszExpr, unsigned iLine) argument
735 RTStrFormat(dbgcFormatOutput, pDbgc, dbgcStringFormatter, pDbgc, "%s: parser error: iArg=%d iLine=%u pszExpr=%s\n",
736 pCmd->pszCmd, iArg, iLine, pszExpr);
H A DDBGCOps.cpp1386 * @param pszExpr Pointer to the expression string which might start with an operator.
1392 PCDBGCOP dbgcOperatorLookup(PDBGC pDbgc, const char *pszExpr, bool fPreferBinary, char chPrev) argument
1397 if ( g_aDbgcOps[iOp].szName[0] == pszExpr[0]
1398 && (!g_aDbgcOps[iOp].szName[1] || g_aDbgcOps[iOp].szName[1] == pszExpr[1])
1399 && (!g_aDbgcOps[iOp].szName[2] || g_aDbgcOps[iOp].szName[2] == pszExpr[2]))
1407 && g_aDbgcOps[j].szName[0] == pszExpr[0]
1408 && (!g_aDbgcOps[j].szName[1] || g_aDbgcOps[j].szName[1] == pszExpr[1])
1409 && (!g_aDbgcOps[j].szName[2] || g_aDbgcOps[j].szName[2] == pszExpr[2]) )
/vbox/src/VBox/Runtime/include/internal/
H A Dassert.h40 * @param pszExpr Expression. Can be NULL.
45 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction);
/vbox/src/libs/kStuff/iprt/
H A DkHlpAssert-iprt.cpp28 KHLP_DECL(void) kHlpAssertMsg1(const char *pszExpr, const char *pszFile, unsigned iLine, const char *pszFunction) argument
30 RTAssertMsg1Weak(pszExpr, iLine, pszFile, pszFunction);
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dassert-r0drv-darwin.cpp43 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
48 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Runtime/r0drv/freebsd/
H A Dassert-r0drv-freebsd.c44 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
49 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dassert-r0drv-haiku.c43 void rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
48 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Runtime/r0drv/linux/
H A Dassert-r0drv-linux.c43 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
49 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Runtime/r0drv/nt/
H A Dassert-r0drv-nt.cpp40 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
45 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/HostDrivers/VBoxUSB/
H A DUSBFilter.cpp94 * @param pszExpr Where to start converting, first char is a valid digit.
98 static int usbfilterReadNumberHex(const char *pszExpr, const char **ppszExpr, uint16_t *pu16Val) argument
104 unsigned uDigit = *pszExpr >= 'a' && *pszExpr <= 'f'
105 ? *pszExpr - 'a' + 10
106 : *pszExpr >= 'A' && *pszExpr <= 'F'
107 ? *pszExpr - 'A' + 10
108 : *pszExpr - '0';
115 } while (*++pszExpr);
132 usbfilterReadNumberDecimal(const char *pszExpr, unsigned uBase, const char **ppszExpr, uint16_t *pu16Val) argument
167 const char *pszExpr = usbfilterSkipBlanks(*ppszExpr); local
199 usbfilterValidateNumExpression(const char *pszExpr) argument
557 usbfilterMatchNumExpression(const char *pszExpr, uint16_t u16Value) argument
[all...]
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibRuntimeXF86.cpp50 RTDECL(void) RTAssertMsg1Weak(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
52 ErrorF("Assertion failed! Expression: %s at %s in\n", pszExpr,
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dassert-r0drv-solaris.c43 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
48 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Runtime/r0drv/os2/
H A Dassert-r0drv-os2.cpp60 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
66 pszExpr, pszFile, uLine, pszFunction);
73 pszExpr, pszFile, uLine, pszFunction);
/vbox/include/VBox/
H A Ddbg.h511 * @param pszExpr The expression. Format string with the format DBGC extensions.
514 DECLCALLBACKMEMBER(int, pfnExec)(PDBGCCMDHLP pCmdHlp, const char *pszExpr, ...);
523 * @param pszExpr The expression. Format string with the format DBGC extensions.
526 DECLCALLBACKMEMBER(int, pfnEvalV)(PDBGCCMDHLP pCmdHlp, PDBGCVAR pResult, const char *pszExpr, va_list va);
564 * @param pszExpr The expression.
567 DECLCALLBACKMEMBER(int, pfnParserError)(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, int iArg, const char *pszExpr, unsigned iLine);
733 * @param pszExpr The expression. Format string with the format DBGC extensions.
736 DECLINLINE(int) DBGCCmdHlpEval(PDBGCCMDHLP pCmdHlp, PDBGCVAR pResult, const char *pszExpr, ...) argument
741 va_start(va, pszExpr);
742 rc = pCmdHlp->pfnEvalV(pCmdHlp, pResult, pszExpr, v
803 DBGCCmdHlpParserError(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, int iArg, const char *pszExpr, unsigned iLine) argument
[all...]
/vbox/src/VBox/Runtime/r3/win/
H A Ddirenum-win.cpp63 const char *pszExpr; local
66 pszExpr = pDir->pszFilter;
71 pszExpr = "*";
76 memcpy(pszPathBuf + pDir->cchPath, pszExpr, cbExpr);
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPR3HardenedNoCrt-win.cpp69 RTDECL(void) RTAssertMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
74 g_pszRTAssertExpr = pszExpr;
82 pszExpr, pszFile, uLine, pszFunction);
/vbox/include/iprt/
H A Dassert.h81 * @param pszExpr Expression. Can be NULL.
86 RTDECL(void) RTAssertMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction);
93 RTDECL(void) RTAssertMsg1Weak(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction);
457 # define RTAssertMsg1Weak(pszExpr, uLine, pszfile, pszFunction) \
1173 # define RTAssertLogRelMsg1(pszExpr, iLine, pszFile, pszFunction) \
1174 RTAssertMsg1Weak(pszExpr, iLine, pszFile, pszFunction)
1176 # define RTAssertLogRelMsg1(pszExpr, iLine, pszFile, pszFunction) \
1178 (pszFile), (iLine), (pszFunction), (pszExpr) ))
/vbox/src/VBox/Devices/USB/
H A DUSBProxyDevice.cpp759 * @param pszExpr The expression value name.
761 static int usbProxyQueryNum(PUSBFILTER pFilter, USBFILTERIDX enmFieldIdx, PCFGMNODE pNode, const char *pszExact, const char *pszExpr) argument
774 rc = CFGMR3QueryString(pNode, pszExpr, szTmp, sizeof(szTmp));
779 LogRel(("usbProxyConstruct: %s: Both %s and %s are present!\n", szTmp, pszExact, pszExpr));
793 rc = CFGMR3QueryString(pNode, pszExpr, szTmp, sizeof(szTmp));
804 LogRel(("usbProxyConstruct: %s: %s query failed, rc=%Rrc\n", szTmp, pszExpr, rc));
/vbox/src/VBox/Additions/common/pam/
H A Dpam_vbox.cpp877 DECLEXPORT(void) RTAssertMsg1Weak(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
883 pszExpr, pszFile, uLine, pszFunction);
884 RTAssertMsg1(pszExpr, uLine, pszFile, pszFunction);
/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-haiku-stubs.c365 RTDECL(void) RTAssertMsg1Weak(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
367 g_VBoxGuest->_RTAssertMsg1Weak(pszExpr, uLine, pszFile, pszFunction);
/vbox/src/VBox/VMM/VMMR0/
H A DVMMR0.cpp1981 * @param pszExpr Expression. Can be NULL.
1986 DECLEXPORT(void) RTCALL RTAssertMsg1Weak(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
1994 pszExpr, pszFile, uLine, pszFunction));
2005 pszExpr, pszFile, uLine, pszFunction);
2010 RTAssertMsg1(pszExpr, uLine, pszFile, pszFunction);

Completed in 94 milliseconds

12