Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/metrics/
DNetworkMetrics.java53 public Summary pendingSummary; field in NetworkMetrics
69 Summary s = pendingSummary; in getPendingStats()
70 pendingSummary = null; in getPendingStats()
79 if (pendingSummary == null) { in addDnsResult()
80 pendingSummary = new Summary(netId, transports); in addDnsResult()
83 pendingSummary.dnsLatencies.count(latencyMs); in addDnsResult()
84 pendingSummary.dnsErrorRate.count(isSuccess ? 0 : 1); in addDnsResult()
89 if (pendingSummary == null) { in addConnectResult()
90 pendingSummary = new Summary(netId, transports); in addConnectResult()
93 pendingSummary.connectErrorRate.count(isSuccess ? 0 : 1); in addConnectResult()
[all …]