Home
last modified time | relevance | path

Searched refs:STATE_ENTER_DRIVING_SESSION (Results 1 – 7 of 7) sorted by relevance

/packages/services/Car/service/src/com/android/car/telemetry/sessioncontroller/
DSessionController.java44 public static final int STATE_ENTER_DRIVING_SESSION = 2; field in SessionController
52 STATE_ENTER_DRIVING_SESSION,
117 notifySessionStateChange(STATE_ENTER_DRIVING_SESSION); in onCarPowerStateChanged()
158 if (sessionState == STATE_ENTER_DRIVING_SESSION) { in updateSessionState()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/telemetry/sessioncontroller/
DSessionControllerUnitTest.java133 SessionController.STATE_ENTER_DRIVING_SESSION); in testRegisterCallback_stateChangeTriggersCallback()
150 SessionController.STATE_ENTER_DRIVING_SESSION); in testGetSessionAnnotation_sessionOnSessionOffSequence()
198 SessionController.STATE_ENTER_DRIVING_SESSION); in testInitSession_triggersCallback()
DSessionAnnotationUnitTest.java32 private static final int SESSION_STATE = SessionController.STATE_ENTER_DRIVING_SESSION;
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/telemetry/publisher/
DConnectivityPublisherTest.java123 new SessionAnnotation(1, SessionController.STATE_ENTER_DRIVING_SESSION, 0, 0, "", 0);
127 new SessionAnnotation(2, SessionController.STATE_ENTER_DRIVING_SESSION, 0, 0, "", 0);
131 new SessionAnnotation(3, SessionController.STATE_ENTER_DRIVING_SESSION, 0, 0, "", 0);
DCarTelemetrydPublisherTest.java77 new SessionAnnotation(1, SessionController.STATE_ENTER_DRIVING_SESSION, 0, 0, "", 0);
DMemoryPublisherTest.java317 2, SessionController.STATE_ENTER_DRIVING_SESSION, 123, 1234, "reboot", 0); in testAddDataSubscriber_annotatesWithDrivingSessionData()
/packages/services/Car/service/src/com/android/car/telemetry/publisher/
DConnectivityPublisher.java118 if (annotation.sessionState == SessionController.STATE_ENTER_DRIVING_SESSION) { in handleSessionStateChange()