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

/frameworks/base/core/java/com/android/server/net/
H A DNetlinkTracker.java192 * Represents a DNS server entry with an expiry time.
206 public long expiry; field in class:DnsServerEntry
208 public DnsServerEntry(InetAddress address, long expiry) throws IllegalArgumentException { argument
210 this.expiry = expiry;
214 return Long.compare(other.expiry, this.expiry);
265 * Always sorted in order of decreasing expiry. The elements in this list are also the values
297 long expiry = now + 1000 * lifetime;
309 if (!updateExistingEntry(address, expiry)) {
327 updateExistingEntry(InetAddress address, long expiry) argument
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipHelper.java212 int expiry) throws SipException {
215 if (expiry == 0) {
222 request.addHeader(mHeaderFactory.createExpiresHeader(expiry));
211 sendRegister(SipProfile userProfile, String tag, int expiry) argument

Completed in 509 milliseconds