Home
last modified time | relevance | path

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

/frameworks/base/services/credentials/java/com/android/server/credentials/metrics/
DCandidateAggregateMetric.java62 private Map<String, Integer> mExceptionCountQuery = new LinkedHashMap<>(); field in CandidateAggregateMetric
114 mExceptionCountQuery.put(candidateMetric.getFrameworkException(), in collectQueryAggregates()
115 mExceptionCountQuery.getOrDefault( in collectQueryAggregates()
144 mExceptionCountQuery.put(authMetric.getFrameworkException(), in collectAuthAggregates()
145 mExceptionCountQuery.getOrDefault( in collectAuthAggregates()
196 String[] result = new String[mExceptionCountQuery.keySet().size()]; in getUniqueExceptionStringsQuery()
197 mExceptionCountQuery.keySet().toArray(result); in getUniqueExceptionStringsQuery()
208 return mExceptionCountQuery.values().stream().mapToInt(Integer::intValue).toArray(); in getUniqueExceptionCountsQuery()