Lines Matching defs:aHeight

1542 HRESULT Display::getScreenResolution(ULONG aScreenId, ULONG *aWidth, ULONG *aHeight, ULONG *aBitsPerPixel,
1589 if (aHeight)
1590 *aHeight = u32Height;
1736 ULONG aWidth, ULONG aHeight, ULONG aBitsPerPixel)
1748 ULONG height = aHeight;
1781 mpDrv->pUpPort->pfnSendModeHint(mpDrv->pUpPort, aWidth, aHeight,
1805 pVMMDevPort->pfnRequestDisplayChange(pVMMDevPort, aWidth, aHeight, aBitsPerPixel,
2078 ULONG aHeight,
2085 * values passed as either 'aWidth' or 'aHeight'.
2088 CheckComArgExpr(aHeight, aHeight != 0 && aHeight <= 32767);
2103 int vrc = i_displayTakeScreenshot(ptrVM.rawUVM(), this, mpDrv, aScreenId, aAddress, aWidth, aHeight);
2107 const size_t cbData = aWidth * 4 * aHeight;
2119 size_t cPixels = aWidth * aHeight;
2128 size_t cPixels = aWidth * aHeight;
2146 vrc = DisplayMakePNG(aAddress, aWidth, aHeight, &pu8PNG, &cbPNG, &cxPNG, &cyPNG, 0);
2181 ULONG aHeight,
2187 aScreenId, aAddress, aWidth, aHeight, aBitmapFormat));
2190 rc = takeScreenShotWorker(aScreenId, aAddress, aWidth, aHeight, aBitmapFormat, &cbOut);
2199 ULONG aHeight,
2206 aScreenId, aWidth, aHeight, aBitmapFormat));
2209 * values passed as either 'aWidth' or 'aHeight'.
2212 CheckComArgExpr(aHeight, aHeight != 0 && aHeight <= 32767);
2214 const size_t cbData = aWidth * 4 * aHeight;
2218 rc = takeScreenShotWorker(aScreenId, &aScreenData.front(), aWidth, aHeight, aBitmapFormat, &cbOut);
2477 HRESULT Display::drawToScreen(ULONG aScreenId, BYTE *aAddress, ULONG aX, ULONG aY, ULONG aWidth, ULONG aHeight)
2486 (void *)aAddress, aX, aY, aWidth, aHeight));
2489 CheckComArgExpr(aHeight, aHeight != 0);
2507 this, aScreenId, aAddress, aX, aY, aWidth, aHeight);
2689 HRESULT Display::viewportChanged(ULONG aScreenId, ULONG aX, ULONG aY, ULONG aWidth, ULONG aHeight)
2696 int rc = i_crViewportNotify(aScreenId, aX, aY, aWidth, aHeight);
2704 pFb->pendingViewportInfo.height = aHeight;
2712 mpDrv->pUpPort->pfnSetViewPort(mpDrv->pUpPort, aScreenId, aX, aY, aWidth, aHeight);