Home | History | Annotate | Download | only in surfaceflinger

Lines Matching full:dpy

176 const GraphicPlane& SurfaceFlinger::graphicPlane(int dpy) const
178 ALOGE_IF(uint32_t(dpy) >= DISPLAY_COUNT, "Invalid DisplayID %d", dpy);
179 const GraphicPlane& plane(mGraphicPlanes[dpy]);
183 GraphicPlane& SurfaceFlinger::graphicPlane(int dpy)
186 const_cast<SurfaceFlinger const *>(this)->graphicPlane(dpy));
219 int dpy = 0;
223 GraphicPlane& plane(graphicPlane(dpy));
224 DisplayHardware* const hw = new DisplayHardware(this, dpy);
242 const GraphicPlane& plane(graphicPlane(dpy));
250 mServerCblk->connected |= 1<<dpy;
251 display_cblk_t* dcblk = mServerCblk->displays + dpy;
538 const int dpy = 0;
541 GraphicPlane& plane(graphicPlane(dpy));
546 volatile display_cblk_t* dcblk = mServerCblk->displays + dpy;
1779 status_t SurfaceFlinger::renderScreenToTexture(DisplayID dpy,
1783 return renderScreenToTextureLocked(dpy, textureName, uOut, vOut);
1786 status_t SurfaceFlinger::renderScreenToTextureLocked(DisplayID dpy,
1795 const DisplayHardware& hw(graphicPlane(dpy).displayHardware());
2319 status_t SurfaceFlinger::captureScreenImplLocked(DisplayID dpy,
2330 if (CC_UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
2337 const DisplayHardware& hw(graphicPlane(dpy).displayHardware());
2440 status_t SurfaceFlinger::captureScreen(DisplayID dpy,
2447 if (CC_UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
2455 DisplayID dpy;
2466 MessageCaptureScreen(SurfaceFlinger* flinger, DisplayID dpy,
2470 : flinger(flinger), dpy(dpy),
2486 result = flinger->captureScreenImplLocked(dpy,
2494 dpy, heap, width, height, format, sw, sh, minLayerZ, maxLayerZ);