Lines Matching refs:display

17 package android.hardware.display;
20 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 manager has been fully initialized.
102 * Get information about a particular logical display.
104 * @param displayId The logical display id.
105 * @return Information about the specified display, or null if it does not exist.
135 Log.e(TAG, "Could not get display information from display manager.", ex);
141 * Gets all currently valid logical display ids.
143 * @return An array containing all display ids.
162 Log.e(TAG, "Could not get display ids from display manager.", ex);
168 * Gets information about a logical display.
170 * The display metrics may be adjusted to provide compatibility
173 * @param displayId The logical display id.
175 * @return The display object, or null if there is no display with the given id.
186 * Gets information about a logical display without applying any compatibility metrics.
188 * @param displayId The logical display id.
189 * @return The display object, or null if there is no display with the given id.
196 * Gets information about a logical display without applying any compatibility metrics.
198 * @param displayId The logical display id.
199 * @param IBinder the activity token for this display.
200 * @return The display object, or null if there is no display with the given id.
251 Log.e(TAG, "Failed to register callback with display manager service.", ex);
296 Log.wtf(TAG, "Wifi display scan nest count became negative: "
311 Log.e(TAG, "Failed to connect to Wifi display " + deviceAddress + ".", ex);
319 Log.e(TAG, "Failed to pause Wifi display.", ex);
327 Log.e(TAG, "Failed to resume Wifi display.", ex);
335 Log.e(TAG, "Failed to disconnect from Wifi display.", ex);
347 Log.e(TAG, "Failed to rename Wifi display " + deviceAddress
360 Log.e(TAG, "Failed to forget Wifi display.", ex);
368 Log.e(TAG, "Failed to get Wifi display status.", ex);
391 Log.e(TAG, "Could not create virtual display: " + name, ex);
395 Log.e(TAG, "Could not create virtual display: " + name);
398 Display display = getRealDisplay(displayId);
399 if (display == null) {
400 Log.wtf(TAG, "Could not obtain display info for newly created "
401 + "virtual display: " + name);
408 return new VirtualDisplay(this, display, callbackWrapper, surface);
415 Log.w(TAG, "Failed to set virtual display surface.", ex);
424 Log.w(TAG, "Failed to resize virtual display.", ex);
432 Log.w(TAG, "Failed to release virtual display.", ex);