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.java64 private Runnable mOnUserAttention; field in AttentionDetectorTest
236 verify(mOnUserAttention, never()).run(); in testCallbackOnSuccess_ignoresIfNoAttention()
244 verify(mOnUserAttention).run(); in testCallbackOnSuccess_callsCallback()
255 verify(mOnUserAttention, never()).run(); in testCallbackOnSuccess_doesNotCallNonCurrentCallback()
269 verify(mOnUserAttention).run(); in testCallbackOnSuccess_callsCallbackAfterOldCallbackCame()
282 }).when(mOnUserAttention).run(); in testCallbackOnSuccess_DoesNotGoIntoInfiniteLoop()
291 verify(mOnUserAttention, atMost(1)).run(); in testCallbackOnSuccess_DoesNotGoIntoInfiniteLoop()
300 verify(mOnUserAttention, never()).run(); in testCallbackOnFailure_unregistersCurrentRequestCode()
314 super(AttentionDetectorTest.this.mOnUserAttention, new Object()); in TestableAttentionDetector()
/frameworks/base/services/core/java/com/android/server/power/
DAttentionDetector.java68 private final Runnable mOnUserAttention; field in AttentionDetector
128 mOnUserAttention = onUserAttention; in AttentionDetector()
330 mOnUserAttention.run(); in onSuccess()