Searched defs:LingerTimer (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkAgentInfo.java163 public static class LingerTimer implements Comparable<LingerTimer> { class in class:NetworkAgentInfo
167 public LingerTimer(NetworkRequest request, long expiryMs) { method in class:NetworkAgentInfo.LingerTimer
172 if (!(o instanceof LingerTimer)) return false;
173 LingerTimer other = (LingerTimer) o;
179 public int compareTo(LingerTimer other) {
202 private final SortedSet<LingerTimer> mLingerTimers = new TreeSet<>();
205 private final SparseArray<LingerTimer> mLingerTimerForRequest = new SparseArray<>();
208 // network is lingering or not. Always set to the expiry of the LingerTimer tha
[all...]

Completed in 171 milliseconds