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

/frameworks/base/core/java/com/android/server/net/
H A DNetlinkTracker.java205 * Represents a DNS server entry with an expiry time.
219 public long expiry; field in class:DnsServerEntry
221 public DnsServerEntry(InetAddress address, long expiry) throws IllegalArgumentException { argument
223 this.expiry = expiry;
227 return Long.compare(other.expiry, this.expiry);
278 * Always sorted in order of decreasing expiry. The elements in this list are also the values
310 long expiry = now + 1000 * lifetime;
322 if (!updateExistingEntry(address, expiry)) {
340 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 82 milliseconds