Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/vms/
DVmsClientManagerTest.java271 verify(mSystemClientLog).logConnectionState(ConnectionState.CONNECTION_ERROR); in testSystemUserUnlocked_WrongPermission()
282 verify(mSystemClientLog, times(2)).logConnectionState(ConnectionState.CONNECTION_ERROR); in testSystemUserUnlocked_BindFailed()
294 verify(mSystemClientLog, times(2)).logConnectionState(ConnectionState.CONNECTION_ERROR); in testSystemUserUnlocked_BindException()
339 verify(mUserClientLog).logConnectionState(ConnectionState.CONNECTION_ERROR); in testUserUnlocked_WrongPermission()
351 verify(mUserClientLog, times(2)).logConnectionState(ConnectionState.CONNECTION_ERROR); in testUserUnlocked_BindFailed()
363 verify(mUserClientLog, times(2)).logConnectionState(ConnectionState.CONNECTION_ERROR); in testUserUnlocked_UserBindFailed()
375 verify(mUserClientLog, times(2)).logConnectionState(ConnectionState.CONNECTION_ERROR); in testUserUnlocked_BindException()
384 verify(mSystemClientLog).logConnectionState(ConnectionState.CONNECTION_ERROR); in testUserUnlocked_SystemRebind()
400 verify(mSystemClientLog).logConnectionState(ConnectionState.CONNECTION_ERROR); in testUserUnlocked_SystemRebind_BindFailed()
409 verify(mSystemClientLog, times(2)).logConnectionState(ConnectionState.CONNECTION_ERROR); in testUserUnlocked_SystemRebind_BindFailed()
[all …]
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/stats/
DCarStatsServiceTest.java88 .logConnectionState(ConnectionState.CONNECTING); in testLogConnectionState_Connecting()
95 .logConnectionState(ConnectionState.CONNECTED); in testLogConnectionState_Connected()
102 .logConnectionState(ConnectionState.DISCONNECTED); in testLogConnectionState_Disconnected()
109 .logConnectionState(ConnectionState.TERMINATED); in testLogConnectionState_Terminated()
116 .logConnectionState(ConnectionState.CONNECTION_ERROR); in testLogConnectionState_ConnectionError()
123 .logConnectionState(ConnectionState.CONNECTING); in testLogConnectionState_UnknownUID()
130 .logConnectionState(ConnectionState.CONNECTING); in testLogConnectionState_MultipleClients_MultipleStates()
132 .logConnectionState(ConnectionState.CONNECTED); in testLogConnectionState_MultipleClients_MultipleStates()
134 .logConnectionState(ConnectionState.DISCONNECTED); in testLogConnectionState_MultipleClients_MultipleStates()
136 .logConnectionState(ConnectionState.CONNECTED); in testLogConnectionState_MultipleClients_MultipleStates()
[all …]
/packages/services/Car/service/src/com/android/car/vms/
DVmsClientManager.java315 .logConnectionState(ConnectionState.CONNECTED); in onHalConnected()
326 .logConnectionState(ConnectionState.DISCONNECTED); in onHalDisconnected()
414 statsLog.logConnectionState(ConnectionState.CONNECTION_ERROR); in bind()
456 mStatsLog.logConnectionState(ConnectionState.CONNECTING); in bind()
469 mStatsLog.logConnectionState(ConnectionState.CONNECTION_ERROR); in bind()
528 mStatsLog.logConnectionState(connectionState); in notifyOnDisconnect()
537 mStatsLog.logConnectionState(ConnectionState.CONNECTED); in onServiceConnected()
/packages/services/Car/service/src/com/android/car/stats/
DVmsClientLogger.java85 public void logConnectionState(int connectionState) { in logConnectionState() method in VmsClientLogger