Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/view/
H A DDisplayEventReceiver.java250 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 DDisplayAddress.java39 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 DChoreographer.java1284 public void onVsync(long timestampNanos, long physicalDisplayId, int frame, in onVsync() argument
/aosp14/frameworks/base/services/core/java/com/android/server/display/
H A DLocalDisplayAdapter.java108 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 DDisplayControl.java36 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 DDisplayDeviceConfig.java761 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 Dcom_android_server_display_DisplayControl.cpp170 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 DLocalDisplayAdapterTest.java1268 long physicalDisplayId, boolean isFirstDisplay) { in createDisplayDeviceConfig() argument