Searched refs:display (Results 76 - 100 of 190) sorted by relevance

12345678

/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplaySessionInfo.java17 package android.hardware.display;
23 * This class contains information regarding a wifi display session
H A DDisplayManagerGlobal.java17 package android.hardware.display;
21 import android.hardware.display.DisplayManager.DisplayListener;
41 * Manager communication with the display manager service on behalf of
50 // True if display info and display ids should be cached.
56 // an application could start processing a configuration change due to a display
57 // orientation change before the display info cache has actually been invalidated.
84 * Gets an instance of the display manager global singleton.
86 * @return The display manager instance, may be null early in system startup
87 * before the display manage
[all...]
H A DDisplayManagerInternal.java17 package android.hardware.display;
40 * The display power controller makes a copy of the provided object and then
48 * @return True if display is ready, false if there are important changes that must
62 * Returns information about the specified logical display.
64 * @param displayId The logical display id.
65 * @return The logical display info, or null if the display does not exist. The
71 * Registers a display transaction listener to provide the client a chance to
72 * update its surfaces within the same transaction as any display layout updates.
79 * Unregisters a display transactio
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManagerInternal.java21 import android.hardware.display.DisplayManagerInternal;
131 * rotation, and other window transformations related to display magnification
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayAdapter.java17 package com.android.server.display;
27 * A display adapter makes zero or more display devices available to the system
30 * For now, all display adapters are registered in the system server but
48 * Used to generate globally unique display mode ids.
63 * Gets the object that the display adapter should synchronize on when handling
64 * calls that come in from outside of the display manager service.
71 * Gets the display adapter's context.
78 * Gets a handler that the display adapter may use to post asynchronous messages.
85 * Gets the display adapte
[all...]
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
H A DDisplaySourceService.java24 import android.hardware.display.DisplayManager;
25 import android.hardware.display.VirtualDisplay;
115 getLogger().log("Accessory display sink available: "
126 getLogger().log("Accessory display sink not available.");
151 public void onDisplayAdded(Display display); argument
152 public void onDisplayRemoved(Display display); argument
/frameworks/native/libs/gui/tests/
H A DGLTest.h50 virtual EGLSurface createWindowSurface(EGLDisplay display, EGLConfig config,
H A DSurface_test.cpp99 sp<IBinder> display(sf->getBuiltInDisplay(ISurfaceComposer::eDisplayIdMain));
100 ASSERT_EQ(NO_ERROR, sf->captureScreen(display, producer, Rect(),
129 ASSERT_EQ(NO_ERROR, sf->captureScreen(display, producer, Rect(),
/frameworks/native/services/surfaceflinger/tests/
H A DTransaction_test.cpp64 sp<IBinder> display(sf->getBuiltInDisplay(
66 ASSERT_EQ(NO_ERROR, sf->captureScreen(display, producer, Rect(), 0, 0,
103 sp<IBinder> display(SurfaceComposerClient::getBuiltInDisplay(
106 SurfaceComposerClient::getDisplayInfo(display, &info);
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.h198 virtual void destroyDisplay(const sp<IBinder>& display);
206 virtual status_t captureScreen(const sp<IBinder>& display,
211 virtual status_t getDisplayStats(const sp<IBinder>& display,
213 virtual status_t getDisplayConfigs(const sp<IBinder>& display,
215 virtual int getActiveConfig(const sp<IBinder>& display);
216 virtual void setPowerMode(const sp<IBinder>& display, int mode);
217 virtual status_t setActiveConfig(const sp<IBinder>& display, int id);
346 // Create an IBinder for a builtin display and add it to current state
363 // allocate a h/w composer display id
388 // compose surfaces for display h
[all...]
H A DDisplayDevice.cpp60 * Initialize the display to the specified values.
95 * Create our display's surface
99 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); local
101 config = RenderEngine::chooseEglConfig(display, format);
103 surface = eglCreateWindowSurface(display, config, window, NULL);
104 eglQuerySurface(display, surface, EGL_WIDTH, &mDisplayWidth);
105 eglQuerySurface(display, surface, EGL_HEIGHT, &mDisplayHeight);
107 // Make sure that composition can never be stalled by a virtual display
110 // * Here, in case the display is composed entirely by HWC.
118 mDisplay = display;
[all...]
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java32 * or custom display object, or need to call
59 public DynamicLayout(CharSequence base, CharSequence display, argument
64 this(base, display, paint, width, align, spacingmult, spacingadd,
75 public DynamicLayout(CharSequence base, CharSequence display, argument
81 this(base, display, paint, width, align, TextDirectionHeuristics.FIRSTSTRONG_LTR,
96 public DynamicLayout(CharSequence base, CharSequence display, argument
103 ? display
104 : (display instanceof Spanned)
105 ? new SpannedEllipsizer(display)
106 : new Ellipsizer(display),
[all...]
/frameworks/base/media/java/android/media/
H A DMediaRouter.java30 import android.hardware.display.DisplayManager;
31 import android.hardware.display.WifiDisplay;
32 import android.hardware.display.WifiDisplayStatus;
127 // Only the system can configure wifi displays. The display manager
143 // This will select the active wifi display route if there is one.
273 // Update wifi display scanning.
278 // Don't scan while already connected to a remote display since
606 * of the device's primary display or a customized
609 * <p>Once initiated, display mirroring is transparent to the application.
612 * on the external display wit
973 matchesDeviceAddress(WifiDisplay display, RouteInfo info) argument
1400 makeWifiDisplayRoute(WifiDisplay display, WifiDisplayStatus wfdStatus) argument
1417 updateWifiDisplayRoute( RouteInfo route, WifiDisplay display, WifiDisplayStatus wfdStatus, boolean disconnected) argument
[all...]
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp265 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); local
267 eglInitialize(display, 0, 0);
268 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
269 surface = eglCreateWindowSurface(display, config, s.get(), NULL);
270 context = eglCreateContext(display, config, NULL, NULL);
271 eglQuerySurface(display, surface, EGL_WIDTH, &w);
272 eglQuerySurface(display, surface, EGL_HEIGHT, &h);
274 if (eglMakeCurrent(display, surface, surface, context) == EGL_FALSE)
277 mDisplay = display;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewHeader.java226 Rect display = mSsp.getWindowRect();
229 if (display.equals(taskRect) || taskRect.isEmpty()) {
232 boolean top = display.top == taskRect.top;
233 boolean bottom = display.bottom == taskRect.bottom;
234 boolean left = display.left == taskRect.left;
235 boolean right = display.right == taskRect.right;
/frameworks/av/media/libmediaplayerservice/
H A DAndroid.mk52 $(TOP)/frameworks/av/media/libstagefright/wifi-display \
/frameworks/base/media/java/android/media/projection/
H A DMediaProjection.java22 import android.hardware.display.DisplayManager;
23 import android.hardware.display.VirtualDisplay;
111 * Creates a {@link android.hardware.display.VirtualDisplay} to capture the
114 * @param name The name of the virtual display, must be non-empty.
115 * @param width The width of the virtual display in pixels. Must be
117 * @param height The height of the virtual display in pixels. Must be
119 * @param dpi The density of the virtual display in dpi. Must be greater
121 * @param surface The surface to which the content of the virtual display
123 * @param flags A combination of virtual display flags. See {@link DisplayManager} for the full
125 * @param callback Callback to call when the virtual display'
[all...]
/frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
H A DFakeApp.java98 final Display display = wm.getDefaultDisplay();
127 int maxSize = display.getMaximumSizeDimension();
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardDisplayManager.java107 if (DEBUG) Slog.i(TAG, "Keyguard enabled on display: " + presentationDisplay);
114 Slog.w(TAG, "Invalid display:", ex);
127 private static final int VIDEO_SAFE_REGION = 80; // Percentage of display width & height
145 public KeyguardPresentation(Context context, Display display, int theme) { argument
146 super(context, display, theme);
/frameworks/base/services/core/java/com/android/server/wm/
H A DFocusedStackFrame.java50 public FocusedStackFrame(Display display, SurfaceSession session) { argument
60 ctrl.setLayerStack(display.getLayerStack());
/frameworks/native/include/gui/
H A DGLConsumer.h251 EGLDisplay display, EGLSyncKHR eglFence);
291 status_t createIfNeeded(EGLDisplay display,
441 // current display when updateTexImage is called for the first time and when
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java147 * <p>The default density is the same density as the current display,
388 * well as the ability to display transparent/translucent colors.
782 * @param display Display metrics for the display this bitmap will be
789 public static Bitmap createBitmap(DisplayMetrics display, int width, argument
791 return createBitmap(display, width, height, config, true);
815 * @param display Display metrics for the display this bitmap will be
826 private static Bitmap createBitmap(DisplayMetrics display, int width, int height, argument
832 if (display !
888 createBitmap(DisplayMetrics display, int colors[], int offset, int stride, int width, int height, Config config) argument
948 createBitmap(DisplayMetrics display, int colors[], int width, int height, Config config) argument
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp89 void egl_cache_t::initialize(egl_display_t *display) { argument
94 const char* exts = display->disp.queryString.extensions;
114 eglSetBlobCacheFuncsANDROID(display->disp.dpy,
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/core/
H A DShellUiAutomatorBridge.java26 import android.hardware.display.DisplayManagerGlobal;
/frameworks/base/core/java/android/app/
H A DUiAutomation.java27 import android.hardware.display.DisplayManagerGlobal;
619 Display display = DisplayManagerGlobal.getInstance()
622 display.getRealSize(displaySize);
629 final int rotation = display.getRotation();

Completed in 2853 milliseconds

12345678