Searched defs:pu8PNG (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Main/src-all/
H A DDisplayPNGUtil.cpp29 uint8_t *pu8PNG; member in struct:PNGWriteCtx
48 void *pNew = RTMemRealloc(pCtx->pu8PNG, cbNew);
55 pCtx->pu8PNG = (uint8_t *)pNew;
59 memcpy(pCtx->pu8PNG + pCtx->cbPNG, p, cb);
149 ctx.pu8PNG = NULL;
185 *ppu8PNG = ctx.pu8PNG;
/vbox/src/VBox/Main/src-client/
H A DDisplayImpl.cpp251 uint8_t *pu8PNG; member in struct:__anon16501
265 int rc = DisplayMakePNG(pu8BufferAddress, uGuestWidth, uGuestHeight, &pData->pu8PNG,
270 if (pData->pu8PNG)
272 RTMemFree(pData->pu8PNG);
273 pData->pu8PNG = NULL;
293 uint8_t *pu8PNG = NULL; local
342 if (pScreenshot->pu8PNG)
350 pu8PNG = pScreenshot->pu8PNG;
384 rc = DisplayMakePNG(pu8Data, cx, cy, &pu8PNG,
2141 uint8_t *pu8PNG = NULL; local
[all...]
/vbox/src/VBox/Main/src-server/
H A DMachineImpl.cpp6448 uint8_t *pu8PNG = NULL; local
6453 vrc = DisplayMakePNG(pu8Data, u32Width, u32Height, &pu8PNG, &cbPNG, &cxPNG, &cyPNG, 0);
6459 memcpy(&aData.front(), pu8PNG, cbPNG);
6466 RTMemFree(pu8PNG);

Completed in 1052 milliseconds