Searched refs:cbImageWithTabs (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/HostDrivers/Support/
H A DSUPLibLdr.cpp374 const uint32_t cbImageWithTabs = RT_ALIGN_32(offStrTab + CalcArgs.cbStrings, 8); local
386 OpenReq.u.In.cbImageWithTabs = cbImageWithTabs;
409 PSUPLDRLOAD pLoadReq = (PSUPLDRLOAD)RTMemTmpAlloc(SUP_IOCTL_LDR_LOAD_SIZE(cbImageWithTabs));
470 pLoadReq->Hdr.cbIn = SUP_IOCTL_LDR_LOAD_SIZE_IN(cbImageWithTabs);
501 pLoadReq->u.In.cbImageWithTabs = cbImageWithTabs;
505 rc = suplibOsIOCtl(&g_supLibData, SUP_IOCTL_LDR_LOAD, pLoadReq, SUP_IOCTL_LDR_LOAD_SIZE(cbImageWithTabs));
549 AssertMsgFailed(("failed to allocated %u bytes for SUPLDRLOAD_IN structure!\n", SUP_IOCTL_LDR_LOAD_SIZE(cbImageWithTabs)));
H A DSUPDrv.cpp1628 REQ_CHECK_EXPR(SUP_IOCTL_LDR_OPEN, pReq->u.In.cbImageWithTabs > 0);
1629 REQ_CHECK_EXPR(SUP_IOCTL_LDR_OPEN, pReq->u.In.cbImageWithTabs < 16*_1M);
1632 REQ_CHECK_EXPR(SUP_IOCTL_LDR_OPEN, pReq->u.In.cbImageBits < pReq->u.In.cbImageWithTabs);
1648 REQ_CHECK_SIZES_EX(SUP_IOCTL_LDR_LOAD, SUP_IOCTL_LDR_LOAD_SIZE_IN(pReq->u.In.cbImageWithTabs), SUP_IOCTL_LDR_LOAD_SIZE_OUT);
1651 || ( pReq->u.In.offSymbols < pReq->u.In.cbImageWithTabs
1652 && pReq->u.In.offSymbols + pReq->u.In.cSymbols * sizeof(SUPLDRSYM) <= pReq->u.In.cbImageWithTabs),
1653 ("SUP_IOCTL_LDR_LOAD: offSymbols=%#lx cSymbols=%#lx cbImageWithTabs=%#lx\n", (long)pReq->u.In.offSymbols,
1654 (long)pReq->u.In.cSymbols, (long)pReq->u.In.cbImageWithTabs));
1656 || ( pReq->u.In.offStrTab < pReq->u.In.cbImageWithTabs
1657 && pReq->u.In.offStrTab + pReq->u.In.cbStrTab <= pReq->u.In.cbImageWithTabs
[all...]
H A DSUPDrvIOC.h310 uint32_t cbImageWithTabs; member in struct:SUPLDROPEN::__anon16287::__anon16288
311 /** The size of the image bits. (Less or equal to cbImageWithTabs.) */
449 uint32_t cbImageWithTabs; member in struct:SUPLDRLOAD::__anon16290::__anon16291
H A DSUPDrvInternal.h352 uint32_t cbImageWithTabs; member in struct:SUPDRVLDRIMAGE

Completed in 65 milliseconds