Lines Matching defs:aWidth

1542 HRESULT Display::getScreenResolution(ULONG aScreenId, ULONG *aWidth, ULONG *aHeight, ULONG *aBitsPerPixel,
1587 if (aWidth)
1588 *aWidth = u32Width;
1736 ULONG aWidth, ULONG aHeight, ULONG aBitsPerPixel)
1745 ULONG width = aWidth;
1781 mpDrv->pUpPort->pfnSendModeHint(mpDrv->pUpPort, aWidth, aHeight,
1805 pVMMDevPort->pfnRequestDisplayChange(pVMMDevPort, aWidth, aHeight, aBitsPerPixel,
2077 ULONG aWidth,
2085 * values passed as either 'aWidth' or 'aHeight'.
2087 CheckComArgExpr(aWidth, aWidth != 0 && aWidth <= 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);
2180 ULONG aWidth,
2187 aScreenId, aAddress, aWidth, aHeight, aBitmapFormat));
2190 rc = takeScreenShotWorker(aScreenId, aAddress, aWidth, aHeight, aBitmapFormat, &cbOut);
2198 ULONG aWidth,
2206 aScreenId, aWidth, aHeight, aBitmapFormat));
2209 * values passed as either 'aWidth' or 'aHeight'.
2211 CheckComArgExpr(aWidth, aWidth != 0 && aWidth <= 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));
2488 CheckComArgExpr(aWidth, aWidth != 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);
2703 pFb->pendingViewportInfo.width = aWidth;
2712 mpDrv->pUpPort->pfnSetViewPort(mpDrv->pUpPort, aScreenId, aX, aY, aWidth, aHeight);