Home
last modified time | relevance | path

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

/packages/modules/Connectivity/service/src/com/android/server/connectivity/
DNetworkAgentInfo.java505 public final long expiryMs; field in NetworkAgentInfo.InactivityTimer
507 public InactivityTimer(int requestId, long expiryMs) { in InactivityTimer() argument
509 this.expiryMs = expiryMs; in InactivityTimer()
514 return (requestId == other.requestId) && (expiryMs == other.expiryMs); in equals()
517 return Objects.hash(requestId, expiryMs); in hashCode()
520 return (expiryMs != other.expiryMs) ? in compareTo()
521 Long.compare(expiryMs, other.expiryMs) : in compareTo()
526 expiryMs - SystemClock.elapsedRealtime()); in toString()
1375 final long expiryMs = now + duration;
1376 InactivityTimer timer = new InactivityTimer(requestId, expiryMs);
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DMissingCounterTimerLockList.java125 LockListEntry(long expiryMs, long maxDisableDurationMs) { in LockListEntry() argument
127 mExpiryMs = expiryMs; in LockListEntry()