Searched refs:VmsClientLogger (Results 1 – 5 of 5) sorted by relevance
35 import com.android.car.stats.VmsClientLogger.ConnectionState;55 private static final Function<VmsClientLogger, String> VMS_CONNECTION_STATS_DUMPSYS_FORMAT =89 private final SparseArray<VmsClientLogger> mVmsClientStats = new SparseArray();121 public VmsClientLogger getVmsClientLogger(int clientUid) { in getVmsClientLogger()128 mVmsClientStats.put(clientUid, new VmsClientLogger(clientUid, packageName)); in getVmsClientLogger()143 List<VmsClientLogger> loggers = new ArrayList<>(); in dump()150 loggers.sort(Comparator.comparingInt(VmsClientLogger::getUid)); in dump()
34 public class VmsClientLogger { class67 VmsClientLogger(int clientUid, @Nullable String clientPackage) { in VmsClientLogger() method in VmsClientLogger
52 import com.android.car.stats.VmsClientLogger;149 .logConnectionState(VmsClientLogger.ConnectionState.CONNECTED); in registerClient()154 VmsClientLogger.ConnectionState.DISCONNECTED); in registerClient()158 .logConnectionState(VmsClientLogger.ConnectionState.DISCONNECTED); in registerClient()174 unregisterClient(clientToken, VmsClientLogger.ConnectionState.TERMINATED); in unregisterClient()
58 import com.android.car.stats.VmsClientLogger;117 private VmsClientLogger mClientLog1;124 private VmsClientLogger mClientLog2;127 private VmsClientLogger mNoSubscribersLog;173 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()[all …]
29 import com.android.car.stats.VmsClientLogger.ConnectionState;