HomeSort by relevance Sort by last modified time
    Searched defs:ttl (Results 1 - 25 of 71) sorted by null

1 2 3

  /bionic/libc/kernel/uapi/linux/netfilter_ipv4/
ipt_TTL.h 32 __u8 ttl; member in struct:ipt_TTL_info
ipt_ttl.h 32 __u8 ttl; member in struct:ipt_ttl_info
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
ipt_TTL.h 25 u_int8_t ttl; member in struct:ipt_TTL_info
  /development/ndk/platforms/android-L/include/linux/netfilter_ipv4/
ipt_TTL.h 32 __u8 ttl; member in struct:ipt_TTL_info
ipt_ttl.h 32 __u8 ttl; member in struct:ipt_ttl_info
  /external/iptables/include/linux/netfilter_ipv4/
ipt_TTL.h 0 /* TTL modification module for IP tables
19 __u8 ttl; member in struct:ipt_TTL_info
ipt_ttl.h 1 /* IP tables module for matching the value of the TTL
19 __u8 ttl; member in struct:ipt_ttl_info
  /external/kernel-headers/original/uapi/linux/netfilter_ipv4/
ipt_TTL.h 0 /* TTL modification module for IP tables
19 __u8 ttl; member in struct:ipt_TTL_info
ipt_ttl.h 1 /* IP tables module for matching the value of the TTL
19 __u8 ttl; member in struct:ipt_ttl_info
  /external/chromium_org/chrome/browser/net/
dns_probe_runner.cc 69 TimeDelta ttl; local
70 DnsResponse::Result result = response->ParseToAddressList(&addr_list, &ttl);
  /external/chromium_org/cloud_print/gcp20/prototype/
command_line_reader.cc 34 uint32 ttl = 0; local
38 &ttl)) {
39 ttl = default_value;
42 VLOG(1) << "TTL for announcements: " << ttl;
43 return ttl;
dns_response_builder.h 31 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/net/dns/
record_parsed.h 32 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,
host_cache.h 27 Entry(int error, const AddressList& addrlist, base::TimeDelta ttl);
28 // Use when |ttl| is unknown.
32 bool has_ttl() const { return ttl >= base::TimeDelta(); }
37 // TTL obtained from the nameserver. Negative if unknown.
38 base::TimeDelta ttl; member in struct:net::HostCache::Entry
87 // |ttl| is the "time to live".
91 base::TimeDelta ttl);
mdns_cache_unittest.cc 31 0, 0, 0, 53, // TTL (4 bytes) is 53 seconds.
40 0, 0, 0, 53, // TTL (4 bytes) is 53 seconds.
55 0, 0, 0, 53, // TTL (4 bytes) is 53 seconds.
64 0, 0, 0, 112, // TTL (4 bytes) is 112 seconds.
79 0, 0, 0, 53, // TTL (4 bytes) is 53 seconds.
92 0, 0, 0, 53, // TTL (4 bytes) is 53 seconds.
110 0, 0, 0, 0, // TTL (4 bytes) is zero.
123 0, 0, 0, 53, // TTL (4 bytes) is 53 seconds.
177 // Test that records expire when their ttl has passed.
189 base::TimeDelta ttl1 = base::TimeDelta::FromSeconds(record1->ttl());
307 base::TimeDelta ttl = base::TimeDelta::FromSeconds(record_hello->ttl()); local
    [all...]
dns_response.h 35 uint32 ttl; member in struct:net::DnsResourceRecord
151 Result ParseToAddressList(AddressList* addr_list, base::TimeDelta* ttl) const;
dns_response_unittest.cc 113 0x00, 0x01, 0x24, 0x74, // TTL is 0x00012474.
122 0x00, 0x20, 0x13, 0x55, // TTL is 0x00201355.
135 EXPECT_EQ(0x00012474u, record.ttl);
145 EXPECT_EQ(0x00201355u, record.ttl);
186 0x00, 0x01, // TTL (4 bytes) is 20 hours, 47 minutes, 48 seconds.
200 0x00, 0x00, // TTL (4 bytes) is 53 seconds.
293 0x00, 0x00, // TTL (4 bytes) is 53 seconds.
316 EXPECT_EQ(0x00000035u, record.ttl);
351 0x00, 0x00, // TTL (4 bytes) is 53 seconds.
374 EXPECT_EQ(0x35u, record.ttl);
448 base::TimeDelta ttl; local
456 EXPECT_EQ(base::TimeDelta::FromSeconds(t.expected_ttl_sec), ttl); local
573 base::TimeDelta ttl; local
    [all...]
mdns_cache.cc 20 // The effective TTL given to records with a nominal zero TTL.
96 if (record->ttl() == 0 && mdns_cache_.find(cache_key) == mdns_cache_.end())
111 if (record->ttl() != 0 && !record->IsEqual(other_record, true)) {
201 base::TimeDelta ttl; local
203 if (record->ttl()) {
204 ttl = base::TimeDelta::FromSeconds(record->ttl());
206 ttl = base::TimeDelta::FromSeconds(kZeroTTLSeconds);
209 return record->time_created() + ttl;
    [all...]
  /bionic/libc/dns/nameser/
ns_ttl.c 104 u_long ttl, tmp; local
107 ttl = 0;
132 ttl += tmp;
141 ttl += tmp;
144 *dst = ttl;
  /external/chromium_org/chrome/browser/extensions/api/copresence/
copresence_translations.cc 29 // Checks and returns the ttl provided by the user. If invalid, returns -1.
88 int ttl = SanitizeTtl(publish.time_to_live_millis.get()); local
89 if (ttl < 0)
91 publish_proto->mutable_access_policy()->set_ttl_millis(ttl);
142 int ttl = SanitizeTtl(subscription.time_to_live_millis.get()); local
143 if (ttl < 0)
145 subscription_proto->set_ttl_millis(ttl);
  /external/iputils/ninfod/
ninfod_addrs.c 268 uint32_t ttl; local
283 ttl = ifa->ifa_cacheinfo->ifa_valid > 0x7fffffff ?
286 ttl = (ifa->ifa_flags & IFA_F_PERMANENT) ? htonl(0x7fffffff) : 0;
289 ttl = 0;
294 memcpy(cp, &ttl, sizeof(ttl));
295 memcpy(cp + sizeof(ttl), ifa->ifa_addr, sizeof(struct in6_addr));
428 uint32_t ttl; local
444 ttl = ifa->ifa_cacheinfo->ifa_valid > 0x7fffffff ?
447 ttl = 0; /*XXX*
    [all...]
ninfod_name.c 371 uint32_t ttl = 0; local
379 p->replydatalen = nodenamelen ? sizeof(ttl)+nodenamelen : 0;
382 memcpy(p->replydata, &ttl, sizeof(ttl));
383 memcpy(p->replydata + sizeof(ttl), &nodename, nodenamelen);
  /external/chromium_org/google_apis/gaia/
oauth2_mint_token_flow_unittest.cc 235 int ttl; local
237 &ttl));
243 int ttl; local
245 &ttl));
247 EXPECT_EQ(3600, ttl);
  /external/chromium_org/net/tools/dns_fuzz_stub/
dns_fuzz_stub.cc 149 base::TimeDelta ttl; local
151 &address_list, &ttl);
162 result_line << "}, ttl=" << ttl.InSeconds() << "s";
  /external/iproute2/ip/
link_gre.c 32 fprintf(stderr, " [ ttl TTL ] [ tos TOS ] [ [no]pmtudisc ] [ dev PHYS_DEV ]\n");
37 fprintf(stderr, " TTL := { 1..255 | inherit }\n");
62 __u8 ttl = 0; local
123 ttl = rta_getattr_u8(greinfo[IFLA_GRE_TTL]);
212 } else if (!matches(*argv, "ttl") ||
219 invarg("invalid TTL\n", *argv);
221 invarg("TTL must be <= 255\n", *argv);
222 ttl = uval;
263 addattr_l(n, 1024, IFLA_GRE_TTL, &ttl, 1)
    [all...]

Completed in 1141 milliseconds

1 2 3