Home | History | Annotate | Download | only in connectivity

Lines Matching defs:expiryMs

167         public final long expiryMs;
169 public LingerTimer(NetworkRequest request, long expiryMs) {
171 this.expiryMs = expiryMs;
176 return (request.requestId == other.request.requestId) && (expiryMs == other.expiryMs);
179 return Objects.hash(request.requestId, expiryMs);
182 return (expiryMs != other.expiryMs) ?
183 Long.compare(expiryMs, other.expiryMs) :
188 expiryMs - SystemClock.elapsedRealtime());
493 final long expiryMs = now + duration;
494 LingerTimer timer = new LingerTimer(request, expiryMs);
520 long newExpiry = mLingerTimers.isEmpty() ? 0 : mLingerTimers.last().expiryMs;