Home
last modified time | relevance | path

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

/frameworks/base/services/credentials/java/com/android/server/credentials/metrics/
DProviderSessionMetric.java242 Map<EntryEnum, Integer> entryCounts = new LinkedHashMap<>(); in collectCandidateEntryMetrics() local
244 entryCounts.put(EntryEnum.REMOTE_ENTRY, numRemoteEntry); in collectCandidateEntryMetrics()
245 entryCounts.put(EntryEnum.CREDENTIAL_ENTRY, numCredEntries); in collectCandidateEntryMetrics()
246 entryCounts.put(EntryEnum.ACTION_ENTRY, numActionEntries); in collectCandidateEntryMetrics()
247 entryCounts.put(EntryEnum.AUTHENTICATION_ENTRY, numAuthEntries); in collectCandidateEntryMetrics()
253 ResponseCollective responseCollective = new ResponseCollective(responseCounts, entryCounts); in collectCandidateEntryMetrics()
270 Map<EntryEnum, Integer> entryCounts = new LinkedHashMap<>(); in beginCreateCredentialResponseCollectionCandidateEntryMetrics() local
275 entryCounts.put(EntryEnum.REMOTE_ENTRY, numRemoteEntry); in beginCreateCredentialResponseCollectionCandidateEntryMetrics()
276 entryCounts.put(EntryEnum.CREDENTIAL_ENTRY, numCreateEntries); in beginCreateCredentialResponseCollectionCandidateEntryMetrics()
285 ResponseCollective responseCollective = new ResponseCollective(responseCounts, entryCounts); in beginCreateCredentialResponseCollectionCandidateEntryMetrics()
[all …]
/frameworks/base/services/credentials/java/com/android/server/credentials/metrics/shared/
DResponseCollective.java56 @NonNull Map<EntryEnum, Integer> entryCounts) { in ResponseCollective() argument
59 mEntryCounts = entryCounts == null ? new LinkedHashMap<>() : in ResponseCollective()
60 new LinkedHashMap<>(entryCounts); in ResponseCollective()
152 Map<EntryEnum, Integer> entryCounts = new LinkedHashMap<>(other.mEntryCounts); in combineCollectives() local
154 entryCounts.merge(entry, mEntryCounts.get(entry), Integer::sum); in combineCollectives()
157 return new ResponseCollective(responseCounts, entryCounts); in combineCollectives()