Searched defs:display (Results 1 - 25 of 114) sorted by path

12345

/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerCCDecoder.cpp498 void NuPlayer::CCDecoder::display(int64_t timeUs) { function in class:android::NuPlayer::CCDecoder
/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/cmds/bootanimation/
H A DBootAnimation.cpp261 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); local
263 eglInitialize(display, 0, 0);
264 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
265 surface = eglCreateWindowSurface(display, config, s.get(), NULL);
266 context = eglCreateContext(display, config, NULL, NULL);
267 eglQuerySurface(display, surface, EGL_WIDTH, &w);
268 eglQuerySurface(display, surface, EGL_HEIGHT, &h);
270 if (eglMakeCurrent(display, surface, surface, context) == EGL_FALSE)
273 mDisplay = display;
/frameworks/base/cmds/screencap/
H A Dscreencap.cpp50 "usage: %s [-hp] [-d display-id] [FILENAME]\n"
53 " -d: specify the display id to capture, default %d.\n"
148 sp<IBinder> display = SurfaceComposerClient::getBuiltInDisplay(displayId); local
149 if (display == NULL) {
150 fprintf(stderr, "Unable to get handle for display %d\n", displayId);
155 SurfaceComposerClient::getDisplayConfigs(display, &configs);
156 int activeConfig = SurfaceComposerClient::getActiveConfig(display);
165 status_t result = screenshot.update(display, Rect(), 0, 0, 0, -1U,
/frameworks/base/core/java/android/app/
H A DContextImpl.java163 private @Nullable Display mDisplay; // may be null if default display
1893 public Context createDisplayContext(Display display) { argument
1894 if (display == null) {
1895 throw new IllegalArgumentException("display must not be null");
1899 mUser, mFlags, display, null, Display.INVALID_DISPLAY);
2025 Display display, Configuration overrideConfiguration, int createDisplayWithId) {
2054 : (display != null) ? display.getDisplayId() : Display.DEFAULT_DISPLAY;
2104 mDisplay = (createDisplayWithId == Display.INVALID_DISPLAY) ? display
2023 ContextImpl(ContextImpl container, ActivityThread mainThread, LoadedApk packageInfo, IBinder activityToken, UserHandle user, int flags, Display display, Configuration overrideConfiguration, int createDisplayWithId) argument
H A DPresentation.java21 import android.hardware.display.DisplayManager;
22 import android.hardware.display.DisplayManager.DisplayListener;
37 * content on a secondary display. A {@link Presentation} is associated with
39 * resource configuration according to the display's metrics.
44 * to ensure that assets of the correct size and density for the target display
48 * the display to which it is attached is removed. An activity should take
53 * <h3>Choosing a presentation display</h3>
56 * on which it will appear. Choosing a presentation display is sometimes difficult
58 * which display is best, an application should let the system choose a suitable
59 * presentation display
158 Presentation(Context outerContext, Display display) argument
176 Presentation(Context outerContext, Display display, int theme) argument
289 createPresentationContext( Context outerContext, Display display, int theme) argument
[all...]
/frameworks/base/core/java/android/content/
H A DContext.java3451 * {@link android.hardware.display.DisplayManager} for interacting with display devices.
3454 * @see android.hardware.display.DisplayManager
3456 public static final String DISPLAY_SERVICE = "display";
3796 * display).
4187 * The returned display Context provides a {@link WindowManager}
4189 * on the given display. The WindowManager's {@link WindowManager#getDefaultDisplay}
4192 * @param display A {@link Display} object specifying the display
4196 * @return A {@link Context} for the display
4198 createDisplayContext(@onNull Display display) argument
[all...]
H A DContextWrapper.java807 public Context createDisplayContext(Display display) { argument
808 return mBase.createDisplayContext(display);
/frameworks/base/core/java/android/hardware/display/
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 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...]
H A DDisplayViewport.java17 package android.hardware.display;
22 * Describes how the pixels of physical display device reflects the content of
23 * a logical display.
26 * physical display coordinates into logical display coordinates.
35 // The logical display id.
41 // The portion of the logical display that are presented on this physical display.
44 // The portion of the (rotated) physical display that shows the logical display content
[all...]
H A DVirtualDisplay.java16 package android.hardware.display;
22 * Represents a virtual display. The content of a virtual display is rendered to a
26 * Because a virtual display renders to a surface provided by the application, it will be
40 VirtualDisplay(DisplayManagerGlobal global, Display display, argument
43 mDisplay = display;
49 * Gets the virtual display.
56 * Gets the surface that backs the virtual display.
63 * Sets the surface that backs the virtual display.
65 * Detaching the surface that backs a virtual display ha
[all...]
H A DWifiDisplay.java17 package android.hardware.display;
25 * Describes the properties of a Wifi display.
77 * Gets the MAC address of the Wifi display device.
84 * Gets the name of the Wifi display device.
91 * Gets the user-specified alias of the Wifi display device, or null if none.
147 * Returns true if the other display is not null and has the same address as this one.
H A DWifiDisplaySessionInfo.java17 package android.hardware.display;
23 * This class contains information regarding a wifi display session
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/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...]
H A DLayout.java106 * Return how wide a layout must be in order to display the
115 * Return how wide a layout must be in order to display the
143 * Subclasses of Layout use this constructor to set the display text,
163 * Subclasses of Layout use this constructor to set the display text,
2000 public SpannedEllipsizer(CharSequence display) { argument
2001 super(display);
2002 mSpanned = (Spanned) display;
/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...]
H A DSurfaceControl.java161 * external display sink. If a hardware-protected path is not available,
212 /* built-in physical display ids (keep in sync with ISurfaceComposer.h)
213 * these are different from the logical display ids used elsewhere in the framework */
216 * Built-in physical display id: Main display.
222 * Built-in physical display id: Attached HDMI display.
525 * set display parameters.
530 * Describes the properties of a physical display known to surface flinger.
703 * @param display Th
717 screenshot(IBinder display, Surface consumer, int width, int height, int minLayer, int maxLayer, boolean useIdentityTransform) argument
734 screenshot(IBinder display, Surface consumer, int width, int height) argument
745 screenshot(IBinder display, Surface consumer) argument
809 screenshot(IBinder display, Surface consumer, Rect sourceCrop, int width, int height, int minLayer, int maxLayer, boolean allLayers, boolean useIdentityTransform) argument
[all...]
H A DView.java59 import android.hardware.display.DisplayManagerGlobal;
650 * how the view is drawn on the display. In particular, the {@link ViewPropertyAnimator} class
1087 * The scrollbar style to display the scrollbars inside the content area,
1094 * The scrollbar style to display the scrollbars inside the padded area,
1101 * The scrollbar style to display the scrollbars at the edge of the view,
1108 * The scrollbar style to display the scrollbars at the edge of the view,
1675 * Flag to indicate that this view was marked INVALIDATED, or had its display list
1677 * its display list. This flag, used only when hw accelerated, allows us to clear the
1679 * in drawChild(), when we decide to draw a view's children's display lists into our own).
1865 * a view's display lis
23036 AttachInfo(IWindowSession session, IWindow window, Display display, ViewRootImpl viewRootImpl, Handler handler, Callbacks effectPlayer) argument
[all...]
H A DViewRootImpl.java48 import android.hardware.display.DisplayManager;
49 import android.hardware.display.DisplayManager.DisplayListener;
143 // properties used by emulator to determine display shape
410 public ViewRootImpl(Context context, Display display) { argument
413 mDisplay = display;
431 mAttachInfo = new View.AttachInfo(mWindowSession, mWindow, display, this, mHandler, this);
707 + mWindow + " -- the specified display can not be found");
1311 "Measuring " + host + " in display " + desiredWindowWidth
1317 // stretch to fill the entire width of the screen to display
1836 // before actually drawing them, so it can display the
[all...]
H A DWindowManagerGlobal.java46 * the caller already knows the display and relevant compatibility information
264 Display display, Window parentWindow) {
268 if (display == null) {
269 throw new IllegalArgumentException("display must not be null");
331 root = new ViewRootImpl(view.getContext(), display);
571 pw.printf(" %s\n %d views, %.2f kB of display lists",
263 addView(View view, ViewGroup.LayoutParams params, Display display, Window parentWindow) argument
H A DWindowManagerPolicy.java161 * @param displayFrame The frame of the overall display in which this
164 * @param overlayFrame The frame within the display that is inside
166 * @param contentFrame The frame within the display in which we would
169 * @param visibleFrame The frame within the display that the window
202 * Retrieve the frame of the display that this window was last
206 * @return Rect The rectangle holding the display frame.
212 * display that this window was last laid out in. Must be called with the
215 * @return Rect The rectangle holding the display overscan frame.
222 * should be placed. It will be smaller than the display frame to
399 * @return true if window is on default display
564 setInitialDisplaySize(Display display, int width, int height, int density) argument
570 setDisplayOverscan(Display display, int left, int top, int right, int bottom) 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);

Completed in 413 milliseconds

12345