Searched refs:display (Results 51 - 75 of 181) sorted by relevance

12345678

/frameworks/base/core/jni/
H A Dandroid_media_RemoteDisplay.cpp112 NativeRemoteDisplay(const sp<IRemoteDisplay>& display, argument
114 mDisplay(display), mClient(client) {
149 sp<IRemoteDisplay> display = service->listenForRemoteDisplay( local
151 if (display == NULL) {
152 ALOGE("Media player service rejected request to listen for remote display '%s'.",
157 NativeRemoteDisplay* wrapper = new NativeRemoteDisplay(display, client);
/frameworks/base/core/java/android/widget/
H A DDateTimeView.java114 int display;
136 // Choose the display mode
140 display = SHOW_TIME;
144 display = SHOW_MONTH_DAY_YEAR;
150 if (display == mLastDisplay && mLastFormat != null) {
154 switch (display) {
162 throw new RuntimeException("unknown display value: " + display);
172 if (display == SHOW_TIME) {
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java49 * <li>Manages an EGL display, which enables OpenGL to render into a surface.
125 * the OpenGL display.
556 * recreate the OpenGL display and resume the rendering
755 EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig); argument
756 void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context); argument
762 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig config) { argument
766 return egl.eglCreateContext(display, config, EGL10.EGL_NO_CONTEXT,
770 public void destroyContext(EGL10 egl, EGLDisplay display, argument
772 if (!egl.eglDestroyContext(display, context)) {
773 Log.e("DefaultContextFactory", "display
792 createWindowSurface(EGL10 egl, EGLDisplay display, EGLConfig config, Object nativeWindow) argument
794 destroySurface(EGL10 egl, EGLDisplay display, EGLSurface surface) argument
799 createWindowSurface(EGL10 egl, EGLDisplay display, EGLConfig config, Object nativeWindow) argument
816 destroySurface(EGL10 egl, EGLDisplay display, EGLSurface surface) argument
839 chooseConfig(EGL10 egl, EGLDisplay display) argument
848 chooseConfig(EGL10 egl, EGLDisplay display) argument
874 chooseConfig(EGL10 egl, EGLDisplay display, EGLConfig[] configs) argument
925 chooseConfig(EGL10 egl, EGLDisplay display, EGLConfig[] configs) argument
950 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
[all...]
/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplayStatus.java17 package android.hardware.display;
25 * Describes the current global state of Wifi display connectivity, including the
26 * currently connected display and all available or remembered displays.
43 /** Feature state: Wifi display is not available on this device. */
45 /** Feature state: Wifi display is disabled, probably because Wifi is disabled. */
47 /** Feature state: Wifi display is turned off in settings. */
49 /** Feature state: Wifi display is turned on in settings. */
59 /** Display state: Connecting to active display. */
61 /** Display state: Connected to active display. */
113 * Returns the state of the Wifi display featur
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DEmulatorDisplayOverlay.java50 public EmulatorDisplayOverlay(Context context, Display display, SurfaceSession session, argument
53 display.getSize(mScreenSize);
65 ctrl.setLayerStack(display.getLayerStack());
H A DCircularDisplayMask.java54 public CircularDisplayMask(Display display, SurfaceSession session, int zOrder, argument
57 display.getSize(mScreenSize);
59 Slog.w(TAG, "Screen dimensions of displayId = " + display.getDisplayId() +
74 ctrl.setLayerStack(display.getLayerStack());
124 // The radius is reduced by 1 to provide an anti aliasing effect on the display edges.
H A DStrictModeFlash.java41 public StrictModeFlash(Display display, SurfaceSession session) { argument
46 ctrl.setLayerStack(display.getLayerStack());
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerCCDecoder.h38 void display(int64_t timeUs);
/frameworks/base/core/java/android/view/
H A DWindowManagerInternal.java21 import android.hardware.display.DisplayManagerInternal;
96 * rotation, and other window transformations related to display magnification
H A DSurfaceControl.java152 * external display sink. If a hardware-protected path is not available,
203 /* built-in physical display ids (keep in sync with ISurfaceComposer.h)
204 * these are different from the logical display ids used elsewhere in the framework */
207 * Built-in physical display id: Main display.
213 * Built-in physical display id: Attached HDMI display.
457 * set display parameters.
462 * Describes the properties of a physical display known to surface flinger.
624 * @param display Th
638 screenshot(IBinder display, Surface consumer, int width, int height, int minLayer, int maxLayer, boolean useIdentityTransform) argument
655 screenshot(IBinder display, Surface consumer, int width, int height) argument
666 screenshot(IBinder display, Surface consumer) argument
730 screenshot(IBinder display, Surface consumer, Rect sourceCrop, int width, int height, int minLayer, int maxLayer, boolean allLayers, boolean useIdentityTransform) argument
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.h45 void initialize(egl_display_t* display);
H A Degl_display.cpp101 EGLDisplay egl_display_t::getDisplay(EGLNativeDisplayType display) { argument
110 EGLDisplay dpy = cnx->egl.eglGetDisplay(display);
118 return EGLDisplay(uintptr_t(display) + 1U);
166 // display is now initialized
169 // get the query-strings for this display for each implementation
185 // the query strings are per-display
249 * "Termination of a display that has already been terminated,
256 // this is specific to Android, display termination is ref-counted.
311 egl_display_t* display = cur_c->getDisplay(); local
312 if (display) {
[all...]
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp138 void destroyDisplay(const sp<IBinder>& display);
193 void Composer::destroyDisplay(const sp<IBinder>& display) { argument
194 return ComposerService::getComposerService()->destroyDisplay(display);
512 void SurfaceComposerClient::destroyDisplay(const sp<IBinder>& display) { argument
513 Composer::getInstance().destroyDisplay(display);
641 const sp<IBinder>& display, Vector<DisplayInfo>* configs)
643 return ComposerService::getComposerService()->getDisplayConfigs(display, configs);
646 status_t SurfaceComposerClient::getDisplayInfo(const sp<IBinder>& display, argument
649 status_t result = getDisplayConfigs(display, &configs);
654 int activeId = getActiveConfig(display);
640 getDisplayConfigs( const sp<IBinder>& display, Vector<DisplayInfo>* configs) argument
664 getActiveConfig(const sp<IBinder>& display) argument
668 setActiveConfig(const sp<IBinder>& display, int id) argument
687 capture( const sp<IBinder>& display, const sp<IGraphicBufferProducer>& producer, Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight, uint32_t minLayerZ, uint32_t maxLayerZ, bool useIdentityTransform) argument
717 update(const sp<IBinder>& display, Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight, uint32_t minLayerZ, uint32_t maxLayerZ, bool useIdentityTransform, uint32_t rotation) argument
744 update(const sp<IBinder>& display, Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight, uint32_t minLayerZ, uint32_t maxLayerZ, bool useIdentityTransform) argument
753 update(const sp<IBinder>& display, Rect sourceCrop, bool useIdentityTransform) argument
759 update(const sp<IBinder>& display, Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight, bool useIdentityTransform) argument
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DWifiDisplayController.java17 package com.android.server.display;
27 import android.hardware.display.WifiDisplay;
28 import android.hardware.display.WifiDisplaySessionInfo;
29 import android.hardware.display.WifiDisplayStatus;
64 * accidentally introducing any deadlocks due to the display manager calling
109 // True if Wifi display is enabled by the user.
140 // The remote display that is listening on the connection.
144 // The remote display interface.
364 Slog.i(TAG, "Starting Wifi display scan.");
375 // The wifi display connectio
945 advertiseDisplay(final WifiDisplay display, final Surface surface, final int width, final int height, final int flags) argument
991 readvertiseDisplay(WifiDisplay display) argument
1105 onDisplayConnecting(WifiDisplay display) argument
1107 onDisplayChanged(WifiDisplay display) argument
1108 onDisplayConnected(WifiDisplay display, Surface surface, int width, int height, int flags) argument
[all...]
H A DDisplayDevice.java17 package com.android.server.display;
20 import android.hardware.display.DisplayViewport;
28 * Represents a physical display device such as the built-in display
29 * an external monitor, or a WiFi display.
39 // The display device does not manage these properties itself, they are set by
40 // the display manager service. The display device shouldn't really be looking at these.
46 // The display device owns its surface, but it should only set it
57 * Gets the display adapte
[all...]
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiDevice.java121 * Returns the display size in dp (device-independent pixel)
123 * The returned display size is adjusted per screen rotation. Also this will return the actual
126 * @return a Point containing the display size in dp
130 Display display = getAutomatorBridge().getDefaultDisplay();
132 display.getRealSize(p);
134 display.getRealMetrics(metrics);
371 * Gets the width of the display, in pixels. The width and height details
372 * are reported based on the current orientation of the display.
378 Display display = getAutomatorBridge().getDefaultDisplay();
380 display
[all...]
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
H A DSourceActivity.java71 mLogger.log("Waiting for accessory display sink to be attached to USB...");
132 mLogger.log("Not connecting to USB accessory because it is not an accessory display sink: "
240 public void onDisplayAdded(Display display) { argument
241 mLogger.log("Accessory display added: " + display);
243 mPresentation = new DemoPresentation(SourceActivity.this, display, mLogger);
248 public void onDisplayRemoved(Display display) { argument
249 mLogger.log("Accessory display removed: " + display);
/frameworks/base/core/java/android/provider/
H A DContacts.java259 * The display name. If name is not null name, else if number is not null number,
961 CharSequence display = "";
968 display = labels[type - 1];
970 display = labels[People.Phones.TYPE_HOME - 1];
974 display = label;
977 return display;
1398 CharSequence display = "";
1405 display = labels[type - 1];
1407 display = labels[ContactMethods.TYPE_HOME - 1];
1411 display
[all...]
/frameworks/base/cmds/screencap/
H A Dscreencap.cpp45 "usage: %s [-hp] [-d display-id] [FILENAME]\n"
48 " -d: specify the display id to capture, default %d.\n"
143 sp<IBinder> display = SurfaceComposerClient::getBuiltInDisplay(displayId); local
144 if (display != NULL && screenshot.update(display, Rect(), false) == NO_ERROR) {
/frameworks/native/libs/gui/tests/
H A DSurface_test.cpp97 sp<IBinder> display(sf->getBuiltInDisplay(ISurfaceComposer::eDisplayIdMain));
98 ASSERT_EQ(NO_ERROR, sf->captureScreen(display, producer, Rect(),
127 ASSERT_EQ(NO_ERROR, sf->captureScreen(display, producer, Rect(),
/frameworks/base/media/mca/filterfw/jni/
H A Djni_gl_environment.cpp166 eglChooseConfig(gl_env->display(), configAttribs, &config, 1, &numConfigs);
173 EGLSurface egl_surface = eglCreateWindowSurface(gl_env->display(),
235 eglChooseConfig(gl_env->display(), configAttribs, &config, 1, &numConfigs);
242 EGLSurface egl_surface = eglCreateWindowSurface(gl_env->display(),
333 eglChooseConfig(gl_env->display(), configAttribs, &config, 1, &numConfigs);
341 EGLSurface egl_surface = eglCreateWindowSurface(gl_env->display(),
/frameworks/av/media/libmediaplayerservice/
H A DAndroid.mk53 $(TOP)/frameworks/av/media/libstagefright/wifi-display \
/frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
H A DFakeBackgroundService.java72 final Display display = wm.getDefaultDisplay();
92 int maxSize = display.getMaximumSizeDimension();
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.h62 static RenderEngine* create(EGLDisplay display, int hwcFormat);
64 static EGLConfig chooseEglConfig(EGLDisplay display, int format);
/frameworks/rs/driver/
H A DrsdFrameBufferObj.cpp132 eglQuerySurface(dc->gl.egl.display, dc->gl.egl.surface, EGL_WIDTH, &width);
133 eglQuerySurface(dc->gl.egl.display, dc->gl.egl.surface, EGL_HEIGHT, &height);

Completed in 713 milliseconds

12345678