Searched refs:displays (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/services/java/com/android/server/display/
H A DPersistentDataStore.java50 * <remembered-wifi-displays>
52 * >remembered-wifi-displays>
105 public WifiDisplay[] applyWifiDisplayAliases(WifiDisplay[] displays) { argument
106 WifiDisplay[] results = displays;
108 int count = displays.length;
110 WifiDisplay result = applyWifiDisplayAlias(displays[i]);
111 if (result != displays[i]) {
112 if (results == displays) {
114 System.arraycopy(displays, 0, results, 0, count);
245 if (parser.getName().equals("remembered-wifi-displays")) {
[all...]
H A DWifiDisplayController.java385 final WifiDisplay[] displays = WifiDisplay.CREATOR.newArray(count);
387 displays[i] = createWifiDisplay(mAvailableWifiDisplayPeers.get(i));
393 mListener.onScanFinished(displays);
878 * Called on the handler thread when displays are connected or disconnected.
/frameworks/base/core/java/android/hardware/display/
H A DDisplayManager.java27 * Manages the properties of attached displays.
68 * Display category: Presentation displays.
70 * This category can be used to identify secondary displays that are suitable for
71 * use as presentation displays.
75 * on secondary displays.
103 * Gets all currently valid logical displays.
105 * @return An array containing all displays.
112 * Gets all currently valid logical displays of the specified category.
114 * When there are multiple displays in a category the returned displays ar
145 addMatchingDisplaysLocked( ArrayList<Display> displays, int[] displayIds, int matchType) argument
[all...]
/frameworks/native/libs/gui/
H A DISurfaceComposer.cpp73 const Vector<DisplayState>& displays,
87 Vector<DisplayState>::const_iterator b(displays.begin());
88 Vector<DisplayState>::const_iterator e(displays.end());
89 data.writeInt32(displays.size());
258 Vector<DisplayState> displays; local
259 displays.setCapacity(count);
262 displays.add(d);
265 setTransactionState(state, displays, flags);
71 setTransactionState( const Vector<ComposerState>& state, const Vector<DisplayState>& displays, uint32_t flags) argument
/frameworks/native/include/gui/
H A DISurfaceComposer.h75 /* get the token for the existing default displays. possible values
82 const Vector<DisplayState>& displays, uint32_t flags) = 0;
110 * intended to be used to get information about built-in displays */
/frameworks/base/media/java/android/media/
H A DMediaRouter.java218 final Display[] displays = getAllPresentationDisplays();
222 Display display = choosePresentationDisplayForRoute(info, displays);
862 private static WifiDisplay findMatchingDisplay(WifiDisplay d, WifiDisplay[] displays) { argument
863 for (int i = 0; i < displays.length; i++) {
864 final WifiDisplay other = displays[i];
883 private static Display choosePresentationDisplayForRoute(RouteInfo route, Display[] displays) { argument
887 for (Display display : displays) {
896 if (route == sStatic.mDefaultAudioVideo && displays.length > 0) {
898 return displays[0];
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp174 flinger->mCurrentState.displays.removeItem(this);
189 mCurrentState.displays.add(token, info);
331 // it is to be used with WIFI displays
482 // initialize our non-virtual displays
488 // set-up the displays that are already connected
490 // All non-virtual displays are currently considered secure.
492 mCurrentState.displays.add(token, DisplayDeviceState(type));
500 // for displays other than the main display, so we always
674 // All non-virtual displays are currently considered secure.
749 mCurrentState.displays
1675 setTransactionState( const Vector<ComposerState>& state, const Vector<DisplayState>& displays, uint32_t flags) argument
[all...]
H A DSurfaceFlinger.h102 // force full composition on all displays
177 DefaultKeyedVector< wp<IBinder>, DisplayDeviceState> displays; member in struct:android::SurfaceFlinger::State
195 const Vector<DisplayState>& displays, uint32_t flags);
/frameworks/base/services/java/com/android/server/wm/
H A DWindowAnimator.java922 // Used to track which displays layout changes have been done.
923 SparseIntArray displays = new SparseIntArray();
927 if (displays.indexOfKey(displayId) < 0) {
933 displays.put(displayId, changes);
H A DWindowManagerService.java801 Display[] displays = mDisplayManager.getDisplays();
802 for (Display display : displays) {
5541 // TODO(multidisplay): Expand to all displays?
5714 // TODO(multi-display): support multiple displays
6364 // TODO(multidisplay): Extend to multiple displays.
6690 // TODO(multidisplay): Extend to multiple displays.
7045 // TODO(multi-display): support other displays
7537 // TODO(multidisplay): Can non-default displays rotate?
8344 // Not needed on non-default displays.
8721 // TODO(multi-display): support other displays
[all...]

Completed in 1853 milliseconds