Searched refs:cbInstance (Results 1 - 12 of 12) sorted by relevance

/vbox/include/iprt/
H A Dvfslowlevel.h240 * @param cbInstance The size of the instance data.
248 * (size is @a cbInstance).
250 RTDECL(int) RTVfsNew(PCRTVFSOPS pVfsOps, size_t cbInstance, RTVFS hVfs, RTVFSLOCK hLock,
299 * @param cbInstance The size of the instance data.
307 * (size is @a cbInstance).
309 RTDECL(int) RTVfsNewBaseObj(PCRTVFSOBJOPS pObjOps, size_t cbInstance, RTVFS hVfs, RTVFSLOCK hLock,
423 * @param cbInstance The size of the instance data.
431 * (size is @a cbInstance).
433 RTDECL(int) RTVfsNewFsStream(PCRTVFSFSSTREAMOPS pFsStreamOps, size_t cbInstance, RTVFS hVfs, RTVFSLOCK hLock,
626 * @param cbInstance Th
[all...]
/vbox/src/VBox/Main/src-server/solaris/
H A DNetIf-solaris.cpp64 int cbInstance = 0; local
71 cbInstance++;
76 strncpy(pszDevName, pszIfaceName, cbIface - cbInstance);
77 pszDevName[cbIface - cbInstance] = '\0';
334 int cbInstance = 0; local
341 cbInstance++;
346 strncpy(szIfaceName, pszIface, cbIface - cbInstance);
347 szIfaceName[cbIface - cbInstance] = '\0';
H A DPerformanceSolaris.cpp334 int cbInstance = 0; local
341 cbInstance++;
346 strncpy(pszDevName, pszIfaceName, cbIface - cbInstance);
347 pszDevName[cbIface - cbInstance] = '\0';
/vbox/include/VBox/vmm/
H A Dpdmsrv.h147 RTUINT cbInstance; member in struct:PDMSRVREG
H A Dpdmusb.h147 RTUINT cbInstance; member in struct:PDMUSBREG
H A Dpdmdrv.h251 uint32_t cbInstance; member in struct:PDMDRVREG
H A Dpdmdev.h289 uint32_t cbInstance; member in struct:PDMDEVREG
/vbox/src/VBox/Runtime/common/vfs/
H A Dvfsbase.cpp712 RTDECL(int) RTVfsNewBaseObj(PCRTVFSOBJOPS pObjOps, size_t cbInstance, RTVFS hVfs, RTVFSLOCK hLock, argument
722 Assert(cbInstance > 0);
731 + RT_ALIGN_Z(cbInstance, RTVFS_INST_ALIGNMENT);
1588 RTDECL(int) RTVfsNew(PCRTVFSOPS pVfsOps, size_t cbInstance, RTVFS hVfs, RTVFSLOCK hLock, argument
1597 Assert(cbInstance > 0);
1605 + RT_ALIGN_Z(cbInstance, RTVFS_INST_ALIGNMENT);
1671 RTDECL(int) RTVfsNewFsStream(PCRTVFSFSSTREAMOPS pFsStreamOps, size_t cbInstance, RTVFS hVfs, RTVFSLOCK hLock, argument
1683 Assert(cbInstance > 0);
1692 + RT_ALIGN_Z(cbInstance, RTVFS_INST_ALIGNMENT);
1803 RTDECL(int) RTVfsNewSymlink(PCRTVFSSYMLINKOPS pSymlinkOps, size_t cbInstance, RTVF argument
1946 RTVfsNewIoStream(PCRTVFSIOSTREAMOPS pIoStreamOps, size_t cbInstance, uint32_t fOpen, RTVFS hVfs, RTVFSLOCK hLock, PRTVFSIOSTREAM phVfsIos, void **ppvInstance) argument
2381 RTVfsNewFile(PCRTVFSFILEOPS pFileOps, size_t cbInstance, uint32_t fOpen, RTVFS hVfs, RTVFSLOCK hLock, PRTVFSFILE phVfsFile, void **ppvInstance) argument
[all...]
/vbox/src/VBox/Devices/Input/testcase/
H A DtstUsbMouse.cpp118 + g_UsbHidMou.cbInstance);
/vbox/src/VBox/VMM/VMMR3/
H A DPDMDevice.cpp300 size_t cb = RT_OFFSETOF(PDMDEVINS, achInstanceData[paDevs[i].pDev->pReg->cbInstance]);
670 AssertMsgReturn(pReg->cbInstance <= (uint32_t)(pReg->fFlags & (PDM_DEVREG_FLAGS_RC | PDM_DEVREG_FLAGS_R0) ? 96 * _1K : _1M),
671 ("Instance size %d bytes! (Device %s)\n", pReg->cbInstance, pReg->szName),
H A DPDMDriver.cpp299 AssertMsgReturn(pReg->cbInstance <= _1M,
300 ("%s: %#x\n", pReg->szName, pReg->cbInstance),
306 ("%s: %#x\n", pReg->szName, pReg->cbInstance),
678 size_t cb = RT_OFFSETOF(PDMDRVINS, achInstanceData[pDrv->pReg->cbInstance]);
974 ASMMemFill32(pCur, RT_OFFSETOF(PDMDRVINS, achInstanceData[pCur->pReg->cbInstance]), 0xdeadd0d0);
H A DPDMUsb.cpp234 AssertMsgReturn(pReg->cbInstance <= _1M,
235 ("Instance size %d bytes! (USB Device %s)\n", pReg->cbInstance, pReg->szName),
576 size_t cb = RT_OFFSETOF(PDMUSBINS, achInstanceData[pUsbDev->pReg->cbInstance]);

Completed in 100 milliseconds