Searched refs:builtInDisplayId (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | DisplayEventReceiver.java | 140 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { in onVsync() argument 152 public void onHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { in onHotplug() argument 170 private void dispatchVsync(long timestampNanos, int builtInDisplayId, int frame) { in dispatchVsync() argument 171 onVsync(timestampNanos, builtInDisplayId, frame); in dispatchVsync() 176 private void dispatchHotplug(long timestampNanos, int builtInDisplayId, boolean connected) { in dispatchHotplug() argument 177 onHotplug(timestampNanos, builtInDisplayId, connected); in dispatchHotplug()
|
D | Choreographer.java | 849 public void onVsync(long timestampNanos, int builtInDisplayId, int frame) { in onVsync() argument 858 if (builtInDisplayId != SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN) { in onVsync()
|
D | SurfaceControl.java | 793 public static IBinder getBuiltInDisplay(int builtInDisplayId) { in getBuiltInDisplay() argument 794 return nativeGetBuiltInDisplay(builtInDisplayId); in getBuiltInDisplay()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | LocalDisplayAdapter.java | 81 for (int builtInDisplayId : BUILT_IN_DISPLAY_IDS_TO_SCAN) { in registerLocked() 82 tryConnectDisplayLocked(builtInDisplayId); in registerLocked() 86 private void tryConnectDisplayLocked(int builtInDisplayId) { in tryConnectDisplayLocked() argument 87 IBinder displayToken = SurfaceControl.getBuiltInDisplay(builtInDisplayId); in tryConnectDisplayLocked() 94 builtInDisplayId); in tryConnectDisplayLocked() 102 builtInDisplayId); in tryConnectDisplayLocked() 111 builtInDisplayId); in tryConnectDisplayLocked() 115 LocalDisplayDevice device = mDevices.get(builtInDisplayId); in tryConnectDisplayLocked() 118 device = new LocalDisplayDevice(displayToken, builtInDisplayId, in tryConnectDisplayLocked() 120 mDevices.put(builtInDisplayId, device); in tryConnectDisplayLocked() [all …]
|