Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DDisplayEventReceiver.java180 public void onVsync(long timestampNanos, long physicalDisplayId, int frame, in onVsync() argument
193 public void onHotplug(long timestampNanos, long physicalDisplayId, boolean connected) { in onHotplug() argument
204 public void onModeChanged(long timestampNanos, long physicalDisplayId, int modeId) { in onModeChanged() argument
238 public void onFrameRateOverridesChanged(long timestampNanos, long physicalDisplayId, in onFrameRateOverridesChanged() argument
258 private void dispatchVsync(long timestampNanos, long physicalDisplayId, int frame, in dispatchVsync() argument
260 onVsync(timestampNanos, physicalDisplayId, frame, in dispatchVsync()
267 private void dispatchHotplug(long timestampNanos, long physicalDisplayId, boolean connected) { in dispatchHotplug() argument
268 onHotplug(timestampNanos, physicalDisplayId, connected); in dispatchHotplug()
273 private void dispatchModeChanged(long timestampNanos, long physicalDisplayId, int modeId) { in dispatchModeChanged() argument
274 onModeChanged(timestampNanos, physicalDisplayId, modeId); in dispatchModeChanged()
[all …]
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()
DSurfaceControl.java160 private static native IBinder nativeGetPhysicalDisplayToken(long physicalDisplayId); in nativeGetPhysicalDisplayToken() argument
2271 public static IBinder getPhysicalDisplayToken(long physicalDisplayId) { in getPhysicalDisplayToken() argument
2272 return nativeGetPhysicalDisplayToken(physicalDisplayId); in getPhysicalDisplayToken()
DChoreographer.java981 public void onVsync(long timestampNanos, long physicalDisplayId, int frame, in onVsync() argument
/frameworks/base/services/core/java/com/android/server/display/
DLocalDisplayAdapter.java97 for (long physicalDisplayId : mSurfaceControlProxy.getPhysicalDisplayIds()) { in registerLocked()
98 tryConnectDisplayLocked(physicalDisplayId); in registerLocked()
102 private void tryConnectDisplayLocked(long physicalDisplayId) { in tryConnectDisplayLocked() argument
104 mSurfaceControlProxy.getPhysicalDisplayToken(physicalDisplayId); in tryConnectDisplayLocked()
109 Slog.w(TAG, "No valid static info found for display device " + physicalDisplayId); in tryConnectDisplayLocked()
115 Slog.w(TAG, "No valid dynamic info found for display device " + physicalDisplayId); in tryConnectDisplayLocked()
120 Slog.w(TAG, "No valid modes found for display device " + physicalDisplayId); in tryConnectDisplayLocked()
126 Slog.w(TAG, "No valid active mode found for display device " + physicalDisplayId); in tryConnectDisplayLocked()
133 Slog.w(TAG, "No valid active color mode for display device " + physicalDisplayId); in tryConnectDisplayLocked()
138 LocalDisplayDevice device = mDevices.get(physicalDisplayId); in tryConnectDisplayLocked()
[all …]
DDisplayDeviceConfig.java142 public static DisplayDeviceConfig create(Context context, long physicalDisplayId, in create() argument
147 physicalDisplayId); in create()
153 physicalDisplayId); in create()
183 File baseDirectory, long physicalDisplayId) { in loadConfigFromDirectory() argument
187 physicalDisplayId); in loadConfigFromDirectory()
193 final long withoutStableFlag = physicalDisplayId & ~STABLE_FLAG; in loadConfigFromDirectory()
201 DisplayAddress.fromPhysicalDisplayId(physicalDisplayId); in loadConfigFromDirectory()
/frameworks/native/services/surfaceflinger/tests/unittests/
DSurfaceFlinger_HandleTransactionLockedTest.cpp72 const auto convert = [](auto physicalDisplayId) { in expectHotplugReceived() argument
73 return std::make_optional(DisplayId{physicalDisplayId}); in expectHotplugReceived()
/frameworks/base/core/jni/
Dandroid_view_SurfaceControl.cpp892 static jobject nativeGetPhysicalDisplayToken(JNIEnv* env, jclass clazz, jlong physicalDisplayId) { in nativeGetPhysicalDisplayToken() argument
894 SurfaceComposerClient::getPhysicalDisplayToken(PhysicalDisplayId(physicalDisplayId)); in nativeGetPhysicalDisplayToken()