Home
last modified time | relevance | path

Searched refs:reqHeight (Results 1 – 10 of 10) sorted by relevance

/frameworks/native/include/gui/
DSurfaceComposerClient.h166 uint32_t reqWidth, uint32_t reqHeight,
182 uint32_t reqWidth, uint32_t reqHeight);
184 uint32_t reqWidth, uint32_t reqHeight,
DISurfaceComposer.h122 uint32_t reqWidth, uint32_t reqHeight,
/frameworks/base/core/java/android/service/wallpaper/
DIWallpaperService.aidl27 int reqWidth, int reqHeight); in attach() argument
DWallpaperService.java963 int windowType, boolean isPreview, int reqWidth, int reqHeight) { in IWallpaperEngineWrapper() argument
970 mReqHeight = reqHeight; in IWallpaperEngineWrapper()
1104 int windowType, boolean isPreview, int reqWidth, int reqHeight) { in attach() argument
1106 windowType, isPreview, reqWidth, reqHeight); in attach()
/frameworks/native/libs/gui/
DISurfaceComposer.cpp107 uint32_t reqWidth, uint32_t reqHeight, in captureScreen() argument
115 data.writeInt32(reqHeight); in captureScreen()
285 uint32_t reqHeight = data.readInt32(); in onTransact() local
289 reqWidth, reqHeight, minLayerZ, maxLayerZ); in onTransact()
DSurfaceComposerClient.cpp625 uint32_t reqWidth, uint32_t reqHeight, in capture() argument
630 reqWidth, reqHeight, minLayerZ, maxLayerZ); in capture()
652 uint32_t reqWidth, uint32_t reqHeight, in update() argument
665 reqWidth, reqHeight, minLayerZ, maxLayerZ); in update()
681 uint32_t reqWidth, uint32_t reqHeight) { in update() argument
682 return ScreenshotClient::update(display, reqWidth, reqHeight, 0, -1UL); in update()
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp2841 uint32_t reqWidth, uint32_t reqHeight, in captureScreen() argument
2866 uint32_t reqWidth, reqHeight; in captureScreen() member in android::SurfaceFlinger::captureScreen::MessageCaptureScreen
2873 uint32_t reqWidth, uint32_t reqHeight, in captureScreen() argument
2876 reqWidth(reqWidth), reqHeight(reqHeight), in captureScreen()
2888 producer, reqWidth, reqHeight, minLayerZ, maxLayerZ); in captureScreen()
2910 reqWidth, reqHeight, minLayerZ, maxLayerZ); in captureScreen()
2922 uint32_t reqWidth, uint32_t reqHeight, in renderScreenImplLocked() argument
2938 engine.setViewportAndProjection(reqWidth, reqHeight, hw_w, hw_h, yswap); in renderScreenImplLocked()
2969 uint32_t reqWidth, uint32_t reqHeight, in captureScreenImplLocked() argument
2978 if ((reqWidth > hw_w) || (reqHeight > hw_h)) { in captureScreenImplLocked()
[all …]
DSurfaceFlinger.h204 uint32_t reqWidth, uint32_t reqHeight,
307 uint32_t reqWidth, uint32_t reqHeight,
314 uint32_t reqWidth, uint32_t reqHeight,
/frameworks/base/docs/html/training/displaying-bitmaps/
Dload-bitmap.jd105 BitmapFactory.Options options, int reqWidth, int reqHeight) {
111 if (height > reqHeight || width > reqWidth) {
118 while ((halfHeight / inSampleSize) > reqHeight
141 int reqWidth, int reqHeight) {
149 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
Dmanage-memory.jd201 int reqWidth, int reqHeight, ImageCache cache) {