Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/credentials/java/com/android/server/credentials/metrics/
H A 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()
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()
291 Map<EntryEnum, Integer> entryCounts = new LinkedHashMap<>(); in beginGetCredentialResponseCollectionCandidateEntryMetrics() local
298 entryCounts.put(EntryEnum.REMOTE_ENTRY, numRemoteEntry); in beginGetCredentialResponseCollectionCandidateEntryMetrics()
299 entryCounts.put(EntryEnum.CREDENTIAL_ENTRY, numCredEntries); in beginGetCredentialResponseCollectionCandidateEntryMetrics()
[all …]
/aosp14/frameworks/base/services/credentials/java/com/android/server/credentials/metrics/shared/
H A 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()