Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
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
285 public void onModeChanged(long timestampNanos, long physicalDisplayId, int modeId, in onModeChanged() argument
296 public void onHdcpLevelsChanged(long physicalDisplayId, int connectedLevel, int maxLevel) { in onHdcpLevelsChanged() argument
330 public void onFrameRateOverridesChanged(long timestampNanos, long physicalDisplayId, in onFrameRateOverridesChanged() argument
357 private void dispatchVsync(long timestampNanos, long physicalDisplayId, int frame) { in dispatchVsync() argument
358 onVsync(timestampNanos, physicalDisplayId, frame, mVsyncEventData); in dispatchVsync()
364 private void dispatchHotplug(long timestampNanos, long physicalDisplayId, boolean connected) { in dispatchHotplug() argument
365 onHotplug(timestampNanos, physicalDisplayId, connected); in dispatchHotplug()
375 private void dispatchModeChanged(long timestampNanos, long physicalDisplayId, int modeId, in dispatchModeChanged() argument
[all …]
DDisplayAddress.java39 public static Physical fromPhysicalDisplayId(long physicalDisplayId) { in fromPhysicalDisplayId() argument
40 return new Physical(physicalDisplayId); in fromPhysicalDisplayId()
165 private Physical(long physicalDisplayId) { in Physical() argument
166 mPhysicalDisplayId = physicalDisplayId; in Physical()
DChoreographer.java1347 public void onVsync(long timestampNanos, long physicalDisplayId, int frame, in onVsync() argument
/frameworks/base/services/core/java/com/android/server/display/
DLocalDisplayAdapter.java130 for (long physicalDisplayId : mSurfaceControlProxy.getPhysicalDisplayIds()) { in registerLocked()
131 tryConnectDisplayLocked(physicalDisplayId); in registerLocked()
135 private void tryConnectDisplayLocked(long physicalDisplayId) { in tryConnectDisplayLocked() argument
137 mSurfaceControlProxy.getPhysicalDisplayToken(physicalDisplayId); in tryConnectDisplayLocked()
140 mSurfaceControlProxy.getStaticDisplayInfo(physicalDisplayId); in tryConnectDisplayLocked()
142 Slog.w(TAG, "No valid static info found for display device " + physicalDisplayId); in tryConnectDisplayLocked()
146 mSurfaceControlProxy.getDynamicDisplayInfo(physicalDisplayId); in tryConnectDisplayLocked()
148 Slog.w(TAG, "No valid dynamic info found for display device " + physicalDisplayId); in tryConnectDisplayLocked()
153 Slog.w(TAG, "No valid modes found for display device " + physicalDisplayId); in tryConnectDisplayLocked()
159 Slog.w(TAG, "No valid active mode found for display device " + physicalDisplayId); in tryConnectDisplayLocked()
[all …]
DDisplayControl.java36 private static native IBinder nativeGetPhysicalDisplayToken(long physicalDisplayId); in nativeGetPhysicalDisplayToken() argument
105 public static IBinder getPhysicalDisplayToken(long physicalDisplayId) { in getPhysicalDisplayToken() argument
106 return nativeGetPhysicalDisplayToken(physicalDisplayId); in getPhysicalDisplayToken()
DDisplayDeviceConfig.java892 public static DisplayDeviceConfig create(Context context, long physicalDisplayId, in create() argument
894 final DisplayDeviceConfig config = createWithoutDefaultValues(context, physicalDisplayId, in create()
922 long physicalDisplayId, boolean isFirstDisplay, DisplayManagerFlags flags) { in createWithoutDefaultValues() argument
926 physicalDisplayId, flags); in createWithoutDefaultValues()
932 physicalDisplayId, flags); in createWithoutDefaultValues()
993 File baseDirectory, long physicalDisplayId, DisplayManagerFlags flags) { in loadConfigFromDirectory() argument
997 physicalDisplayId, flags); in loadConfigFromDirectory()
1003 final long withoutStableFlag = physicalDisplayId & ~STABLE_FLAG; in loadConfigFromDirectory()
1012 DisplayAddress.fromPhysicalDisplayId(physicalDisplayId); in loadConfigFromDirectory()
/frameworks/base/services/core/jni/
Dcom_android_server_display_DisplayControl.cpp174 static jobject nativeGetPhysicalDisplayToken(JNIEnv* env, jclass clazz, jlong physicalDisplayId) { in nativeGetPhysicalDisplayToken() argument
175 const auto id = DisplayId::fromValue<PhysicalDisplayId>(physicalDisplayId); in nativeGetPhysicalDisplayToken()
/frameworks/native/services/surfaceflinger/tests/unittests/
DSurfaceFlinger_SetPowerModeInternalTest.cpp342 if (auto physicalDisplayId = PhysicalDisplayId::tryCast(displayId)) { in transitionDisplayCommon() local
343 Case::setInitialHwVsyncEnabled(this, *physicalDisplayId, in transitionDisplayCommon()
DSurfaceFlinger_DisplayTransactionCommitTest.cpp71 const auto convert = [](auto physicalDisplayId) { in expectHotplugReceived() argument
72 return std::make_optional(DisplayId{physicalDisplayId}); in expectHotplugReceived()
DHWComposerTest.cpp425 const auto physicalDisplayId = info->id; in TEST_F() local
432 EXPECT_EQ(physicalDisplayId, displayIdOpt); in TEST_F()
/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/
DLocalDisplayAdapterTest.java1489 long physicalDisplayId, boolean isFirstDisplay, DisplayManagerFlags flags) { in createDisplayDeviceConfig() argument
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp1235 status_t SurfaceFlinger::getDynamicDisplayInfoFromId(int64_t physicalDisplayId, in getDynamicDisplayInfoFromId() argument
1244 DisplayId::fromValue<PhysicalDisplayId>(static_cast<uint64_t>(physicalDisplayId)); in getDynamicDisplayInfoFromId()