Searched refs:builtInDisplayId (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | DisplayEventReceiver.java | 110 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { in onVsync() argument 122 public void onHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { in onHotplug() argument 140 private void dispatchVsync(long timestampNanos, int builtInDisplayId, int frame) { in dispatchVsync() argument 141 onVsync(timestampNanos, builtInDisplayId, frame); in dispatchVsync() 146 private void dispatchHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { in dispatchHotplug() argument 147 onHotplug(timestampNanos, builtInDisplayId, connected); in dispatchHotplug()
|
D | SurfaceControl.java | 696 public static IBinder getBuiltInDisplay(int builtInDisplayId) { in getBuiltInDisplay() argument 697 return nativeGetBuiltInDisplay(builtInDisplayId); in getBuiltInDisplay()
|
D | Choreographer.java | 809 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { in onVsync() argument 818 if (builtInDisplayId != SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN) { in onVsync()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | LocalDisplayAdapter.java | 79 for (int builtInDisplayId : BUILT_IN_DISPLAY_IDS_TO_SCAN) { in registerLocked() 80 tryConnectDisplayLocked(builtInDisplayId); in registerLocked() 84 private void tryConnectDisplayLocked(int builtInDisplayId) { in tryConnectDisplayLocked() argument 85 IBinder displayToken = SurfaceControl.getBuiltInDisplay(builtInDisplayId); in tryConnectDisplayLocked() 92 builtInDisplayId); in tryConnectDisplayLocked() 100 builtInDisplayId); in tryConnectDisplayLocked() 103 LocalDisplayDevice device = mDevices.get(builtInDisplayId); in tryConnectDisplayLocked() 106 device = new LocalDisplayDevice(displayToken, builtInDisplayId, in tryConnectDisplayLocked() 108 mDevices.put(builtInDisplayId, device); in tryConnectDisplayLocked() 121 private void tryDisconnectDisplayLocked(int builtInDisplayId) { in tryDisconnectDisplayLocked() argument [all …]
|