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

/vbox/src/VBox/Devices/Input/testcase/
H A DtstUsbMouse.cpp70 PPDMIBASE pBaseInterface,
76 s_drvTstMouse.pDrvBase = pBaseInterface;
77 s_drvTstMouse.pDrv = PDMIBASE_QUERY_INTERFACE(pBaseInterface,
69 tstDriverAttach(PPDMUSBINS pUsbIns, RTUINT iLun, PPDMIBASE pBaseInterface, PPDMIBASE *ppBaseInterface, const char *pszDesc) argument
/vbox/include/VBox/vmm/
H A Dpdmusb.h455 * The first call for a LUN this will serve as a registration of the LUN. The pBaseInterface and
461 * @param pBaseInterface Pointer to the base interface for that LUN. (device side / down)
466 DECLR3CALLBACKMEMBER(int, pfnDriverAttach,(PPDMUSBINS pUsbIns, RTUINT iLun, PPDMIBASE pBaseInterface, PPDMIBASE *ppBaseInterface, const char *pszDesc));
881 DECLINLINE(int) PDMUsbHlpDriverAttach(PPDMUSBINS pUsbIns, RTUINT iLun, PPDMIBASE pBaseInterface, PPDMIBASE *ppBaseInterface, const char *pszDesc) argument
883 return pUsbIns->pHlpR3->pfnDriverAttach(pUsbIns, iLun, pBaseInterface, ppBaseInterface, pszDesc);
H A Dpdmdev.h3048 * The first call for a LUN this will serve as a registartion of the LUN. The pBaseInterface and
3054 * @param pBaseInterface Pointer to the base interface for that LUN. (device side / down)
3059 DECLR3CALLBACKMEMBER(int, pfnDriverAttach,(PPDMDEVINS pDevIns, uint32_t iLun, PPDMIBASE pBaseInterface,
4900 DECLINLINE(int) PDMDevHlpDriverAttach(PPDMDEVINS pDevIns, uint32_t iLun, PPDMIBASE pBaseInterface, PPDMIBASE *ppBaseInterface, const char *pszDesc) argument
4902 return pDevIns->pHlpR3->pfnDriverAttach(pDevIns, iLun, pBaseInterface, ppBaseInterface, pszDesc);
/vbox/src/VBox/VMM/VMMR3/
H A DPDMDriver.cpp623 * @param pBaseInterface The base interface.
639 int pdmR3DrvInstantiate(PVM pVM, PCFGMNODE pNode, PPDMIBASE pBaseInterface, PPDMDRVINS pDrvAbove, argument
645 Assert(pBaseInterface->pfnQueryInterface(pBaseInterface, PDMIBASE_IID) == pBaseInterface);
708 pNew->pUpBase = pBaseInterface;
709 Assert(!pDrvAbove || pBaseInterface == &pDrvAbove->IBase);
H A DPDMUsb.cpp1486 static DECLCALLBACK(int) pdmR3UsbHlp_DriverAttach(PPDMUSBINS pUsbIns, RTUINT iLun, PPDMIBASE pBaseInterface, argument
1492 LogFlow(("pdmR3UsbHlp_DriverAttach: caller='%s'/%d: iLun=%d pBaseInterface=%p ppBaseInterface=%p pszDesc=%p:{%s}\n",
1493 pUsbIns->pReg->szName, pUsbIns->iInstance, iLun, pBaseInterface, ppBaseInterface, pszDesc, pszDesc));
1509 if ( !pBaseInterface
1513 Assert(pBaseInterface);
1529 pLun->pBase = pBaseInterface;
1543 Assert(pLun->pBase == pBaseInterface);
1552 rc = pdmR3DrvInstantiate(pVM, pNode, pBaseInterface, NULL /*pDrvAbove*/, pLun, ppBaseInterface);

Completed in 58 milliseconds