Lines Matching defs:pInterface

2493 static DECLCALLBACK(void) voidUpdateRect(PPDMIDISPLAYCONNECTOR pInterface, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy)
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)
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)
4490 PVGASTATE pThis = ILEDPORTS_2_VGASTATE(pInterface);
4516 * @param pInterface Pointer to this interface.
4521 static DECLCALLBACK(int) vgaDummyResize(PPDMIDISPLAYCONNECTOR pInterface, uint32_t bpp, void *pvVRAM,
4524 NOREF(pInterface); NOREF(bpp); NOREF(pvVRAM); NOREF(cbLine); NOREF(cx); NOREF(cy);
4533 * @param pInterface Pointer to this interface.
4540 static DECLCALLBACK(void) vgaDummyUpdateRect(PPDMIDISPLAYCONNECTOR pInterface, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy)
4542 NOREF(pInterface); NOREF(x); NOREF(y); NOREF(cx); NOREF(cy);
4555 * @param pInterface Pointer to this interface.
4558 static DECLCALLBACK(void) vgaDummyRefresh(PPDMIDISPLAYCONNECTOR pInterface)
4560 NOREF(pInterface);
4567 #define IDISPLAYPORT_2_VGASTATE(pInterface) ( (PVGASTATE)((uintptr_t)pInterface - RT_OFFSETOF(VGASTATE, IPort)) )
4573 * @param pInterface Pointer to this interface.
4576 static DECLCALLBACK(int) vgaPortUpdateDisplay(PPDMIDISPLAYPORT pInterface)
4578 PVGASTATE pThis = IDISPLAYPORT_2_VGASTATE(pInterface);
4673 * @param pInterface Pointer to this interface.
4676 static DECLCALLBACK(int) vgaPortUpdateDisplayAll(PPDMIDISPLAYPORT pInterface, bool fFailOnResize)
4678 PVGASTATE pThis = IDISPLAYPORT_2_VGASTATE(pInterface);
4691 * @param pInterface Pointer to this interface.
4695 static DECLCALLBACK(int) vgaPortSetRefreshRate(PPDMIDISPLAYPORT pInterface, uint32_t cMilliesInterval)
4697 PVGASTATE pThis = IDISPLAYPORT_2_VGASTATE(pInterface);
4707 static DECLCALLBACK(int) vgaPortQueryColorDepth(PPDMIDISPLAYPORT pInterface, uint32_t *pcBits)
4709 PVGASTATE pThis = IDISPLAYPORT_2_VGASTATE(pInterface);
4721 * @param pInterface Pointer to this interface.
4728 static DECLCALLBACK(int) vgaPortTakeScreenshot(PPDMIDISPLAYPORT pInterface, uint8_t **ppu8Data, size_t *pcbData, uint32_t *pcx, uint32_t *pcy)
4730 PVGASTATE pThis = IDISPLAYPORT_2_VGASTATE(pInterface);
4831 * @param pInterface Pointer to this interface.
4835 static DECLCALLBACK(void) vgaPortFreeScreenshot(PPDMIDISPLAYPORT pInterface, uint8_t *pu8Data)
4837 NOREF(pInterface);
4847 * @param pInterface Pointer to this interface.
4855 static DECLCALLBACK(int) vgaPortDisplayBlt(PPDMIDISPLAYPORT pInterface, const void *pvData, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy)
4857 PVGASTATE pThis = IDISPLAYPORT_2_VGASTATE(pInterface);
4933 static DECLCALLBACK(void) vgaPortUpdateDisplayRect(PPDMIDISPLAYPORT pInterface, int32_t x, int32_t y, uint32_t w, uint32_t h)
4948 PVGASTATE pThis = IDISPLAYPORT_2_VGASTATE(pInterface);
4954 Assert(pInterface);
5084 static DECLCALLBACK(int) vgaPortCopyRect (PPDMIDISPLAYPORT pInterface,
5117 PVGASTATE pThis = IDISPLAYPORT_2_VGASTATE(pInterface);
5119 Assert(pInterface);
5244 static DECLCALLBACK(void) vgaPortSetRenderVRAM(PPDMIDISPLAYPORT pInterface, bool fRender)
5246 PVGASTATE pThis = IDISPLAYPORT_2_VGASTATE(pInterface);