Home
last modified time | relevance | path

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

/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/notifications/
DDisplayNotificationManagerTest.java92 dnm.onHotplugConnectionError(); in testNotificationOnHotplugConnectionError()
94 verify(mMockedExternalDisplayStatsService).onHotplugConnectionError(); in testNotificationOnHotplugConnectionError()
126 dnm.onHotplugConnectionError(); in testNoErrorNotification()
138 dnm.onHotplugConnectionError(); in testNoErrorLogging()
141 verify(mMockedExternalDisplayStatsService, never()).onHotplugConnectionError(); in testNoErrorLogging()
152 dnm.onHotplugConnectionError(); in testErrorLogging()
153 verify(mMockedExternalDisplayStatsService).onHotplugConnectionError(); in testErrorLogging()
/frameworks/base/core/java/android/view/
DDisplayEventReceiver.java273 public void onHotplugConnectionError(long timestampNanos, int connectionError) { in onHotplugConnectionError() method in DisplayEventReceiver
370 onHotplugConnectionError(timestampNanos, connectionError); in dispatchHotplugConnectionError()
/frameworks/base/services/core/java/com/android/server/display/notifications/
DDisplayNotificationManager.java160 public void onHotplugConnectionError() { in onHotplugConnectionError() method in DisplayNotificationManager
167 mExternalDisplayStatsService.onHotplugConnectionError(); in onHotplugConnectionError()
/frameworks/native/services/surfaceflinger/tests/unittests/mock/
DMockEventThread.h44 MOCK_METHOD(void, onHotplugConnectionError, (int32_t), (override));
/frameworks/native/services/surfaceflinger/Scheduler/
DEventThread.h111 virtual void onHotplugConnectionError(int32_t connectionError) = 0;
170 void onHotplugConnectionError(int32_t connectionError) override;
DScheduler.cpp397 eventThreadFor(Cycle::Render).onHotplugConnectionError(errorCode); in dispatchHotplugError()
398 eventThreadFor(Cycle::LastComposite).onHotplugConnectionError(errorCode); in dispatchHotplugError()
DEventThread.cpp441 void EventThread::onHotplugConnectionError(int32_t errorCode) { in onHotplugConnectionError() function in android::impl::EventThread
/frameworks/native/services/surfaceflinger/tests/unittests/
DSurfaceFlinger_HotplugTest.cpp106 onHotplugConnectionError(static_cast<int32_t>(DisplayHotplugEvent::ERROR_UNKNOWN))) in TEST_F()
/frameworks/base/services/core/java/com/android/server/display/
DLocalDisplayAdapter.java1463 void onHotplugConnectionError(long timestampNanos, int connectionError);
1487 public void onHotplugConnectionError(long timestampNanos, int errorCode) {
1488 mListener.onHotplugConnectionError(timestampNanos, errorCode);
1522 public void onHotplugConnectionError(long timestampNanos, int connectionError) {
1529 mDisplayNotificationManager.onHotplugConnectionError();
DDisplayManagerShellCommand.java289 mService.getDisplayNotificationManager().onHotplugConnectionError(); in showNotification()
DExternalDisplayStatsService.java218 public void onHotplugConnectionError() { in onHotplugConnectionError() method in ExternalDisplayStatsService
/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/
DExternalDisplayStatsServiceTest.java111 mExternalDisplayStatsService.onHotplugConnectionError(); in testOnHotplugConnectionError()