Home
last modified time | relevance | path

Searched refs:touchSession (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/ambient/touch/
DTouchMonitor.java101 final TouchSessionImpl touchSession = in push() field in TouchMonitor
104 mActiveTouchSessions.add(touchSession); in push() argument
105 completer.set(touchSession); in push() argument
326 mMainExecutor.execute(() -> mActiveTouchSessions.forEach(touchSession -> {
327 while (touchSession != null) {
328 touchSession.onRemoved();
329 touchSession = touchSession.getPredecessor();
399 sessionMap.forEach((dreamTouchHandler, touchSession)
400 -> dreamTouchHandler.onSessionStart(touchSession));
436 .map(touchSession -> {
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/complication/
DComplicationLayoutEngine.java128 TouchInsetManager.TouchInsetSession touchSession, int category, Parent parent) { in ViewEntry() argument
136 mTouchInsetSession = touchSession; in ViewEntry()
140 touchSession.addViewToTracking(mView); in ViewEntry()
315 Builder(View view, TouchInsetManager.TouchInsetSession touchSession, in Builder() argument
320 mTouchSession = touchSession; in Builder()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/ambient/touch/
DTouchMonitorTest.java315 final TouchHandler.TouchSession touchSession = touchSessionCaptor.getValue(); in testSessionCount() local
316 assertThat(touchSession.getActiveSessionCount()).isEqualTo(1); in testSessionCount()
317 touchSession.pop(); in testSessionCount()
329 final TouchHandler.TouchSession touchSession = touchSessionCaptor.getValue(); in testSessionCount() local
330 assertThat(touchSession.getActiveSessionCount()).isEqualTo(2); in testSessionCount()
331 touchSession.pop(); in testSessionCount()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/ambient/touch/
DBouncerSwipeTouchHandlerTest.java284 TouchHandler.TouchSession touchSession, in onSessionStartHelper() argument
286 touchHandler.onSessionStart(touchSession); in onSessionStartHelper()
292 verify(touchSession).registerGestureListener(gestureListenerCaptor.capture()); in onSessionStartHelper()
293 verify(touchSession).registerInputListener(eventListenerCaptor.capture()); in onSessionStartHelper()