Searched defs:display (Results 26 - 50 of 114) sorted by relevance

12345

/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...]
H A DDisplayManager.java17 package android.hardware.display;
52 * Broadcast receiver that indicates when the Wifi display status changes.
62 "android.hardware.display.action.WIFI_DISPLAY_STATUS_CHANGED";
69 "android.hardware.display.extra.WIFI_DISPLAY_STATUS";
85 "android.hardware.display.category.PRESENTATION";
88 * Virtual display flag: Create a public display.
92 * When this flag is set, the virtual display is public.
94 * A public virtual display behaves just like most any other display tha
[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/packages/DocumentsUI/src/com/android/documentsui/
H A DLocalPreferences.java49 public static void setDisplayFileSize(Context context, boolean display) { argument
50 getPrefs(context).edit().putBoolean(KEY_FILE_SIZE, display).apply();
58 Context context, @ActionType int action, boolean display) {
59 getPrefs(context).edit().putBoolean(INCLUDE_DEVICE_ROOT + action, display).apply();
57 setShowDeviceRoot( Context context, @ActionType int action, boolean display) argument
/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/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.
70 * Gets the object that the display adapter should synchronize on when handling
71 * calls that come in from outside of the display manager service.
78 * Gets the display adapter's context.
85 * Gets a handler that the display adapter may use to post asynchronous messages.
92 * Gets the display adapte
[all...]
H A DRampAnimator.java17 package com.android.server.display;
H A DWifiDisplayAdapter.java17 package com.android.server.display;
26 import android.hardware.display.DisplayManager;
27 import android.hardware.display.WifiDisplay;
28 import android.hardware.display.WifiDisplaySessionInfo;
29 import android.hardware.display.WifiDisplayStatus;
51 * The Wifi display protocol relies on Wifi direct for discovering and pairing
52 * with the display. Once connected, the Media Server opens an RTSP socket and accepts
53 * a connection from the display. After session negotiation, the Media Server
54 * streams encoded buffers to the display.
69 private static final String ACTION_DISCONNECT = "android.server.display
360 addDisplayDeviceLocked(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;
29 * Represents a physical display device such as the built-in display
30 * an external monitor, or a WiFi display.
40 // The display device does not manage these properties itself, they are set by
41 // the display manager service. The display device shouldn't really be looking at these.
47 // The display device owns its surface, but it should only set it
62 * Gets the display adapte
[all...]
H A DDisplayDeviceInfo.java17 package com.android.server.display;
19 import android.hardware.display.DisplayViewport;
29 * Describes the characteristics of a physical display device.
33 * Flag: Indicates that this display device should be considered the default display
39 * Flag: Indicates that the orientation of this display device is coupled to the
40 * rotation of its associated logical display.
42 * This flag should be applied to the default display to indicate that the user
43 * physically rotates the display when content is presented in a different orientation.
44 * The display manage
[all...]
H A DDisplayPowerState.java17 package com.android.server.display;
32 * Controls the display power state.
35 * describes the properties of a display. When properties are changed, the component
37 * This mechanism enables multiple properties of the display power state to be animated
39 * the display is done on a separate thread to avoid blocking the looper.
82 // Although we set the brightness to full on here, the display power controller
143 * Sets the display brightness.
208 * The display is blanked when the level is 0.0. In normal use, the electron
H A DLogicalDisplay.java17 package com.android.server.display;
31 * Describes how a logical display is configured.
34 * primary display device from which the logical display derives its basic properties
37 * A logical display may be mirrored onto multiple display devices in addition to its
38 * primary display device. Note that the contents of a logical display may not
39 * always be visible, even on its primary display device, such as in the case where
40 * the primary display devic
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DCircularDisplayMask.java58 public CircularDisplayMask(Display display, SurfaceSession session, int zOrder, argument
61 display.getSize(mScreenSize);
63 Slog.w(TAG, "Screen dimensions of displayId = " + display.getDisplayId() +
78 ctrl.setLayerStack(display.getLayerStack());
129 // The radius is reduced by mMaskThickness to provide an anti aliasing effect on the display edges.
/frameworks/base/services/core/jni/
H A Dcom_android_server_AssetAtlasService.cpp54 if (fence != EGL_NO_SYNC_KHR) eglDestroySyncKHR(display, fence); \
55 if (image) eglDestroyImageKHR(display, image); \
57 if (surface != EGL_NO_SURFACE) eglDestroySurface(display, surface); \
58 if (context != EGL_NO_CONTEXT) eglDestroyContext(display, context); \
59 eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); \
61 eglTerminate(display); \
76 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); local
77 if (display == EGL_NO_DISPLAY) return JNI_FALSE;
81 if (!eglInitialize(display, &major, &minor)) {
100 if (!eglChooseConfig(display, configAttr
[all...]
/frameworks/base/tests/RemoteDisplayProvider/src/com/android/media/remotedisplay/test/
H A DRemoteDisplayProviderService.java29 * Remote display provider implementation that publishes working routes.
166 public void onConnect(final RemoteDisplay display) { argument
167 Log.d(TAG, "onConnect: display.getId()=" + display.getId());
169 if (display == mTestDisplay1 || display == mTestDisplay2) {
170 display.setStatus(RemoteDisplay.STATUS_CONNECTING);
171 updateDisplay(display);
175 if ((display == mTestDisplay1 || display
247 onDisconnect(RemoteDisplay display) argument
259 onSetVolume(RemoteDisplay display, int volume) argument
270 onAdjustVolume(RemoteDisplay display, int delta) argument
282 addDisplay(RemoteDisplay display) argument
288 removeDisplay(RemoteDisplay display) argument
294 updateDisplay(RemoteDisplay display) argument
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_object.cpp36 display(disp), count(1) {
38 display->addObject(this);
46 display->removeObject(this);
59 bool egl_object_t::get(egl_display_t const* display, egl_object_t* object) { argument
62 return display->getObject(object);
/frameworks/rs/driver/
H A DrsdGL.h38 EGLDisplay display; member in struct:RsdGLRec::__anon1644
/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.cpp112 bool SoftVPX::outputBuffers(bool flushDecoder, bool display, bool eos, bool *portWillReset) { argument
127 if (!display) {
215 mEOSStatus == INPUT_EOS_SEEN, true /* display */,
276 EOSseen /* flushDecoder */, true /* display */, EOSseen, &portWillReset)) {
291 true /* flushDecoder */, false /* display */, false /* eos */, &portWillReset)) {
303 true /* flushDecoder */, false /* display */, false /* eos */, &portWillReset)) {
/frameworks/base/core/java/android/view/
H A DGravity.java100 /** Special constant to enable clipping to an overall display along the
107 /** Special constant to enable clipping to an overall display along the
303 * Apply additional gravity behavior based on the overall "display" that an
306 * within a visible display. By default this moves or clips the object
307 * to be visible in the display; the gravity flags
312 * display.
313 * @param display The rectangle of the display in which the object is
316 * modified if needed to fit in the display.
318 public static void applyDisplay(int gravity, Rect display, Rec argument
376 applyDisplay(int gravity, Rect display, Rect inoutObj, int layoutDirection) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_media_RemoteDisplay.cpp112 NativeRemoteDisplay(const sp<IRemoteDisplay>& display, argument
114 mDisplay(display), mClient(client) {
151 sp<IRemoteDisplay> display = service->listenForRemoteDisplay(String16(opPackageName.c_str()), local
153 if (display == NULL) {
154 ALOGE("Media player service rejected request to listen for remote display '%s'.",
159 NativeRemoteDisplay* wrapper = new NativeRemoteDisplay(display, client);
/frameworks/base/media/lib/remotedisplay/java/com/android/media/remotedisplay/
H A DRemoteDisplayProvider.java37 * Base class for remote display providers implemented as unbundled services.
39 * To implement your remote display provider service, create a subclass of
67 * Declare your remote display provider service in your application manifest
143 * Creates a remote display provider.
145 * @param context The application context for the remote display provider.
154 * Gets the context of the remote display provider.
164 * a remote display provider service.
182 * Called when the system would like to connect to a display.
184 * @param display The remote display
186 onConnect(RemoteDisplay display) argument
194 onDisconnect(RemoteDisplay display) argument
203 onSetVolume(RemoteDisplay display, int volume) argument
212 onAdjustVolume(RemoteDisplay display, int delta) argument
239 addDisplay(RemoteDisplay display) argument
253 updateDisplay(RemoteDisplay display) argument
265 removeDisplay(RemoteDisplay display) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DLaunchingTaskPositioner.java33 * Determines where a launching task should be positioned and sized on the display.
81 void setDisplay(Display display) { argument
83 display.getSize(size);
/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
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/native/include/gui/
H A DGLConsumer.h253 EGLDisplay display, EGLSyncKHR eglFence);
264 graphicBuffer(), display(nullptr), fence(nullptr) {}
269 EGLDisplay display; member in struct:android::GLConsumer::PendingRelease
308 status_t createIfNeeded(EGLDisplay display,
458 // current display when updateTexImage is called for the first time and when

Completed in 618 milliseconds

12345