Home
last modified time | relevance | path

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

/frameworks/base/services/credentials/java/com/android/server/credentials/metrics/
DCandidateAggregateMetric.java21 import com.android.server.credentials.metrics.shared.ResponseCollective;
50 private ResponseCollective mAggregateCollectiveQuery =
51 new ResponseCollective(Map.of(), Map.of());
53 private ResponseCollective mAggregateCollectiveAuth =
54 new ResponseCollective(Map.of(), Map.of());
103 ResponseCollective candidateCollective = candidateMetric.getResponseCollective(); in collectQueryAggregates()
104 ResponseCollective.combineTypeCountMaps(responseCountQuery, in collectQueryAggregates()
106 ResponseCollective.combineTypeCountMaps(entryCountQuery, in collectQueryAggregates()
121 mAggregateCollectiveQuery = new ResponseCollective(responseCountQuery, entryCountQuery); in collectQueryAggregates()
137 ResponseCollective authCollective = authMetric.getAuthEntryCollective(); in collectAuthAggregates()
[all …]
DBrowsedAuthenticationMetric.java19 import com.android.server.credentials.metrics.shared.ResponseCollective;
35 private ResponseCollective mAuthEntryCollective = new ResponseCollective(Map.of(), Map.of());
63 ResponseCollective authEntryCollective) { in setAuthEntryCollective()
67 public ResponseCollective getAuthEntryCollective() { in getAuthEntryCollective()
DCandidatePhaseMetric.java22 import com.android.server.credentials.metrics.shared.ResponseCollective;
61 private ResponseCollective mResponseCollective = new ResponseCollective(Map.of(), Map.of());
173 public void setResponseCollective(ResponseCollective responseCollective) { in setResponseCollective()
177 public ResponseCollective getResponseCollective() { in getResponseCollective()
DChosenProviderFinalPhaseMetric.java22 import com.android.server.credentials.metrics.shared.ResponseCollective;
82 private ResponseCollective mResponseCollective = new ResponseCollective(Map.of(), Map.of());
278 public void setResponseCollective(ResponseCollective responseCollective) { in setResponseCollective()
282 public ResponseCollective getResponseCollective() { in getResponseCollective()
DProviderSessionMetric.java30 import com.android.server.credentials.metrics.shared.ResponseCollective;
253 ResponseCollective responseCollective = new ResponseCollective(responseCounts, entryCounts); in collectCandidateEntryMetrics()
285 ResponseCollective responseCollective = new ResponseCollective(responseCounts, entryCounts); in beginCreateCredentialResponseCollectionCandidateEntryMetrics()
308 ResponseCollective responseCollective = new ResponseCollective(responseCounts, entryCounts); in beginGetCredentialResponseCollectionCandidateEntryMetrics()
/frameworks/base/services/credentials/java/com/android/server/credentials/metrics/shared/
DResponseCollective.java36 public class ResponseCollective { class
55 public ResponseCollective(@NonNull Map<String, Integer> responseCounts, in ResponseCollective() method in ResponseCollective
142 public ResponseCollective combineCollectives(ResponseCollective other) { in combineCollectives()
157 return new ResponseCollective(responseCounts, entryCounts); in combineCollectives()