Home
last modified time | relevance | path

Searched refs:EntryEnum (Results 1 – 10 of 10) 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()
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()
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()
298 entryCounts.put(EntryEnum.REMOTE_ENTRY, numRemoteEntry); in beginGetCredentialResponseCollectionCandidateEntryMetrics()
299 entryCounts.put(EntryEnum.CREDENTIAL_ENTRY, numCredEntries); in beginGetCredentialResponseCollectionCandidateEntryMetrics()
[all …]
H A DEntryEnum.java36 public enum EntryEnum { enum
62 EntryEnum(int innerMetricCode) { in EntryEnum() method in EntryEnum
H A DCandidateBrowsingPhaseMetric.java31 private int mEntryEnum = EntryEnum.UNKNOWN.getMetricCode();
H A DCandidateAggregateMetric.java88 Map<EntryEnum, Integer> entryCountQuery = new LinkedHashMap<>(); in collectQueryAggregates()
126 Map<EntryEnum, Integer> entryCountAuth = new LinkedHashMap<>(); in collectAuthAggregates()
H A DRequestSessionMetric.java237 EntryEnum.getMetricCodeFromString(selection.getEntryKey())); in collectMetricPerBrowsingSelect()
/aosp14/frameworks/base/services/credentials/java/com/android/server/credentials/metrics/shared/
H A DResponseCollective.java22 import com.android.server.credentials.metrics.EntryEnum;
53 private final Map<EntryEnum, Integer> mEntryCounts;
56 @NonNull Map<EntryEnum, Integer> entryCounts) { in ResponseCollective() argument
79 public Map<EntryEnum, Integer> getEntryCountsMap() { in getEntryCountsMap()
124 public int getCountForEntry(EntryEnum e) { in getCountForEntry()
152 Map<EntryEnum, Integer> entryCounts = new LinkedHashMap<>(other.mEntryCounts); in combineCollectives()
153 for (EntryEnum entry : mEntryCounts.keySet()) { in combineCollectives()
/aosp14/frameworks/base/packages/SettingsLib/Spa/gallery/src/com/android/settingslib/spa/gallery/preference/
H A DPreferencePage.kt68 enum class EntryEnum(val displayName: String) {
83 private fun createEntry(entry: EntryEnum): SettingsEntryBuilder {
90 createEntry(EntryEnum.SIMPLE_PREFERENCE)
99 createEntry(EntryEnum.SUMMARY_PREFERENCE)
113 createEntry(EntryEnum.DISABLED_PREFERENCE)
128 createEntry(EntryEnum.ASYNC_SUMMARY_PREFERENCE)
166 createEntry(EntryEnum.MANUAL_UPDATE_PREFERENCE)
205 createEntry(EntryEnum.AUTO_UPDATE_PREFERENCE)
251 private fun singleLineSummaryEntry() = createEntry(EntryEnum.SINGLE_LINE_SUMMARY_PREFERENCE)
/aosp14/frameworks/base/packages/SettingsLib/Spa/gallery/src/com/android/settingslib/spa/gallery/page/
H A DArgumentPage.kt38 private enum class EntryEnum(val displayName: String) {
43 private fun createEntry(owner: SettingsPage, entry: EntryEnum): SettingsEntryBuilder {
57 createEntry(owner, EntryEnum.STRING_PARAM)
68 createEntry(owner, EntryEnum.INT_PARAM)
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/credentials/metrics/
H A DEntryEnumTest.java42 Set<Integer> actualServerEntryEnum = Arrays.stream(EntryEnum.values()) in getMetricCode_matchesWestWorldMetricCode_success()
43 .map(EntryEnum::getMetricCode).collect(Collectors.toSet()); in getMetricCode_matchesWestWorldMetricCode_success()
/aosp14/frameworks/base/services/credentials/java/com/android/server/credentials/
H A DMetricUtilities.java32 import com.android.server.credentials.metrics.EntryEnum;
330 .getCountForEntry(EntryEnum.CREDENTIAL_ENTRY); in logApiCalledCandidatePhase()
334 .getCountForEntry(EntryEnum.ACTION_ENTRY); in logApiCalledCandidatePhase()
336 .getCountForEntry(EntryEnum.AUTHENTICATION_ENTRY); in logApiCalledCandidatePhase()
338 .getCountForEntry(EntryEnum.REMOTE_ENTRY); in logApiCalledCandidatePhase()