HomeSort by relevance Sort by last modified time
    Searched defs:TTL (Results 1 - 7 of 7) sorted by null

  /external/smack/src/org/xbill/DNS/
TTL.java 6 * Routines for parsing BIND-style TTL values. These values consist of
13 public final class TTL {
18 TTL() {}
27 * Parses a TTL-like value, which can either be expressed as a number or a
34 * @throws NumberFormatException The string was not in a valid TTL format.
41 long ttl = 0; local
58 ttl += value;
60 if (ttl > 0xFFFFFFFFL)
64 if (ttl == 0)
65 ttl = value
    [all...]
Record.java 12 * A record contains a name, type, class, ttl, and rdata.
23 protected long ttl; field in class:Record
34 Record(Name name, int type, int dclass, long ttl) {
39 TTL.check(ttl);
43 this.ttl = ttl;
53 getEmptyRecord(Name name, int type, int dclass, long ttl, boolean hasData) {
67 rec.ttl = ttl;
178 long ttl; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObject.java 56 protected static final String TTL = "ttl";
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParameterNames.java 135 public static final String TTL = "ttl";
Via.java 75 /** The "TTL" parameter is designating the time-to-live value.
77 public static final String TTL = ParameterNames.TTL;
422 * Returns the value of the ttl parameter, or -1 if this is not set.
424 * @return the integer value of the <code>ttl</code> parameter
427 int ttl = getParameterAsInt(ParameterNames.TTL); local
428 return ttl;
432 * Sets the value of the ttl parameter. The ttl parameter specifies th
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
InetAddressTest.java 386 final int TTL = 20;
410 assertTrue(destAddress.isReachable(loopbackInterface, TTL, TIME_OUT));
416 assertFalse(destAddress.isReachable(loopbackInterface, TTL, TIME_OUT));
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 211 milliseconds