Searched defs:ttl (Results 1 - 25 of 153) sorted by relevance

1234567

/external/smack/src/org/xbill/DNS/
H A DInvalidTTLException.java14 InvalidTTLException(long ttl) { argument
15 super("Invalid DNS TTL: " + ttl);
H A DAFSDBRecord.java30 AFSDBRecord(Name name, int dclass, long ttl, int subtype, Name host) { argument
31 super(name, Type.AFSDB, dclass, ttl, subtype, "subtype", host, "host");
H A DCNAMERecord.java27 CNAMERecord(Name name, int dclass, long ttl, Name alias) { argument
28 super(name, Type.CNAME, dclass, ttl, alias, "alias");
H A DDNAMERecord.java27 DNAMERecord(Name name, int dclass, long ttl, Name alias) { argument
28 super(name, Type.DNAME, dclass, ttl, alias, "alias");
H A DKXRecord.java29 KXRecord(Name name, int dclass, long ttl, int preference, Name target) { argument
30 super(name, Type.KX, dclass, ttl, preference, "preference",
H A DMBRecord.java27 MBRecord(Name name, int dclass, long ttl, Name mailbox) { argument
28 super(name, Type.MB, dclass, ttl, mailbox, "mailbox");
H A DMDRecord.java28 MDRecord(Name name, int dclass, long ttl, Name mailAgent) { argument
29 super(name, Type.MD, dclass, ttl, mailAgent, "mail agent");
H A DMFRecord.java28 MFRecord(Name name, int dclass, long ttl, Name mailAgent) { argument
29 super(name, Type.MF, dclass, ttl, mailAgent, "mail agent");
H A DMGRecord.java28 MGRecord(Name name, int dclass, long ttl, Name mailbox) { argument
29 super(name, Type.MG, dclass, ttl, mailbox, "mailbox");
H A DMRRecord.java28 MRRecord(Name name, int dclass, long ttl, Name newName) { argument
29 super(name, Type.MR, dclass, ttl, newName, "new name");
H A DNSAP_PTRRecord.java28 NSAP_PTRRecord(Name name, int dclass, long ttl, Name target) { argument
29 super(name, Type.NSAP_PTR, dclass, ttl, target, "target");
H A DNSRecord.java27 NSRecord(Name name, int dclass, long ttl, Name target) { argument
28 super(name, Type.NS, dclass, ttl, target, "target");
H A DPTRRecord.java28 PTRRecord(Name name, int dclass, long ttl, Name target) { argument
29 super(name, Type.PTR, dclass, ttl, target, "target");
H A DRTRecord.java29 RTRecord(Name name, int dclass, long ttl, int preference, argument
32 super(name, Type.RT, dclass, ttl, preference, "preference",
H A DSPFRecord.java30 SPFRecord(Name name, int dclass, long ttl, List strings) { argument
31 super(name, Type.SPF, dclass, ttl, strings);
40 SPFRecord(Name name, int dclass, long ttl, String string) { argument
41 super(name, Type.SPF, dclass, ttl, string);
/external/android-clat/
H A Dicmp.c29 * ttl - the ttl of the received packet.
31 uint8_t icmp_guess_ttl(uint8_t ttl) { argument
32 if (ttl > 128) {
33 return 255 - ttl;
34 } else if (ttl > 64) {
35 return 128 - ttl;
36 } else if (ttl > 32) {
37 return 64 - ttl;
39 return 32 - ttl;
[all...]
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_TTL.h19 __u8 ttl; member in struct:ipt_TTL_info
H A Dipt_ttl.h19 __u8 ttl; member in struct:ipt_ttl_info
/external/kernel-headers/original/uapi/linux/netfilter_ipv4/
H A Dipt_TTL.h19 __u8 ttl; member in struct:ipt_TTL_info
H A Dipt_ttl.h19 __u8 ttl; member in struct:ipt_ttl_info
/external/tcpdump/
H A Dprint-carp.c51 carp_print(register const u_char *bp, register u_int len, int ttl) argument
64 if (ttl != 255)
65 printf("[ttl=%d!] ", ttl);
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dcommand_line_reader.cc34 uint32 ttl = 0; local
38 &ttl)) {
39 ttl = default_value;
42 VLOG(1) << "TTL for announcements: " << ttl;
43 return ttl;
H A Ddns_response_builder.h31 uint32 ttl; member in struct:DnsResponseRecord
46 uint32 ttl,
51 uint32 ttl,
58 uint32 ttl,
63 uint32 ttl,
68 uint32 ttl,
79 uint32 ttl,
/external/chromium_org/components/copresence/handlers/audio/
H A Daudio_directive_list.cc30 base::TimeDelta ttl) {
31 base::Time end_time = base::Time::Now() + ttl;
29 AddDirective(const std::string& op_id, base::TimeDelta ttl) argument
/external/chromium_org/net/dns/
H A Drecord_parsed.h32 uint32 ttl() const { return ttl_; } function in class:net::RecordParsed
42 // Check if two records have the same data. Ignores time_created and ttl.
49 uint32 ttl, scoped_ptr<const RecordRdata> rdata,

Completed in 287 milliseconds

1234567