Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/telemetry/sessioncontroller/
DSessionController.java43 public static final int STATE_EXIT_DRIVING_SESSION = 1; field in SessionController
51 STATE_EXIT_DRIVING_SESSION,
59 private int mSessionState = STATE_EXIT_DRIVING_SESSION;
114 notifySessionStateChange(STATE_EXIT_DRIVING_SESSION); in onCarPowerStateChanged()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/telemetry/sessioncontroller/
DSessionControllerUnitTest.java170 SessionController.STATE_EXIT_DRIVING_SESSION); in testGetSessionAnnotation_sessionOnSessionOffSequence()
184 assertThat(annotation.sessionState).isEqualTo(SessionController.STATE_EXIT_DRIVING_SESSION); in testGetSessionAnnotation_defaultState()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/telemetry/publisher/
DConnectivityPublisherTest.java125 new SessionAnnotation(1, SessionController.STATE_EXIT_DRIVING_SESSION, 0, 0, "", 0);
129 new SessionAnnotation(2, SessionController.STATE_EXIT_DRIVING_SESSION, 0, 0, "", 0);
/packages/services/Car/service/src/com/android/car/telemetry/publisher/
DConnectivityPublisher.java121 } else if (annotation.sessionState == SessionController.STATE_EXIT_DRIVING_SESSION) { in handleSessionStateChange()