Home
last modified time | relevance | path

Searched refs:mOnUserAttention (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/power/
DAttentionDetectorTest.java71 private Runnable mOnUserAttention; field in AttentionDetectorTest
84 mRealAttentionDetector = new AttentionDetector(mOnUserAttention, new Object()); in setUp()
238 verify(mOnUserAttention, never()).run(); in testCallbackOnSuccess_ignoresIfNoAttention()
246 verify(mOnUserAttention).run(); in testCallbackOnSuccess_callsCallback()
257 verify(mOnUserAttention, never()).run(); in testCallbackOnSuccess_doesNotCallNonCurrentCallback()
271 verify(mOnUserAttention).run(); in testCallbackOnSuccess_callsCallbackAfterOldCallbackCame()
284 }).when(mOnUserAttention).run(); in testCallbackOnSuccess_DoesNotGoIntoInfiniteLoop()
293 verify(mOnUserAttention, atMost(1)).run(); in testCallbackOnSuccess_DoesNotGoIntoInfiniteLoop()
302 verify(mOnUserAttention, never()).run(); in testCallbackOnFailure_unregistersCurrentRequestCode()
424 super(AttentionDetectorTest.this.mOnUserAttention, new Object()); in TestableAttentionDetector()
/frameworks/base/services/core/java/com/android/server/power/
DAttentionDetector.java110 private final Runnable mOnUserAttention; field in AttentionDetector
155 mOnUserAttention = onUserAttention; in AttentionDetector()
414 mOnUserAttention.run(); in onSuccess()