Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/connectivity/
DNetworkAgentInfo.java181 public final long expiryMs; field in NetworkAgentInfo.LingerTimer
183 public LingerTimer(NetworkRequest request, long expiryMs) { in LingerTimer() argument
185 this.expiryMs = expiryMs; in LingerTimer()
190 return (request.requestId == other.request.requestId) && (expiryMs == other.expiryMs); in equals()
193 return Objects.hash(request.requestId, expiryMs); in hashCode()
196 return (expiryMs != other.expiryMs) ? in compareTo()
197 Long.compare(expiryMs, other.expiryMs) : in compareTo()
202 expiryMs - SystemClock.elapsedRealtime()); in toString()
553 final long expiryMs = now + duration; in lingerRequest() local
554 LingerTimer timer = new LingerTimer(request, expiryMs); in lingerRequest()
[all …]