Home
last modified time | relevance | path

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

/packages/modules/Connectivity/framework/src/android/net/
DLinkAddress.java109 private long deprecationTime; field in LinkAddress
190 long deprecationTime, long expirationTime) { in init() argument
201 if ((deprecationTime == LIFETIME_UNKNOWN) != (expirationTime == LIFETIME_UNKNOWN)) { in init()
207 if (deprecationTime != LIFETIME_UNKNOWN && deprecationTime < 0) { in init()
208 throw new IllegalArgumentException("invalid deprecation time " + deprecationTime); in init()
217 if (deprecationTime != LIFETIME_UNKNOWN && expirationTime != LIFETIME_UNKNOWN in init()
218 && expirationTime < deprecationTime) { in init()
220 + deprecationTime + ", " + expirationTime + ")"); in init()
227 this.deprecationTime = deprecationTime; in init()
275 int flags, int scope, long deprecationTime, long expirationTime) { in LinkAddress() argument
[all …]