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.java172 public final long expiryMs; field in NetworkAgentInfo.LingerTimer
174 public LingerTimer(NetworkRequest request, long expiryMs) { in LingerTimer() argument
176 this.expiryMs = expiryMs; in LingerTimer()
181 return (request.requestId == other.request.requestId) && (expiryMs == other.expiryMs); in equals()
184 return Objects.hash(request.requestId, expiryMs); in hashCode()
187 return (expiryMs != other.expiryMs) ? in compareTo()
188 Long.compare(expiryMs, other.expiryMs) : in compareTo()
193 expiryMs - SystemClock.elapsedRealtime()); in toString()
540 final long expiryMs = now + duration; in lingerRequest() local
541 LingerTimer timer = new LingerTimer(request, expiryMs); in lingerRequest()
[all …]