Searched defs:pInterface (Results 76 - 96 of 96) sorted by relevance

1234

/vbox/src/VBox/Devices/Storage/
H A DDrvHostBase.cpp135 static DECLCALLBACK(int) drvHostBaseRead(PPDMIBLOCK pInterface, uint64_t off, void *pvBuf, size_t cbRead) argument
137 PDRVHOSTBASE pThis = PDMIBLOCK_2_DRVHOSTBASE(pInterface);
211 static DECLCALLBACK(int) drvHostBaseWrite(PPDMIBLOCK pInterface, uint64_t off, const void *pvBuf, size_t cbWrite) argument
213 PDRVHOSTBASE pThis = PDMIBLOCK_2_DRVHOSTBASE(pInterface);
257 static DECLCALLBACK(int) drvHostBaseFlush(PPDMIBLOCK pInterface) argument
260 PDRVHOSTBASE pThis = PDMIBLOCK_2_DRVHOSTBASE(pInterface);
284 static DECLCALLBACK(bool) drvHostBaseIsReadOnly(PPDMIBLOCK pInterface) argument
286 PDRVHOSTBASE pThis = PDMIBLOCK_2_DRVHOSTBASE(pInterface);
292 static DECLCALLBACK(uint64_t) drvHostBaseGetSize(PPDMIBLOCK pInterface) argument
294 PDRVHOSTBASE pThis = PDMIBLOCK_2_DRVHOSTBASE(pInterface);
308 drvHostBaseGetType(PPDMIBLOCK pInterface) argument
317 drvHostBaseGetUuid(PPDMIBLOCK pInterface, PRTUUID pUuid) argument
329 drvHostBaseIoBufAlloc(PPDMIBLOCK pInterface, size_t cb, void **ppvNew) argument
349 drvHostBaseIoBufFree(PPDMIBLOCK pInterface, void *pv, size_t cb) argument
371 drvHostBaseGetPCHSGeometry(PPDMIBLOCKBIOS pInterface, PPDMMEDIAGEOMETRY pPCHSGeometry) argument
399 drvHostBaseSetPCHSGeometry(PPDMIBLOCKBIOS pInterface, PCPDMMEDIAGEOMETRY pPCHSGeometry) argument
423 drvHostBaseGetLCHSGeometry(PPDMIBLOCKBIOS pInterface, PPDMMEDIAGEOMETRY pLCHSGeometry) argument
451 drvHostBaseSetLCHSGeometry(PPDMIBLOCKBIOS pInterface, PCPDMMEDIAGEOMETRY pLCHSGeometry) argument
475 drvHostBaseIsVisible(PPDMIBLOCKBIOS pInterface) argument
483 drvHostBaseBiosGetType(PPDMIBLOCKBIOS pInterface) argument
494 drvHostBaseMount(PPDMIMOUNT pInterface, const char *pszFilename, const char *pszCoreDriver) argument
503 drvHostBaseUnmount(PPDMIMOUNT pInterface, bool fForce, bool fEject) argument
542 drvHostBaseIsMounted(PPDMIMOUNT pInterface) argument
555 drvHostBaseLock(PPDMIMOUNT pInterface) argument
578 drvHostBaseUnlock(PPDMIMOUNT pInterface) argument
601 drvHostBaseIsLocked(PPDMIMOUNT pInterface) argument
618 drvHostBaseQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
[all...]
H A DUsbMsd.cpp1005 static DECLCALLBACK(int) usbMsdLun0ScsiRequestCompleted(PPDMISCSIPORT pInterface, PPDMSCSIREQUEST pSCSIRequest, argument
1008 PUSBMSD pThis = RT_FROM_MEMBER(pInterface, USBMSD, Lun0.IScsiPort);
1071 static DECLCALLBACK(int) usbMsdLun0QueryDeviceLocation(PPDMISCSIPORT pInterface, const char **ppcszController, argument
1074 PUSBMSD pThis = RT_FROM_MEMBER(pInterface, USBMSD, Lun0.IScsiPort);
1092 static DECLCALLBACK(void *) usbMsdLun0QueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
1094 PUSBMSD pThis = RT_FROM_MEMBER(pInterface, USBMSD, Lun0.IBase);
H A DDrvVD.cpp67 #define PDMIMEDIA_2_VBOXDISK(pInterface) \
68 ( (PVBOXDISK)((uintptr_t)pInterface - RT_OFFSETOF(VBOXDISK, IMedia)) )
71 #define PDMIMEDIAASYNC_2_VBOXDISK(pInterface) \
72 ( (PVBOXDISK)((uintptr_t)pInterface - RT_OFFSETOF(VBOXDISK, IMediaAsync)) )
1601 static DECLCALLBACK(int) drvvdRead(PPDMIMEDIA pInterface, argument
1607 PVBOXDISK pThis = PDMIMEDIA_2_VBOXDISK(pInterface);
1655 static DECLCALLBACK(int) drvvdReadPcBios(PPDMIMEDIA pInterface, argument
1661 PVBOXDISK pThis = PDMIMEDIA_2_VBOXDISK(pInterface);
1710 static DECLCALLBACK(int) drvvdWrite(PPDMIMEDIA pInterface, argument
1715 PVBOXDISK pThis = PDMIMEDIA_2_VBOXDISK(pInterface);
1736 drvvdFlush(PPDMIMEDIA pInterface) argument
1746 drvvdMerge(PPDMIMEDIA pInterface, PFNSIMPLEPROGRESS pfnProgress, void *pvUser) argument
1781 drvvdSetSecKeyIf(PPDMIMEDIA pInterface, PPDMISECKEY pIfSecKey, PPDMISECKEYHLP pIfSecKeyHlp) argument
1830 drvvdGetSize(PPDMIMEDIA pInterface) argument
1840 drvvdGetSectorSize(PPDMIMEDIA pInterface) argument
1850 drvvdIsReadOnly(PPDMIMEDIA pInterface) argument
1860 drvvdBiosGetPCHSGeometry(PPDMIMEDIA pInterface, PPDMMEDIAGEOMETRY pPCHSGeometry) argument
1884 drvvdBiosSetPCHSGeometry(PPDMIMEDIA pInterface, PCPDMMEDIAGEOMETRY pPCHSGeometry) argument
1902 drvvdBiosGetLCHSGeometry(PPDMIMEDIA pInterface, PPDMMEDIAGEOMETRY pLCHSGeometry) argument
1926 drvvdBiosSetLCHSGeometry(PPDMIMEDIA pInterface, PCPDMMEDIAGEOMETRY pLCHSGeometry) argument
1944 drvvdGetUuid(PPDMIMEDIA pInterface, PRTUUID pUuid) argument
1953 drvvdDiscard(PPDMIMEDIA pInterface, PCRTRANGE paRanges, unsigned cRanges) argument
1964 drvvdIoBufAlloc(PPDMIMEDIA pInterface, size_t cb, void **ppvNew) argument
1991 drvvdIoBufFree(PPDMIMEDIA pInterface, void *pv, size_t cb) argument
2028 drvvdStartRead(PPDMIMEDIAASYNC pInterface, uint64_t uOffset, PCRTSGSEG paSeg, unsigned cSeg, size_t cbRead, void *pvUser) argument
2061 drvvdStartWrite(PPDMIMEDIAASYNC pInterface, uint64_t uOffset, PCRTSGSEG paSeg, unsigned cSeg, size_t cbWrite, void *pvUser) argument
2095 drvvdStartFlush(PPDMIMEDIAASYNC pInterface, void *pvUser) argument
2115 drvvdStartDiscard(PPDMIMEDIAASYNC pInterface, PCRTRANGE paRanges, unsigned cRanges, void *pvUser) argument
2281 drvvdQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
[all...]
H A DDevFdc.cpp2583 static DECLCALLBACK(void) fdMountNotify(PPDMIMOUNTNOTIFY pInterface) argument
2585 fdrive_t *pDrv = RT_FROM_MEMBER(pInterface, fdrive_t, IMountNotify);
2594 static DECLCALLBACK(void) fdUnmountNotify(PPDMIMOUNTNOTIFY pInterface) argument
2596 fdrive_t *pDrv = RT_FROM_MEMBER(pInterface, fdrive_t, IMountNotify);
2605 static DECLCALLBACK(void *) fdQueryInterface (PPDMIBASE pInterface, const char *pszIID) argument
2607 fdrive_t *pDrv = RT_FROM_MEMBER(pInterface, fdrive_t, IBase);
2621 static DECLCALLBACK(int) fdcStatusQueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed) argument
2623 fdctrl_t *pThis = RT_FROM_MEMBER (pInterface, fdctrl_t, ILeds);
2636 static DECLCALLBACK(void *) fdcStatusQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
2638 fdctrl_t *pThis = RT_FROM_MEMBER (pInterface, fdctrl_
[all...]
H A DDevLsiLogicSCSI.cpp2277 static DECLCALLBACK(int) lsilogicR3DeviceSCSIRequestCompleted(PPDMISCSIPORT pInterface, PPDMSCSIREQUEST pSCSIRequest, argument
2366 static DECLCALLBACK(int) lsilogicR3QueryDeviceLocation(PPDMISCSIPORT pInterface, const char **ppcszController, argument
2369 PLSILOGICDEVICE pLsiLogicDevice = RT_FROM_MEMBER(pInterface, LSILOGICDEVICE, ISCSIPort);
4879 static DECLCALLBACK(int) lsilogicR3DeviceQueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed) argument
4881 PLSILOGICDEVICE pDevice = RT_FROM_MEMBER(pInterface, LSILOGICDEVICE, ILed);
4895 static DECLCALLBACK(void *) lsilogicR3DeviceQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
4897 PLSILOGICDEVICE pDevice = RT_FROM_MEMBER(pInterface, LSILOGICDEVICE, IBase);
4914 * @param pInterface Pointer to the interface structure containing the called function pointer.
4918 static DECLCALLBACK(int) lsilogicR3StatusQueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed) argument
4920 PLSILOGICSCSI pThis = RT_FROM_MEMBER(pInterface, LSILOGICSCS
4933 lsilogicR3StatusQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
[all...]
H A DDevATA.cpp501 #define PDMIBASE_2_PCIATASTATE(pInterface) ( (PCIATAState *)((uintptr_t)(pInterface) - RT_OFFSETOF(PCIATAState, IBase)) )
502 #define PDMILEDPORTS_2_PCIATASTATE(pInterface) ( (PCIATAState *)((uintptr_t)(pInterface) - RT_OFFSETOF(PCIATAState, ILeds)) )
503 #define PDMIBLOCKPORT_2_ATASTATE(pInterface) ( (ATADevState *)((uintptr_t)(pInterface) - RT_OFFSETOF(ATADevState, IPort)) )
504 #define PDMIMOUNT_2_ATASTATE(pInterface) ( (ATADevState *)((uintptr_t)(pInterface) - RT_OFFSETOF(ATADevState, IMount)) )
505 #define PDMIMOUNTNOTIFY_2_ATASTATE(pInterface) ( (ATADevState *)((uintptr_t)(pInterface)
3805 ataMountNotify(PPDMIMOUNTNOTIFY pInterface) argument
3832 ataUnmountNotify(PPDMIMOUNTNOTIFY pInterface) argument
5767 ataStatus_QueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
5786 ataStatus_QueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed) argument
5810 ataQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
5825 ataR3QueryDeviceLocation(PPDMIBLOCKPORT pInterface, const char **ppcszController, uint32_t *piInstance, uint32_t *piLUN) argument
[all...]
H A DDevBusLogic.cpp970 #define PDMIBASE_2_PBUSLOGICDEVICE(pInterface) ( (PBUSLOGICDEVICE)((uintptr_t)(pInterface) - RT_OFFSETOF(BUSLOGICDEVICE, IBase)) )
971 #define PDMISCSIPORT_2_PBUSLOGICDEVICE(pInterface) ( (PBUSLOGICDEVICE)((uintptr_t)(pInterface) - RT_OFFSETOF(BUSLOGICDEVICE, ISCSIPort)) )
972 #define PDMILEDPORTS_2_PBUSLOGICDEVICE(pInterface) ( (PBUSLOGICDEVICE)((uintptr_t)(pInterface) - RT_OFFSETOF(BUSLOGICDEVICE, ILed)) )
973 #define PDMIBASE_2_PBUSLOGIC(pInterface) ( (PBUSLOGIC)((uintptr_t)(pInterface) - RT_OFFSETOF(BUSLOGIC, IBase)) )
974 #define PDMILEDPORTS_2_PBUSLOGIC(pInterface) ( (PBUSLOGIC)((uintptr_t)(pInterface)
2796 buslogicR3DeviceSCSIRequestCompleted(PPDMISCSIPORT pInterface, PPDMSCSIREQUEST pSCSIRequest, int rcCompletion, bool fRedo, int rcReq) argument
2869 buslogicR3QueryDeviceLocation(PPDMISCSIPORT pInterface, const char **ppcszController, uint32_t *piInstance, uint32_t *piLUN) argument
3418 buslogicR3DeviceQueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed) argument
3433 buslogicR3DeviceQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
3450 buslogicR3StatusQueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed) argument
3465 buslogicR3StatusQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
[all...]
H A DDevAHCI.cpp950 #define PDMIMOUNT_2_PAHCIPORT(pInterface) ( (PAHCIPort)((uintptr_t)(pInterface) - RT_OFFSETOF(AHCIPort, IMount)) )
951 #define PDMIMOUNTNOTIFY_2_PAHCIPORT(pInterface) ( (PAHCIPort)((uintptr_t)(pInterface) - RT_OFFSETOF(AHCIPort, IMountNotify)) )
952 #define PDMIBASE_2_PAHCIPORT(pInterface) ( (PAHCIPort)((uintptr_t)(pInterface) - RT_OFFSETOF(AHCIPort, IBase)) )
953 #define PDMIBLOCKPORT_2_PAHCIPORT(pInterface) ( (PAHCIPort)((uintptr_t)(pInterface) - RT_OFFSETOF(AHCIPort, IPort)) )
954 #define PDMIBASE_2_PAHCI(pInterface) ( (PAHCI)((uintptr_t)(pInterface)
2622 ahciR3Status_QueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed) argument
2637 ahciR3Status_QueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
2648 ahciR3PortQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
2661 ahciR3PortQueryDeviceLocation(PPDMIBLOCKPORT pInterface, const char **ppcszController, uint32_t *piInstance, uint32_t *piLUN) argument
6167 ahciR3TransferCompleteNotify(PPDMIBLOCKASYNCPORT pInterface, void *pvUser, int rcReq) argument
7473 ahciR3MountNotify(PPDMIMOUNTNOTIFY pInterface) argument
7502 ahciR3UnmountNotify(PPDMIMOUNTNOTIFY pInterface) argument
[all...]
/vbox/src/VBox/Devices/VMMDev/
H A DVMMDev.cpp2962 static DECLCALLBACK(void *) vmmdevPortQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
2964 PVMMDEV pThis = RT_FROM_MEMBER(pInterface, VMMDEV, IBase);
2983 * @param pInterface Pointer to the interface structure containing the called function pointer.
2987 static DECLCALLBACK(int) vmmdevQueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed) argument
2989 PVMMDEV pThis = RT_FROM_MEMBER(pInterface, VMMDEV, SharedFolders.ILeds);
3004 static DECLCALLBACK(int) vmmdevIPort_QueryAbsoluteMouse(PPDMIVMMDEVPORT pInterface, int32_t *pxAbs, int32_t *pyAbs) argument
3006 PVMMDEV pThis = RT_FROM_MEMBER(pInterface, VMMDEV, IPort);
3023 static DECLCALLBACK(int) vmmdevIPort_SetAbsoluteMouse(PPDMIVMMDEVPORT pInterface, int32_t xAbs, int32_t yAbs) argument
3025 PVMMDEV pThis = RT_FROM_MEMBER(pInterface, VMMDEV, IPort);
3044 static DECLCALLBACK(int) vmmdevIPort_QueryMouseCapabilities(PPDMIVMMDEVPORT pInterface, uint32_ argument
3057 vmmdevIPort_UpdateMouseCapabilities(PPDMIVMMDEVPORT pInterface, uint32_t fCapsAdded, uint32_t fCapsRemoved) argument
3082 vmmdevIPort_RequestDisplayChange(PPDMIVMMDEVPORT pInterface, uint32_t cx, uint32_t cy, uint32_t cBits, uint32_t idxDisplay, int32_t xOrigin, int32_t yOrigin, bool fEnabled, bool fChangeOrigin) argument
3145 vmmdevIPort_RequestSeamlessChange(PPDMIVMMDEVPORT pInterface, bool fEnabled) argument
3171 vmmdevIPort_SetMemoryBalloon(PPDMIVMMDEVPORT pInterface, uint32_t cMbBalloon) argument
3194 vmmdevIPort_VRDPChange(PPDMIVMMDEVPORT pInterface, bool fVRDPEnabled, uint32_t uVRDPExperienceLevel) argument
3218 vmmdevIPort_SetStatisticsInterval(PPDMIVMMDEVPORT pInterface, uint32_t cSecsStatInterval) argument
3244 vmmdevIPort_SetCredentials(PPDMIVMMDEVPORT pInterface, const char *pszUsername, const char *pszPassword, const char *pszDomain, uint32_t fFlags) argument
3286 vmmdevIPort_VBVAChange(PPDMIVMMDEVPORT pInterface, bool fEnabled) argument
3298 vmmdevIPort_CpuHotUnplug(PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage) argument
3324 vmmdevIPort_CpuHotPlug(PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage) argument
[all...]
/vbox/src/VBox/Additions/x11/VBoxClient/
H A Ddraganddrop.cpp2393 struct VBCLSERVICE *pInterface; member in struct:DRAGANDDROPSERVICE
2438 pService->pInterface = &vbclDragAndDropInterface;
2441 return &pService->pInterface;
/vbox/src/VBox/Devices/Audio/
H A DDevIchAc97.cpp2167 static DECLCALLBACK(void *) ichac97QueryInterface(struct PDMIBASE *pInterface, const char *pszIID) argument
2169 PAC97STATE pThis = RT_FROM_MEMBER(pInterface, AC97STATE, IBase);
2170 Assert(&pThis->IBase == pInterface);
/vbox/src/VBox/Devices/Network/
H A DDevVirtioNet.cpp622 * @param pInterface Pointer to the interface structure containing the called function pointer.
654 static DECLCALLBACK(int) vnetNetworkDown_WaitReceiveAvail(PPDMINETWORKDOWN pInterface, RTMSINTERVAL cMillies) argument
656 PVNETSTATE pThis = RT_FROM_MEMBER(pInterface, VNETSTATE, INetworkDown);
694 static DECLCALLBACK(void *) vnetQueryInterface(struct PDMIBASE *pInterface, const char *pszIID) argument
696 PVNETSTATE pThis = RT_FROM_MEMBER(pInterface, VNETSTATE, VPCI.IBase);
697 Assert(&pThis->VPCI.IBase == pInterface);
701 return vpciQueryInterface(pInterface, pszIID);
915 static DECLCALLBACK(int) vnetNetworkDown_ReceiveGso(PPDMINETWORKDOWN pInterface, argument
919 PVNETSTATE pThis = RT_FROM_MEMBER(pInterface, VNETSTATE, INetworkDown);
982 static DECLCALLBACK(int) vnetNetworkDown_Receive(PPDMINETWORKDOWN pInterface, cons argument
995 vnetGetMac(PPDMINETWORKCONFIG pInterface, PRTMAC pMac) argument
1009 vnetGetLinkState(PPDMINETWORKCONFIG pInterface) argument
1025 vnetSetLinkState(PPDMINETWORKCONFIG pInterface, PDMNETWORKLINKSTATE enmState) argument
1310 vnetNetworkDown_XmitPending(PPDMINETWORKDOWN pInterface) argument
[all...]
H A DDevPCNet.cpp4436 static DECLCALLBACK(int) pcnetNetworkDown_WaitReceiveAvail(PPDMINETWORKDOWN pInterface, RTMSINTERVAL cMillies) argument
4438 PPCNETSTATE pThis = RT_FROM_MEMBER(pInterface, PCNETSTATE, INetworkDown);
4478 static DECLCALLBACK(int) pcnetNetworkDown_Receive(PPDMINETWORKDOWN pInterface, const void *pvBuf, size_t cb) argument
4480 PPCNETSTATE pThis = RT_FROM_MEMBER(pInterface, PCNETSTATE, INetworkDown);
4532 static DECLCALLBACK(void) pcnetNetworkDown_XmitPending(PPDMINETWORKDOWN pInterface) argument
4534 PPCNETSTATE pThis = RT_FROM_MEMBER(pInterface, PCNETSTATE, INetworkDown);
4544 static DECLCALLBACK(int) pcnetGetMac(PPDMINETWORKCONFIG pInterface, PRTMAC pMac) argument
4546 PPCNETSTATE pThis = RT_FROM_MEMBER(pInterface, PCNETSTATE, INetworkConfig);
4555 static DECLCALLBACK(PDMNETWORKLINKSTATE) pcnetGetLinkState(PPDMINETWORKCONFIG pInterface) argument
4557 PPCNETSTATE pThis = RT_FROM_MEMBER(pInterface, PCNETSTAT
4572 pcnetSetLinkState(PPDMINETWORKCONFIG pInterface, PDMNETWORKLINKSTATE enmState) argument
4625 pcnetQueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed) argument
4642 pcnetQueryInterface(struct PDMIBASE *pInterface, const char *pszIID) argument
[all...]
/vbox/src/VBox/HostDrivers/VBoxNetFlt/solaris/
H A DVBoxNetFlt-solaris.c1777 * @param pInterface Pointer to the interface.
1779 static int vboxNetFltSolarisGetIfFlags(ldi_handle_t hDevice, struct lifreq *pInterface) argument
1787 IOCReq.ic_dp = (caddr_t)pInterface;
1801 * @param pInterface Pointer to the interface.
1803 static int vboxNetFltSolarisSetMuxId(vnode_t *pVNode, struct lifreq *pInterface) argument
1811 IOCReq.ic_dp = (caddr_t)pInterface;
1847 * @param pInterface Pointer to the interface.
1851 static int vboxNetFltSolarisRelinkIp4(vnode_t *pVNode, struct lifreq *pInterface, int IpMuxFd, int ArpMuxFd) argument
1853 LogFunc((DEVICE_NAME ":vboxNetFltSolarisRelinkIp4: pVNode=%p pInterface=%p IpMuxFd=%d ArpMuxFd=%d\n", pVNode,
1854 pInterface, IpMuxF
1886 vboxNetFltSolarisRelinkIp6(vnode_t *pVNode, struct lifreq *pInterface, int Ip6MuxFd) argument
[all...]
/vbox/include/VBox/
H A Dvusb.h565 * @param pInterface Pointer to this structure.
568 DECLR3CALLBACKMEMBER(unsigned, pfnGetAvailablePorts,(PVUSBIROOTHUBPORT pInterface, PVUSBPORTBITMAP pAvailable));
574 * @param pInterface Pointer to this structure.
576 DECLR3CALLBACKMEMBER(uint32_t, pfnGetUSBVersions,(PVUSBIROOTHUBPORT pInterface));
581 * @param pInterface Pointer to this structure.
585 DECLR3CALLBACKMEMBER(int, pfnAttach,(PVUSBIROOTHUBPORT pInterface, PVUSBIDEVICE pDev, unsigned uPort));
590 * @param pInterface Pointer to this structure.
594 DECLR3CALLBACKMEMBER(void, pfnDetach,(PVUSBIROOTHUBPORT pInterface, PVUSBIDEVICE pDev, unsigned uPort));
600 * @param pInterface Pointer to this structure.
603 DECLR3CALLBACKMEMBER(int, pfnReset,(PVUSBIROOTHUBPORT pInterface, boo
748 VUSBIRhNewUrb(PVUSBIROOTHUBCONNECTOR pInterface, uint32_t DstAddress, uint32_t cbData, uint32_t cTds) argument
754 VUSBIRhSubmitUrb(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBURB pUrb, struct PDMLED *pLed) argument
760 VUSBIRhReapAsyncUrbs(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice, RTMSINTERVAL cMillies) argument
766 VUSBIRhCancelAllUrbs(PVUSBIROOTHUBCONNECTOR pInterface) argument
772 VUSBIRhAttachDevice(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice) argument
778 VUSBIRhDetachDevice(PVUSBIROOTHUBCONNECTOR pInterface, PVUSBIDEVICE pDevice) argument
823 VUSBIRhCreateProxyDevice(PVUSBIRHCONFIG pInterface, PCRTUUID pUuid, bool fRemote, const char *pszAddress, void *pvBackend) argument
829 VUSBIRhDestroyProxyDevice(PVUSBIRHCONFIG pInterface, PCRTUUID pUuid) argument
985 VUSBIDevReset(PVUSBIDEVICE pInterface, bool fResetOnLinux, PFNVUSBRESETDONE pfnDone, void *pvUser, PVM pVM) argument
996 VUSBIDevPowerOn(PVUSBIDEVICE pInterface) argument
1007 VUSBIDevPowerOff(PVUSBIDEVICE pInterface) argument
1018 VUSBIDevGetState(PVUSBIDEVICE pInterface) argument
1030 VUSBIDevIsEmulated(PVUSBIDEVICE pInterface) argument
[all...]
/vbox/src/VBox/Devices/PC/
H A DDevACPI.cpp782 static DECLCALLBACK(int) acpiR3Port_PowerButtonPress(PPDMIACPIPORT pInterface) argument
784 ACPIState *pThis = RT_FROM_MEMBER(pInterface, ACPIState, IACPIPort);
798 static DECLCALLBACK(int) acpiR3Port_GetPowerButtonHandled(PPDMIACPIPORT pInterface, bool *pfHandled) argument
800 ACPIState *pThis = RT_FROM_MEMBER(pInterface, ACPIState, IACPIPort);
813 static DECLCALLBACK(int) acpiR3Port_GetGuestEnteredACPIMode(PPDMIACPIPORT pInterface, bool *pfEntered) argument
815 ACPIState *pThis = RT_FROM_MEMBER(pInterface, ACPIState, IACPIPort);
827 static DECLCALLBACK(int) acpiR3Port_GetCpuStatus(PPDMIACPIPORT pInterface, unsigned uCpu, bool *pfLocked) argument
829 ACPIState *pThis = RT_FROM_MEMBER(pInterface, ACPIState, IACPIPort);
842 * @param pInterface Pointer to the interface structure containing the called function pointer.
844 static DECLCALLBACK(int) acpiR3Port_SleepButtonPress(PPDMIACPIPORT pInterface) argument
862 acpiR3Port_MonitorHotPlugEvent(PPDMIACPIPORT pInterface) argument
[all...]
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA.cpp2493 static DECLCALLBACK(void) voidUpdateRect(PPDMIDISPLAYCONNECTOR pInterface, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy) argument
2495 NOREF(pInterface); NOREF(x); NOREF(y); NOREF(cx); NOREF(cy);
2539 typedef DECLCALLBACK(void) FNUPDATERECT(PPDMIDISPLAYCONNECTOR pInterface, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy);
4465 static DECLCALLBACK(void *) vgaPortQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
4467 PVGASTATE pThis = RT_FROM_MEMBER(pInterface, VGASTATE, IBase);
4478 #define ILEDPORTS_2_VGASTATE(pInterface) ( (PVGASTATE)((uintptr_t)pInterface - RT_OFFSETOF(VGASTATE, ILeds)) )
4484 * @param pInterface Pointer to the interface structure containing the called function pointer.
4488 static DECLCALLBACK(int) vgaPortQueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed) argument
4490 PVGASTATE pThis = ILEDPORTS_2_VGASTATE(pInterface);
4521 vgaDummyResize(PPDMIDISPLAYCONNECTOR pInterface, uint32_t bpp, void *pvVRAM, uint32_t cbLine, uint32_t cx, uint32_t cy) argument
4540 vgaDummyUpdateRect(PPDMIDISPLAYCONNECTOR pInterface, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy) argument
4558 vgaDummyRefresh(PPDMIDISPLAYCONNECTOR pInterface) argument
4576 vgaPortUpdateDisplay(PPDMIDISPLAYPORT pInterface) argument
4676 vgaPortUpdateDisplayAll(PPDMIDISPLAYPORT pInterface, bool fFailOnResize) argument
4695 vgaPortSetRefreshRate(PPDMIDISPLAYPORT pInterface, uint32_t cMilliesInterval) argument
4707 vgaPortQueryColorDepth(PPDMIDISPLAYPORT pInterface, uint32_t *pcBits) argument
4728 vgaPortTakeScreenshot(PPDMIDISPLAYPORT pInterface, uint8_t **ppu8Data, size_t *pcbData, uint32_t *pcx, uint32_t *pcy) argument
4835 vgaPortFreeScreenshot(PPDMIDISPLAYPORT pInterface, uint8_t *pu8Data) argument
4855 vgaPortDisplayBlt(PPDMIDISPLAYPORT pInterface, const void *pvData, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy) argument
4933 vgaPortUpdateDisplayRect(PPDMIDISPLAYPORT pInterface, int32_t x, int32_t y, uint32_t w, uint32_t h) argument
5084 vgaPortCopyRect(PPDMIDISPLAYPORT pInterface, uint32_t w, uint32_t h, const uint8_t *pu8Src, int32_t xSrc, int32_t ySrc, uint32_t u32SrcWidth, uint32_t u32SrcHeight, uint32_t u32SrcLineSize, uint32_t u32SrcBitsPerPixel, uint8_t *pu8Dst, int32_t xDst, int32_t yDst, uint32_t u32DstWidth, uint32_t u32DstHeight, uint32_t u32DstLineSize, uint32_t u32DstBitsPerPixel) argument
5244 vgaPortSetRenderVRAM(PPDMIDISPLAYPORT pInterface, bool fRender) argument
[all...]
/vbox/src/VBox/Devices/USB/
H A DDevOHCI.cpp806 static DECLCALLBACK(void) ohciRhXferCompletion(PVUSBIROOTHUBPORT pInterface, PVUSBURB pUrb);
807 static DECLCALLBACK(bool) ohciRhXferError(PVUSBIROOTHUBPORT pInterface, PVUSBURB pUrb);
881 static DECLCALLBACK(void *) ohciRhQueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
883 POHCI pThis = RT_FROM_MEMBER(pInterface, OHCI, RootHub.IBase);
894 * @param pInterface Pointer to the interface structure containing the called function pointer.
898 static DECLCALLBACK(int) ohciRhQueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed) argument
900 POHCI pThis = (POHCI)((uintptr_t)pInterface - RT_OFFSETOF(OHCI, RootHub.ILeds));
911 #define VUSBIROOTHUBPORT_2_OHCI(pInterface) ((POHCI)( (uintptr_t)(pInterface) - RT_OFFSETOF(OHCI, RootHub.IRhPort) ))
918 * @param pInterface Pointe
921 ohciRhGetAvailablePorts(PVUSBIROOTHUBPORT pInterface, PVUSBPORTBITMAP pAvailable) argument
950 ohciRhGetUSBVersions(PVUSBIROOTHUBPORT pInterface) argument
963 ohciRhAttach(PVUSBIROOTHUBPORT pInterface, PVUSBIDEVICE pDev, unsigned uPort) argument
1000 ohciRhDetach(PVUSBIROOTHUBPORT pInterface, PVUSBIDEVICE pDev, unsigned uPort) argument
1060 ohciRhReset(PVUSBIROOTHUBPORT pInterface, bool fResetOnLinux) argument
2540 ohciRhXferCompletion(PVUSBIROOTHUBPORT pInterface, PVUSBURB pUrb) argument
2624 ohciRhXferError(PVUSBIROOTHUBPORT pInterface, PVUSBURB pUrb) argument
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Doaidl.h643 IUnknown *pInterface; member in struct:tagCLEANLOCALSTORAGE
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl.cpp10054 Console::i_pdmIfSecKey_KeyRetain(PPDMISECKEY pInterface, const char *pszId, const uint8_t **ppbKey, argument
10057 Console *pConsole = ((MYPDMISECKEY *)pInterface)->pConsole;
10076 Console::i_pdmIfSecKey_KeyRelease(PPDMISECKEY pInterface, const char *pszId) argument
10078 Console *pConsole = ((MYPDMISECKEY *)pInterface)->pConsole;
10088 Console::i_pdmIfSecKey_PasswordRetain(PPDMISECKEY pInterface, const char *pszId, const char **ppszPassword) argument
10090 Console *pConsole = ((MYPDMISECKEY *)pInterface)->pConsole;
10106 Console::i_pdmIfSecKey_PasswordRelease(PPDMISECKEY pInterface, const char *pszId) argument
10108 Console *pConsole = ((MYPDMISECKEY *)pInterface)->pConsole;
10118 Console::i_pdmIfSecKeyHlp_KeyMissingNotify(PPDMISECKEYHLP pInterface) argument
10120 Console *pConsole = ((MYPDMISECKEYHLP *)pInterface)
10172 i_drvStatus_UnitChanged(PPDMILEDCONNECTORS pInterface, unsigned iLUN) argument
10194 i_drvStatus_MediumEjected(PPDMIMEDIANOTIFY pInterface, unsigned uLUN) argument
10249 i_drvStatus_QueryInterface(PPDMIBASE pInterface, const char *pszIID) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Doaidl.h643 IUnknown *pInterface; member in struct:tagCLEANLOCALSTORAGE

Completed in 362 milliseconds

1234