Searched defs:iLine (Results 1 - 25 of 27) sorted by relevance

12

/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/Devices/PC/
H A DDevLPC.cpp193 for (int iLine = 0; iLine < 8; ++iLine)
196 int iBase = iLine < 4 ? 0x60 : 0x64;
197 uint8_t iMap = PCIDevGetByte(&pThis->dev, iBase + iLine); local
200 pHlp->pfnPrintf(pHlp, "PIRQ%c disabled\n", 'A' + iLine);
202 pHlp->pfnPrintf(pHlp, "PIRQ%c -> IRQ%d\n", 'A' + iLine, iMap & 0xf);
/vbox/src/VBox/Main/testcase/
H A DtstVBoxAPIPerf.cpp42 static HRESULT tstComExpr(HRESULT hrc, const char *pszOperation, int iLine) argument
45 RTTestFailed(g_hTest, "%s failed on line %u with hrc=%Rhrc", pszOperation, iLine, hrc);
H A DtstVBoxAPI.cpp45 static HRESULT tstComExpr(HRESULT hrc, const char *pszOperation, int iLine) argument
48 RTTestFailed(g_hTest, "%s failed on line %u with hrc=%Rhrc", pszOperation, iLine, hrc);
/vbox/src/bldprogs/
H A Dscmstream.h69 size_t iLine; member in struct:SCMSTREAM
104 size_t ScmStreamTellOffsetOfLine(PSCMSTREAM pStream, size_t iLine);
109 int ScmStreamSeekByLine(PSCMSTREAM pStream, size_t iLine);
112 const char *ScmStreamGetLineByNo(PSCMSTREAM pStream, size_t iLine, size_t *pcchLine, PSCMEOL penmEol);
118 bool ScmStreamIsWhiteLine(PSCMSTREAM pStream, size_t iLine);
120 SCMEOL ScmStreamGetEolByLine(PSCMSTREAM pStream, size_t iLine);
H A DVBoxDef2LazyLoad.cpp107 unsigned iLine = 0; local
111 iLine++;
184 fprintf(stderr, "%s:%u: error: Invalid ordinal spec.\n", pszInput, iLine);
201 fprintf(stderr, "%s:%u: error: NONAME export not implemented.\n", pszInput, iLine);
215 pszInput, iLine, cchName, pchName);
222 pszInput, iLine, cchName, pchName);
234 fprintf(stderr, "%s:%u: error: Out of memory.\n", pszInput, iLine);
252 fprintf(stderr, "error: Read while reading '%s' (iLine=%u).\n", pszInput, iLine);
H A Dscmdiff.cpp43 * @param iLine The first line.
46 static void scmDiffPrintLines(PSCMDIFFSTATE pState, char chPrefix, PSCMSTREAM pStream, size_t iLine, size_t cLines) argument
52 const char *pchLine = ScmStreamGetLineByNo(pStream, iLine, &cchLine, &enmEol);
100 iLine++;
259 for (size_t iLine = 0; iLine < cLines; iLine++)
263 const char *pchLeft = ScmStreamGetLineByNo(pState->pLeft, iLeft + iLine, &cchLeft, &enmEolLeft);
267 const char *pchRight = ScmStreamGetLineByNo(pState->pRight, iRight + iLine, &cchRight, &enmEolRight);
H A Dscmstream.cpp47 pStream->iLine = 0;
223 pStream->iLine = 0;
236 pStream->iLine = 0;
272 for (size_t iLine = 0; iLine < pStream->cLines; iLine++)
274 size_t offEol = pStream->paLines[iLine].off + pStream->paLines[iLine].cch;
275 AssertReturn(offEol + pStream->paLines[iLine].enmEol <= cbFile, VERR_INTERNAL_ERROR_2);
276 switch (pStream->paLines[iLine]
396 size_t iLine = pStream->iLine; local
491 ScmStreamTellOffsetOfLine(PSCMSTREAM pStream, size_t iLine) argument
616 ScmStreamSeekByLine(PSCMSTREAM pStream, size_t iLine) argument
678 ScmStreamGetLineByNo(PSCMSTREAM pStream, size_t iLine, size_t *pcchLine, PSCMEOL penmEol) argument
789 size_t iLine = pStream->iLine; local
864 ScmStreamIsWhiteLine(PSCMSTREAM pStream, size_t iLine) argument
915 ScmStreamGetEolByLine(PSCMSTREAM pStream, size_t iLine) argument
948 size_t iLine = pStream->iLine; local
1053 size_t iLine = pStream->iLine; local
1260 size_t const iLine = pStream->iLine; local
1301 size_t const iLine = pStream->iLine; local
1340 size_t const iLine = pStream->iLine; local
[all...]
H A DVBoxTpG.cpp1256 size_t const iLine = ScmStreamTellLine(pStrm); local
1257 ScmStreamSeekByLine(pStrm, iLine);
1260 RTPrintf("%s:%d:%zd: error: %s.\n", g_pszScript, iLine + 1, off - offLine + 1, pszMsg);
1264 const char *pszLine = ScmStreamGetLineByNo(pStrm, iLine, &cchLine, &enmEof);
/vbox/src/VBox/Runtime/r3/
H A Dalloc-ef.h182 unsigned iLine; member in struct:RTMEMBLOCK
/vbox/src/VBox/Runtime/testcase/
H A DtstRTDigest.cpp466 uint32_t iLine = 1; local
469 psz = MyGetNextSignificantLine(pFile, s_szLine, sizeof(s_szLine), &iLine, &rc);
480 return Error("%s(%d): Expected 'Len =' found '%.10s...'", ValueUnion.psz, iLine, psz);
484 return Error("%s(%d): Error parsing length '%s': %Rrc\n", ValueUnion.psz, iLine, psz, rc);
487 psz = MyGetNextSignificantLine(pFile, s_szLine, sizeof(s_szLine), &iLine, &rc);
489 return Error("%s(%d): Expected message text not EOF.", ValueUnion.psz, iLine);
491 return Error("%s(%d): Expected 'Msg =' found '%.10s...'", ValueUnion.psz, iLine, psz);
501 ValueUnion.psz, iLine, psz, rc);
505 psz = MyGetNextSignificantLine(pFile, s_szLine, sizeof(s_szLine), &iLine, &rc);
507 return Error("%s(%d): Expected message digest not EOF.", ValueUnion.psz, iLine);
[all...]
H A DtstRTStrFormat.cpp63 static void testNested(int iLine, const char *pszExpect, const char *pszFormat, ...) argument
76 iLine, pszFormat, szBuf, pszExpect);
79 iLine, cch, cchExpect);
90 iLine, pszFormat, szBuf, pszExpect);
93 iLine, cch, 5 + cchExpect + 5);
/vbox/src/VBox/Frontends/VBoxAutostart/
H A DVBoxAutostartCfg.cpp70 unsigned iLine; member in struct:CFGTOKEN
105 unsigned iLine; member in struct:CFGTOKENIZER
164 pCfgTokenizer->iLine++;
286 pCfgTokenUse->iLine = pCfgTokenizer->iLine;
340 pCfgTokenizer->iLine = 0;
467 pToken->iLine, pToken->cchStart,
/vbox/src/VBox/Debugger/
H A DDBGCCmdHlp.cpp727 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 DDBGCCommands.cpp927 unsigned iLine = 0; local
935 rc = DBGCCmdHlpPrintf(pCmdHlp, "runscript error: Line #%u is too long\n", iLine);
938 iLine++;
966 rc = DBGCCmdHlpPrintf(pCmdHlp, "runscript error: Line #%u is too long (exec overflowed)\n", iLine);
971 rc = DBGCCmdHlpPrintf(pCmdHlp, "runscript error: VWRN_DBGC_CMD_PENDING on line #%u, script terminated\n", iLine);
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dlibteac.c105 int iLine; local
123 iLine= 0;
129 iLine++;
139 iLine, HOST_TABLE_FILENAME);
147 iLine, HOST_TABLE_FILENAME);
154 string, HOST_TABLE_FILENAME, iLine);
160 iLine, HOST_TABLE_FILENAME);
167 string, HOST_TABLE_FILENAME, iLine);
173 iLine, HOST_TABLE_FILENAME);
180 string, HOST_TABLE_FILENAME, iLine);
[all...]
/vbox/src/VBox/VMM/VMMR0/
H A DPDMR0Device.cpp920 static DECLCALLBACK(bool) pdmR0DrvHlp_AssertEMT(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction) argument
926 RTAssertMsg1Weak("AssertEMT", iLine, pszFile, pszFunction);
933 static DECLCALLBACK(bool) pdmR0DrvHlp_AssertOther(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction) argument
939 RTAssertMsg1Weak("AssertOther", iLine, pszFile, pszFunction);
/vbox/src/VBox/VMM/VMMRC/
H A DPDMRCDevice.cpp869 static DECLCALLBACK(bool) pdmRCDrvHlp_AssertEMT(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction) argument
875 RTAssertMsg1Weak("AssertEMT", iLine, pszFile, pszFunction);
882 static DECLCALLBACK(bool) pdmRCDrvHlp_AssertOther(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction) argument
890 RTAssertMsg1Weak("AssertOther", iLine, pszFile, pszFunction);
/vbox/src/VBox/VMM/include/
H A DVMInternal.h83 uint32_t iLine; member in struct:VMERROR
/vbox/src/VBox/Devices/BiosCommonCode/
H A DMakeAlternativeSource.cpp83 uint32_t iLine; member in struct:BIOSMAP
219 uint32_t iLine = 0; local
224 iLine++;
271 return disError("Error reading '%s': rc=%Rrc iLine=%u", pObjFile->pszSource, rc, iLine);
1211 RTMsgError("%s:%d: %N", pMap->pszMapFile, pMap->iLine, pszFormat, va);
1236 RTMsgError("%s:%d: Read error %Rrc", pMap->pszMapFile, pMap->iLine + 1, rc);
1239 pMap->iLine++;
1516 RTMsgError("%s:%d: Expected section box: +-----...", pMap->pszMapFile, pMap->iLine);
1538 RTMsgError("%s:%d: Expected section box: | %s |", pMap->pszMapFile, pMap->iLine, pszSectionN
[all...]
/vbox/src/VBox/Storage/testcase/
H A DVDScriptAst.h28 unsigned iLine; member in struct:VDSRCPOS
/vbox/include/VBox/
H A Ddbg.h565 * @param iLine The line number.
567 DECLCALLBACKMEMBER(int, pfnParserError)(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, int iArg, const char *pszExpr, unsigned iLine);
803 DECLINLINE(int) DBGCCmdHlpParserError(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, int iArg, const char *pszExpr, unsigned iLine) argument
805 return pCmdHlp->pfnParserError(pCmdHlp, pCmd, iArg, pszExpr, iLine);
/vbox/src/VBox/VMM/VMMR3/
H A DPDMDevHlp.cpp999 static DECLCALLBACK(int) pdmR3DevHlp_DBGFStopV(PPDMDEVINS pDevIns, const char *pszFile, unsigned iLine, const char *pszFunction, const char *pszFormat, va_list args) argument
1005 LogFlow(("pdmR3DevHlp_DBGFStopV: caller='%s'/%d: pszFile=%p:{%s} iLine=%d pszFunction=%p:{%s} pszFormat=%p:{%s} (%N)\n",
1006 pDevIns->pReg->szName, pDevIns->iInstance, pszFile, pszFile, iLine, pszFunction, pszFunction, pszFormat, pszFormat, pszFormat, &va2));
1012 int rc = DBGFR3EventSrcV(pVM, DBGFEVENT_DEV_STOP, pszFile, iLine, pszFunction, pszFormat, args);
2107 static DECLCALLBACK(bool) pdmR3DevHlp_AssertEMT(PPDMDEVINS pDevIns, const char *pszFile, unsigned iLine, const char *pszFunction)
2115 RTAssertMsg1Weak(szMsg, iLine, pszFile, pszFunction);
2122 static DECLCALLBACK(bool) pdmR3DevHlp_AssertOther(PPDMDEVINS pDevIns, const char *pszFile, unsigned iLine, const char *pszFunction)
2130 RTAssertMsg1Weak(szMsg, iLine, pszFile, pszFunction);
H A DPDMDriver.cpp1144 static DECLCALLBACK(bool) pdmR3DrvHlp_AssertEMT(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction) argument
1152 RTAssertMsg1Weak(szMsg, iLine, pszFile, pszFunction);
1160 static DECLCALLBACK(bool) pdmR3DrvHlp_AssertOther(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction) argument
1168 RTAssertMsg1Weak(szMsg, iLine, pszFile, pszFunction);
H A DPDMUsb.cpp1563 static DECLCALLBACK(bool) pdmR3UsbHlp_AssertEMT(PPDMUSBINS pUsbIns, const char *pszFile, unsigned iLine, const char *pszFunction) argument
1571 RTAssertMsg1Weak(szMsg, iLine, pszFile, pszFunction);
1578 static DECLCALLBACK(bool) pdmR3UsbHlp_AssertOther(PPDMUSBINS pUsbIns, const char *pszFile, unsigned iLine, const char *pszFunction) argument
1586 RTAssertMsg1Weak(szMsg, iLine, pszFile, pszFunction);
1593 static DECLCALLBACK(int) pdmR3UsbHlp_DBGFStopV(PPDMUSBINS pUsbIns, const char *pszFile, unsigned iLine, const char *pszFunction, const char *pszFormat, va_list args) argument
1599 LogFlow(("pdmR3UsbHlp_DBGFStopV: caller='%s'/%d: pszFile=%p:{%s} iLine=%d pszFunction=%p:{%s} pszFormat=%p:{%s} (%N)\n",
1600 pUsbIns->pReg->szName, pUsbIns->iInstance, pszFile, pszFile, iLine, pszFunction, pszFunction, pszFormat, pszFormat, pszFormat, &va2));
1606 int rc = DBGFR3EventSrcV(pVM, DBGFEVENT_DEV_STOP, pszFile, iLine, pszFunction, pszFormat, args);

Completed in 138 milliseconds

12