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/stats/
DCarStatsServiceTest.java89 .logConnectionState(ConnectionState.CONNECTING); in testLogConnectionState_Connecting()
96 .logConnectionState(ConnectionState.CONNECTED); in testLogConnectionState_Connected()
103 .logConnectionState(ConnectionState.DISCONNECTED); in testLogConnectionState_Disconnected()
110 .logConnectionState(ConnectionState.TERMINATED); in testLogConnectionState_Terminated()
117 .logConnectionState(ConnectionState.CONNECTION_ERROR); in testLogConnectionState_ConnectionError()
124 .logConnectionState(ConnectionState.CONNECTING); in testLogConnectionState_UnknownUID()
131 .logConnectionState(ConnectionState.CONNECTING); in testLogConnectionState_MultipleClients_MultipleStates()
133 .logConnectionState(ConnectionState.CONNECTED); in testLogConnectionState_MultipleClients_MultipleStates()
135 .logConnectionState(ConnectionState.DISCONNECTED); in testLogConnectionState_MultipleClients_MultipleStates()
137 .logConnectionState(ConnectionState.CONNECTED); in testLogConnectionState_MultipleClients_MultipleStates()
[all …]
/packages/services/Car/service/src/com/android/car/vms/
DVmsBrokerService.java149 .logConnectionState(VmsClientLogger.ConnectionState.CONNECTED); in registerClient()
158 .logConnectionState(VmsClientLogger.ConnectionState.DISCONNECTED); in registerClient()
289 .logConnectionState(connectionState); in unregisterClient()
/packages/services/Car/service/src/com/android/car/stats/
DVmsClientLogger.java85 public void logConnectionState(int connectionState) { in logConnectionState() method in VmsClientLogger
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/vms/
DVmsBrokerServiceTest.java173 verify(mClientLog1).logConnectionState(VmsClientLogger.ConnectionState.CONNECTED); in testRegister()
185 verify(mClientLog1).logConnectionState(VmsClientLogger.ConnectionState.CONNECTED); in testRegister_DeadCallback()
186 verify(mClientLog1).logConnectionState(VmsClientLogger.ConnectionState.DISCONNECTED); in testRegister_DeadCallback()
194 verify(mClientLog1).logConnectionState(VmsClientLogger.ConnectionState.CONNECTED); in testRegister_LegacyClient()
206 verify(mClientLog1).logConnectionState(VmsClientLogger.ConnectionState.CONNECTED); in testRegister_LegacyClient_DeadCallback()
207 verify(mClientLog1).logConnectionState(VmsClientLogger.ConnectionState.DISCONNECTED); in testRegister_LegacyClient_DeadCallback()
218 .logConnectionState(VmsClientLogger.ConnectionState.CONNECTED); in testRegister_TwoClients_OneProcess()
230 verify(mClientLog1).logConnectionState(VmsClientLogger.ConnectionState.CONNECTED); in testRegister_TwoClients_TwoProcesses()
231 verify(mClientLog2).logConnectionState(VmsClientLogger.ConnectionState.CONNECTED); in testRegister_TwoClients_TwoProcesses()