Home
last modified time | relevance | path

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

/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubbleData.java214 private TimeSource mTimeSource = System::currentTimeMillis; field in BubbleData
361 ((Bubble) bubble).markAsAccessedAt(mTimeSource.currentTimeMillis()); in setSelectedBubbleFromLauncher()
437 bubble.markUpdatedAt(mTimeSource.currentTimeMillis()); in notificationEntryUpdated()
907 ((Bubble) bubble).markAsAccessedAt(mTimeSource.currentTimeMillis()); in setSelectedBubbleInternal()
970 ((Bubble) mSelectedBubble).markAsAccessedAt(mTimeSource.currentTimeMillis()); in setExpandedInternal()
1214 mTimeSource = timeSource; in setTimeSource()
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
H A DBubbleDataTest.java104 private TimeSource mTimeSource; field in BubbleDataTest
198 when(mTimeSource.currentTimeMillis()).thenReturn(1000L); in setUp()
199 mBubbleData.setTimeSource(mTimeSource); in setUp()
1236 when(mTimeSource.currentTimeMillis()).thenReturn(time); in setCurrentTime()