/third_party/node/test/parallel/ |
D | test-dns-resolveany.js | 10 { type: 'A', address: '1.2.3.4', ttl: 123 }, property 11 { type: 'AAAA', address: '::42', ttl: 123 }, property 12 { type: 'MX', priority: 42, exchange: 'foobar.com', ttl: 124 }, property 13 { type: 'NS', value: 'foobar.org', ttl: 457 }, property 15 { type: 'PTR', value: 'baz.org', ttl: 987 }, property
|
D | test-dns.js | 364 { type: 'A', address: '1.2.3.4', ttl: 3333333333 }, property 365 { type: 'AAAA', address: '::42', ttl: 3333333333 }, property 366 { type: 'MX', priority: 42, exchange: 'foobar.com', ttl: 3333333333 }, property 367 { type: 'NS', value: 'foobar.org', ttl: 3333333333 }, property 368 { type: 'PTR', value: 'baz.org', ttl: 3333333333 }, property 382 options: { ttl: true }, property 383 answers: [ { type: 'A', address: '1.2.3.4', ttl: 3333333333 } ] }, property 386 options: { ttl: true }, property 387 answers: [ { type: 'AAAA', address: '::42', ttl: 3333333333 } ] }, property
|
D | test-dns-multi-channel.js | 11 reply: { type: 'A', address: '1.2.3.4', ttl: 123, domain: 'example.org' } property 15 reply: { type: 'A', address: '5.6.7.8', ttl: 123, domain: 'example.org' } property
|
D | test-net-autoselectfamily-commandline-option.js | 51 { type: 'AAAA', address: ipv6Addr, ttl: 123, domain: 'example.org' }, property 52 { type: 'A', address: ipv4Addr, ttl: 123, domain: 'example.org' }, property
|
D | test-net-autoselectfamily-ipv4first.js | 48 { type: 'A', address: ipv4Addr, ttl: 123, domain: 'example.org' }, property 49 { type: 'AAAA', address: ipv6Addr, ttl: 123, domain: 'example.org' }, property
|
D | test-http-header-validators.js | 60 function isFunc(v, ttl) { argument
|
D | test-net-autoselectfamilydefault.js | 52 { type: 'AAAA', address: ipv6Addr, ttl: 123, domain: 'example.org' }, property 53 { type: 'A', address: ipv4Addr, ttl: 123, domain: 'example.org' }, property
|
D | test-http-autoselectfamily.js | 50 { type: 'AAAA', address: ipv6Addr, ttl: 123, domain: 'example.org' }, property 51 { type: 'A', address: ipv4Addr, ttl: 123, domain: 'example.org' }, property
|
D | test-https-autoselectfamily.js | 64 { type: 'AAAA', address: ipv6Addr, ttl: 123, domain: 'example.org' }, property 65 { type: 'A', address: ipv4Addr, ttl: 123, domain: 'example.org' }, property
|
D | test-net-autoselectfamily.js | 60 ...ipv6Addrs.map((address) => ({ type: 'AAAA', address, ttl: 123, domain: 'example.org' })), property 61 ...ipv4Addrs.map((address) => ({ type: 'A', address, ttl: 123, domain: 'example.org' })), property
|
/third_party/lwip/src/include/lwip/ |
D | ip.h | 255 #define ip_output(p, src, dest, ttl, tos, proto) \ argument 263 #define ip_output_if(p, src, dest, ttl, tos, proto, netif) \ argument 271 #define ip_output_if_src(p, src, dest, ttl, tos, proto, netif) \ argument 281 #define ip_output_hinted(p, src, dest, ttl, tos, proto, netif_hint) \ argument 313 #define ip_output(p, src, dest, ttl, tos, proto) \ argument 315 #define ip_output_if(p, src, dest, ttl, tos, proto, netif) \ argument 317 #define ip_output_if_src(p, src, dest, ttl, tos, proto, netif) \ argument 319 #define ip_output_hinted(p, src, dest, ttl, tos, proto, netif_hint) \ argument 333 #define ip_output(p, src, dest, ttl, tos, proto) \ argument 335 #define ip_output_if(p, src, dest, ttl, tos, proto, netif) \ argument [all …]
|
/third_party/lwip/src/core/ipv4/ |
D | ip4.c | 829 u8_t ttl, u8_t tos, 844 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, 869 u8_t ttl, u8_t tos, 882 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, 1070 u8_t ttl, u8_t tos, u8_t proto) 1112 u8_t ttl, u8_t tos, u8_t proto, struct netif_hint *netif_hint)
|
/third_party/node/deps/npm/node_modules/@npmcli/agent/lib/ |
D | dns.js | 15 ttl = 5 * 60 * 1000, property 44 cache.set(key, result, { ttl }) field
|
/third_party/node/lib/internal/dns/ |
D | callback_resolver.js | 42 result, (address, index) => ({ address, ttl: ttls[index] })); property 79 ttl: req.ttl, property
|
D | promises.js | 281 result, (address, index) => ({ address, ttl: ttls[index] })); property 289 function createResolverPromise(resolver, bindingName, hostname, ttl) { argument 310 ttl, property
|
/third_party/ffmpeg/libavformat/ |
D | sdp.c | 51 int ttl; /**< TTL, in case of multicast stream */ member 61 const char *dest_type, int ttl) in sdp_write_address() 124 static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url) in sdp_get_address() 813 int port, int ttl, AVFormatContext *fmt) in ff_sdp_write_media() 841 int i, j, port, ttl, is_multicast, index = 0; in av_sdp_create() local 917 int port, int ttl, AVFormatContext *fmt) in ff_sdp_write_media()
|
/third_party/libwebsockets/lib/system/async-dns/ |
D | async-dns-parse.c | 161 uint32_t ttl; in lws_adns_iterate() local 433 lws_async_dns_estimate(const char *name, void *opaque, uint32_t ttl, in lws_async_dns_estimate() 463 lws_async_dns_store(const char *name, void *opaque, uint32_t ttl, in lws_async_dns_store()
|
/third_party/node/deps/npm/node_modules/@npmcli/git/lib/ |
D | revs.js | 7 ttl: 5 * 60 * 1000, property
|
/third_party/toybox/toys/pending/ |
D | traceroute.c | 110 static void send_probe4(int seq, int ttl) in send_probe4() 142 static void send_probe6(int seq, int ttl) in send_probe6() 199 int seq, fexit, ttl, tv = TT.wait_time * 1000; in do_trace() local
|
/third_party/node/deps/cares/src/lib/ |
D | ares_qcache.c | 247 unsigned int ttl = ares_dns_rr_get_ttl(rr); in ares__qcache_calc_minttl() local 271 unsigned int ttl; in ares__qcache_soa_minimum() local 316 unsigned int ttl; in ares__qcache_insert() local
|
/third_party/ltp/testcases/network/multicast/mc_opts/ |
D | mc_verify_opts_error.c | 24 unsigned char ttl; in main() local
|
D | mc_verify_opts.c | 31 unsigned char ttl; in main() local
|
/third_party/node/deps/npm/node_modules/make-fetch-happen/lib/ |
D | options.js | 31 options.dns = { ttl: 5 * 60 * 1000, lookup: dns.lookup, ...options.dns } property
|
/third_party/ltp/testcases/network/multicast/mc_commo/ |
D | mc_send.c | 26 char ttl = 0; in main() local
|
/third_party/libwebsockets/lib/tls/openssl/ |
D | openssl-session.c | 218 long ttl; in lws_tls_session_new_cb() local 342 lws_tls_session_cache(struct lws_vhost *vh, uint32_t ttl) in lws_tls_session_cache()
|