Searched refs:InactivityTimer (Results 1 – 1 of 1) sorted by relevance
226 public static class InactivityTimer implements Comparable<InactivityTimer> { class in NetworkAgentInfo230 public InactivityTimer(int requestId, long expiryMs) { in InactivityTimer() method in NetworkAgentInfo.InactivityTimer235 if (!(o instanceof InactivityTimer)) return false; in equals()236 InactivityTimer other = (InactivityTimer) o; in equals()242 public int compareTo(InactivityTimer other) { in compareTo()294 private final SortedSet<InactivityTimer> mInactivityTimers = new TreeSet<>();1008 InactivityTimer timer = new InactivityTimer(requestId, expiryMs);1032 InactivityTimer timer = mInactivityTimerForRequest.get(requestId);1099 final ArrayList<InactivityTimer> newTimers = new ArrayList<>();1100 for (final InactivityTimer timer : mInactivityTimers) {[all …]