Home
last modified time | relevance | path

Searched refs:DisplayDeviceInfo (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/services/core/java/com/android/server/display/
DLogicalDisplay.java71 private DisplayDeviceInfo mPrimaryDisplayDeviceInfo;
207 DisplayDeviceInfo deviceInfo = mPrimaryDisplayDevice.getDisplayDeviceInfoLocked(); in updateLocked()
211 if ((deviceInfo.flags & DisplayDeviceInfo.FLAG_SUPPORTS_PROTECTED_BUFFERS) != 0) { in updateLocked()
214 if ((deviceInfo.flags & DisplayDeviceInfo.FLAG_SECURE) != 0) { in updateLocked()
217 if ((deviceInfo.flags & DisplayDeviceInfo.FLAG_PRIVATE) != 0) { in updateLocked()
220 if ((deviceInfo.flags & DisplayDeviceInfo.FLAG_PRESENTATION) != 0) { in updateLocked()
223 if ((deviceInfo.flags & DisplayDeviceInfo.FLAG_ROUND) != 0) { in updateLocked()
295 final DisplayDeviceInfo displayDeviceInfo = device.getDisplayDeviceInfoLocked(); in configureDisplayInTransactionLocked()
306 if ((displayDeviceInfo.flags & DisplayDeviceInfo.FLAG_ROTATES_WITH_CONTENT) != 0) { in configureDisplayInTransactionLocked()
DVirtualDisplayAdapter.java181 private DisplayDeviceInfo mInfo;
291 public DisplayDeviceInfo getDisplayDeviceInfoLocked() { in getDisplayDeviceInfoLocked()
293 mInfo = new DisplayDeviceInfo(); in getDisplayDeviceInfoLocked()
307 mInfo.flags |= DisplayDeviceInfo.FLAG_PRIVATE in getDisplayDeviceInfoLocked()
308 | DisplayDeviceInfo.FLAG_NEVER_BLANK; in getDisplayDeviceInfoLocked()
311 mInfo.flags &= ~DisplayDeviceInfo.FLAG_NEVER_BLANK; in getDisplayDeviceInfoLocked()
313 mInfo.flags |= DisplayDeviceInfo.FLAG_OWN_CONTENT_ONLY; in getDisplayDeviceInfoLocked()
317 mInfo.flags |= DisplayDeviceInfo.FLAG_SECURE; in getDisplayDeviceInfoLocked()
320 mInfo.flags |= DisplayDeviceInfo.FLAG_PRESENTATION; in getDisplayDeviceInfoLocked()
332 mInfo.touch = DisplayDeviceInfo.TOUCH_NONE; in getDisplayDeviceInfoLocked()
DLocalDisplayAdapter.java150 private DisplayDeviceInfo mInfo;
353 public DisplayDeviceInfo getDisplayDeviceInfoLocked() { in getDisplayDeviceInfoLocked()
356 mInfo = new DisplayDeviceInfo(); in getDisplayDeviceInfoLocked()
382 mInfo.flags = DisplayDeviceInfo.FLAG_SECURE in getDisplayDeviceInfoLocked()
383 | DisplayDeviceInfo.FLAG_SUPPORTS_PROTECTED_BUFFERS; in getDisplayDeviceInfoLocked()
390 mInfo.flags |= DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY in getDisplayDeviceInfoLocked()
391 | DisplayDeviceInfo.FLAG_ROTATES_WITH_CONTENT; in getDisplayDeviceInfoLocked()
395 mInfo.flags |= DisplayDeviceInfo.FLAG_ROUND; in getDisplayDeviceInfoLocked()
401 mInfo.touch = DisplayDeviceInfo.TOUCH_INTERNAL; in getDisplayDeviceInfoLocked()
404 mInfo.flags |= DisplayDeviceInfo.FLAG_PRESENTATION; in getDisplayDeviceInfoLocked()
[all …]
DDisplayDeviceInfo.java31 final class DisplayDeviceInfo { class
270 return o instanceof DisplayDeviceInfo && equals((DisplayDeviceInfo)o); in equals()
273 public boolean equals(DisplayDeviceInfo other) { in equals()
281 public int diff(DisplayDeviceInfo other) { in diff()
319 public void copyFrom(DisplayDeviceInfo other) { in copyFrom()
DDisplayDevice.java53 DisplayDeviceInfo mDebugLastLoggedDeviceInfo;
108 public abstract DisplayDeviceInfo getDisplayDeviceInfoLocked(); in getDisplayDeviceInfoLocked()
216 DisplayDeviceInfo info = getDisplayDeviceInfoLocked(); in populateViewportLocked()
DOverlayDisplayAdapter.java234 private DisplayDeviceInfo mInfo;
284 public DisplayDeviceInfo getDisplayDeviceInfoLocked() { in getDisplayDeviceInfoLocked()
288 mInfo = new DisplayDeviceInfo(); in getDisplayDeviceInfoLocked()
301 mInfo.flags = DisplayDeviceInfo.FLAG_PRESENTATION; in getDisplayDeviceInfoLocked()
303 mInfo.flags |= DisplayDeviceInfo.FLAG_SECURE; in getDisplayDeviceInfoLocked()
306 mInfo.touch = DisplayDeviceInfo.TOUCH_NONE; in getDisplayDeviceInfoLocked()
DWifiDisplayAdapter.java371 int deviceFlags = DisplayDeviceInfo.FLAG_PRESENTATION; in addDisplayDeviceLocked()
373 deviceFlags |= DisplayDeviceInfo.FLAG_SECURE; in addDisplayDeviceLocked()
375 deviceFlags |= DisplayDeviceInfo.FLAG_SUPPORTS_PROTECTED_BUFFERS; in addDisplayDeviceLocked()
589 private DisplayDeviceInfo mInfo;
626 public DisplayDeviceInfo getDisplayDeviceInfoLocked() { in getDisplayDeviceInfoLocked()
628 mInfo = new DisplayDeviceInfo(); in getDisplayDeviceInfoLocked()
640 mInfo.touch = DisplayDeviceInfo.TOUCH_EXTERNAL; in getDisplayDeviceInfoLocked()
DDisplayManagerService.java683 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked(); in handleDisplayDeviceAddedLocked()
703 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked(); in handleDisplayDeviceChanged()
710 if (diff == DisplayDeviceInfo.DIFF_STATE) { in handleDisplayDeviceChanged()
732 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked(); in handleDisplayDeviceRemovedLocked()
759 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked(); in updateDisplayStateLocked()
760 if ((info.flags & DisplayDeviceInfo.FLAG_NEVER_BLANK) == 0) { in updateDisplayStateLocked()
769 DisplayDeviceInfo deviceInfo = device.getDisplayDeviceInfoLocked(); in addLogicalDisplayLocked()
771 & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0; in addLogicalDisplayLocked()
913 final DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked(); in configureDisplayInTransactionLocked()
914 final boolean ownContent = (info.flags & DisplayDeviceInfo.FLAG_OWN_CONTENT_ONLY) != 0; in configureDisplayInTransactionLocked()
[all …]