/aosp14/frameworks/base/core/java/android/view/ |
H A D | DisplayEventReceiver.java | 250 public void onVsync(long timestampNanos, long physicalDisplayId, int frame, in onVsync() argument 263 public void onHotplug(long timestampNanos, long physicalDisplayId, boolean connected) { in onHotplug() argument 275 public void onModeChanged(long timestampNanos, long physicalDisplayId, int modeId, in onModeChanged() argument 310 public void onFrameRateOverridesChanged(long timestampNanos, long physicalDisplayId, in onFrameRateOverridesChanged() argument 337 private void dispatchVsync(long timestampNanos, long physicalDisplayId, int frame) { in dispatchVsync() argument 338 onVsync(timestampNanos, physicalDisplayId, frame, mVsyncEventData); in dispatchVsync() 345 onHotplug(timestampNanos, physicalDisplayId, connected); in dispatchHotplug() 350 private void dispatchModeChanged(long timestampNanos, long physicalDisplayId, int modeId, in dispatchModeChanged() argument 352 onModeChanged(timestampNanos, physicalDisplayId, modeId, renderPeriod); in dispatchModeChanged() 357 private void dispatchFrameRateOverrides(long timestampNanos, long physicalDisplayId, in dispatchFrameRateOverrides() argument [all …]
|
H A D | DisplayAddress.java | 39 public static Physical fromPhysicalDisplayId(long physicalDisplayId) { in fromPhysicalDisplayId() argument 40 return new Physical(physicalDisplayId); in fromPhysicalDisplayId() 141 private Physical(long physicalDisplayId) { in Physical() argument 142 mPhysicalDisplayId = physicalDisplayId; in Physical()
|
H A D | Choreographer.java | 1284 public void onVsync(long timestampNanos, long physicalDisplayId, int frame, in onVsync() argument
|
/aosp14/frameworks/base/services/core/java/com/android/server/display/ |
H A D | LocalDisplayAdapter.java | 108 tryConnectDisplayLocked(physicalDisplayId); in registerLocked() 112 private void tryConnectDisplayLocked(long physicalDisplayId) { in tryConnectDisplayLocked() argument 154 mDevices.put(physicalDisplayId, device); in tryConnectDisplayLocked() 168 LocalDisplayDevice device = mDevices.get(physicalDisplayId); in tryDisconnectDisplayLocked() 171 mDevices.remove(physicalDisplayId); in tryDisconnectDisplayLocked() 244 mPhysicalDisplayId = physicalDisplayId; in LocalDisplayDevice() 812 + "id=" + physicalDisplayId in requestDisplayStateLocked() 830 + "id=" + physicalDisplayId in requestDisplayStateLocked() 870 + "id=" + physicalDisplayId in requestDisplayStateLocked() 1341 long physicalDisplayId, boolean isFirstDisplay) { [all …]
|
H A D | DisplayControl.java | 36 private static native IBinder nativeGetPhysicalDisplayToken(long physicalDisplayId); in nativeGetPhysicalDisplayToken() argument 104 public static IBinder getPhysicalDisplayToken(long physicalDisplayId) { in getPhysicalDisplayToken() argument 105 return nativeGetPhysicalDisplayToken(physicalDisplayId); in getPhysicalDisplayToken()
|
H A D | DisplayDeviceConfig.java | 761 public static DisplayDeviceConfig create(Context context, long physicalDisplayId, in create() argument 763 final DisplayDeviceConfig config = createWithoutDefaultValues(context, physicalDisplayId, in create() 790 long physicalDisplayId, boolean isFirstDisplay) { in createWithoutDefaultValues() argument 794 physicalDisplayId); in createWithoutDefaultValues() 800 physicalDisplayId); in createWithoutDefaultValues() 861 File baseDirectory, long physicalDisplayId) { in loadConfigFromDirectory() argument 865 physicalDisplayId); in loadConfigFromDirectory() 871 final long withoutStableFlag = physicalDisplayId & ~STABLE_FLAG; in loadConfigFromDirectory() 879 DisplayAddress.fromPhysicalDisplayId(physicalDisplayId); in loadConfigFromDirectory()
|
/aosp14/frameworks/base/services/core/jni/ |
H A D | com_android_server_display_DisplayControl.cpp | 170 static jobject nativeGetPhysicalDisplayToken(JNIEnv* env, jclass clazz, jlong physicalDisplayId) { in nativeGetPhysicalDisplayToken() argument 171 const auto id = DisplayId::fromValue<PhysicalDisplayId>(physicalDisplayId); in nativeGetPhysicalDisplayToken()
|
/aosp14/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/ |
H A D | LocalDisplayAdapterTest.java | 1268 long physicalDisplayId, boolean isFirstDisplay) { in createDisplayDeviceConfig() argument
|