/external/grpc-grpc/test/cpp/naming/ |
D | resolver_test_record_groups.yaml | 1 resolver_tests_common_zone_name: resolver-tests-version-4.grpctestingexp. 3 # Tests for which we enable SRV queries 4 - expected_addrs: 5 - {address: '5.5.5.5:443', is_balancer: false} 13 record_to_resolve: no-srv-ipv4-single-target 15 no-srv-ipv4-single-target: 16 - {TTL: '2100', data: 5.5.5.5, type: A} 17 - expected_addrs: 18 - {address: '1.2.3.4:1234', is_balancer: true} 26 record_to_resolve: srv-ipv4-single-target [all …]
|
D | resolver_component_tests_runner.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 # This file is auto-generated 27 argp = argparse.ArgumentParser(description='Run c-ares resolver tests') 28 argp.add_argument('--test_bin_path', default=None, type=str, 30 argp.add_argument('--dns_server_bin_path', default=None, type=str, 32 argp.add_argument('--records_config_path', default=None, type=str, 35 argp.add_argument('--dns_server_port', default=None, type=int, 37 argp.add_argument('--dns_resolver_bin_path', default=None, type=str, 39 argp.add_argument('--tcp_connect_bin_path', default=None, type=str, 41 argp.add_argument('--extra_args', default='', type=str, [all …]
|
/external/grpc-grpc/test/core/event_engine/test_suite/tests/ |
D | dns_test_record_groups.yaml | 1 resolver_tests_common_zone_name: dns-test.event-engine. 3 - records: 4 ipv4-only-multi-target: 5 - {TTL: '2100', data: 1.2.3.4, type: A} 6 - {TTL: '2100', data: 1.2.3.5, type: A} 7 - {TTL: '2100', data: 1.2.3.6, type: A} 8 ipv6-only-multi-target: 9 - {TTL: '2100', data: '2607:f8b0:400a:801::1002', type: AAAA} 10 - {TTL: '2100', data: '2607:f8b0:400a:801::1003', type: AAAA} 11 - {TTL: '2100', data: '2607:f8b0:400a:801::1004', type: AAAA} [all …]
|
D | dns_test.cc | 7 // http://www.apache.org/licenses/LICENSE-2.0 103 << "This test specifies a target DNS server which the native " \ 133 "invoke Bazel with --enable_runfiles=yes."); in SetUpTestSuite() 160 // <path to dns_server.py> -p <port> -r <path to records config> in SetUpTestSuite() 162 {dns_server_path, "-p", std::to_string(port), "-r", test_records_path}); in SetUpTestSuite() 168 "-p", in SetUpTestSuite() 170 "--dns_resolver_bin_path", in SetUpTestSuite() 172 "--tcp_connect_bin_path", in SetUpTestSuite() 186 dns_server_.server_process->Interrupt(); in TearDownTestSuite() 187 dns_server_.server_process->Join(); in TearDownTestSuite() [all …]
|
/external/mdnsresponder/mDNSCore/ |
D | mDNSEmbeddedAPI.h | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2002-2003 Apple Computer, Inc. All rights reserved. 9 * http://www.apache.org/licenses/LICENSE-2.0 25 All the APIs here are malloc-free, which means that the caller is 33 memory requirements, with absolutely no uncertainty or run-time variation, 36 For applications running on general-purpose desktop operating systems 46 using malloc(), and then calls through to the low-level malloc-free 50 general-purpose desktop system. 100 // "This symbol exists -- but not necessarily in this C file.") 106 // When "mDNSlocal" is just a synonym for "static", and "mDNSexport" is a complete no-op, you could… [all …]
|
D | DNSCommon.c | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2002-2003 Apple Computer, Inc. All rights reserved. 9 * http://www.apache.org/licenses/LICENSE-2.0 29 // -- domain labels have an initial length byte, not a terminating null character 35 #pragma mark - Program Constants 39 mDNSexport const mDNSInterfaceID mDNSInterfaceMark = (mDNSInterfaceID)-1; 40 mDNSexport const mDNSInterfaceID mDNSInterface_LocalOnly = (mDNSInterfaceID)-2; 41 mDNSexport const mDNSInterfaceID mDNSInterface_Unicast = (mDNSInterfaceID)-3; 42 mDNSexport const mDNSInterfaceID mDNSInterface_P2P = (mDNSInterfaceID)-4; 47 // LLMNR uses IPv4 multicast address 224.0.0.252, IPv6 multicast address FF02::0001:0003, and UDP p… [all …]
|
D | mDNS.c | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2002-2006 Apple Computer, Inc. All rights reserved. 9 * http://www.apache.org/licenses/LICENSE-2.0 18 * from outside the mDNS project -- all the types it expects to find are defined right here. 22 * making *any* assumptions about availability of so-called "standard" C functions, 34 * thinking that variables x and y are both of type "char*" -- and anyone who doesn't 40 #include "uDNS.h" // Defines entry points into unicast-specific routines 84 #pragma mark - Program Constants 98 "b._dns-sd._udp.", // Browse 99 "db._dns-sd._udp.", // Default Browse [all …]
|
D | uDNS.c | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2002-2006 Apple Computer, Inc. All rights reserved. 9 * http://www.apache.org/licenses/LICENSE-2.0 18 * Elimate all mDNSPlatformMemAllocate/mDNSPlatformMemFree from this code -- the core code 19 * is supposed to be malloc-free so that it runs in constant memory determined at compile-time. 20 …* Any dynamic run-time requirements should be handled by the platform layer below or client layer … 39 // In each of these domains we search for our special pointer records (lb._dns-sd._udp.<domain>, et… 57 #pragma mark - General Utility Functions 63 rr->LastAPTime = m->timenow; in SetRecordRetry() 65 if (rr->expire && rr->refreshCount < MAX_UPDATE_REFRESH_COUNT) in SetRecordRetry() [all …]
|
/external/scapy/scapy/layers/ |
D | dns.py | 1 # SPDX-License-Identifier: GPL-2.0-only 10 - RFC1035: Domain Names 11 - RFC6762: Multicast DNS 12 - RFC6763: DNS-Based Service Discovery 69 from scapy.layers.inet6 import IPv6 81 # https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4 87 21: "RT", 22: "NSAP", 23: "NSAP-PTR", 24: "SIG", 25: "KEY", 26: "PX", 89 33: "SRV", 34: "ATMA", 35: "NAPTR", 36: "KX", 37: "CERT", 38: "A6", 107 # 12/2023 from https://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml # no… 108 dnssecalgotypes = {0: "Reserved", 1: "RSA/MD5", 2: "Diffie-Hellman", 3: "DSA/SHA-1", # noqa: E501 [all …]
|
/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/cares/cares/ |
D | CHANGES.0 | 1 Changelog for the c-ares project 8 o avoid using system's inet_net_pton affected by the WLB-2008080064 advisory 9 o replacement ares_inet_net_pton affected by the WLB-2008080064 advisory 11 o added install target to Makefile.msvc 15 o IPv6-on-windows: find DNS servers correctly 16 o man pages: docs for the c-ares utility programs 27 o local-bind: Support binding to local interface/IPs, see 65 - Use the last instance of domain/search, not the first one 68 - We switched from CVS to git. See http://github.com/bagder/c-ares 71 - Daniel Johnson provided fixes for building with the clang compiler. [all …]
|
/external/curl/docs/ |
D | TODO | 23 1.4 alt-svc sharing 25 1.6 thread-safe sharing 28 1.10 auto-detect proxy 31 1.13 c-ares and CURLOPT_OPENSOCKETFUNCTION 38 1.20 SRV and URI DNS records 50 2. libcurl - multi interface 51 2.1 More non-blocking 53 2.3 Non-blocking curl_multi_remove_handle() 55 2.5 Edge-triggered sockets should work 56 2.6 multi upkeep [all …]
|
/external/dnsmasq/ |
D | CHANGELOG.archive | 1 release 0.4 - initial public release 3 release 0.5 - added caching, removed compiler warning on linux PPC 5 release 0.6 - TCP handling: close socket and return to connect state if we 9 Added a patch from Cris Bailiff <c.bailiff@e-secure.com.au> 28 Fix bad bug resulting from not initialising value-result 29 address-length parameter to recvfrom() and accept() - it 39 (3) Time-to-live data from upstream server is read and 42 the -h option is given). 44 a file other than /etc/resolv.conf (-r option) this allows 47 give dnsmasq the option -r /etc/resolv.dnsmasq) [all …]
|
/external/mdnsresponder/mDNSShared/ |
D | uds_daemon.c | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2003-2006 Apple Computer, Inc. All rights reserved. 9 * http://www.apache.org/licenses/LICENSE-2.0 47 // Apple-specific functionality, not required for other platforms 72 // User IDs 0-500 are system-wide processes, not actual users in the usual sense 78 #pragma mark - 79 #pragma mark - Types and Data Structures 103 …AuthRecord *rr; // Pointer to variable-sized AuthRecord (Why a pointer? Why not just embed it h… 116 mDNSBool default_local; // is this the "local." from an empty-string registration? 119 ServiceRecordSet srs; // note -- variable-sized object -- must be last field in struct [all …]
|
/external/mdnsresponder/mDNSPosix/ |
D | NetMonitor.c | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2002-2004 Apple Computer, Inc. All rights reserved. 9 * http://www.apache.org/licenses/LICENSE-2.0 26 * thinking that variables x and y are both of type "char*" -- and anyone who doesn't 49 // Both mDNS.c and mDNSWin32.h declare UDPSocket_struct type resulting in a compile-time error, so 78 // These are meta-categories; 131 #define ExactlyOneFilter (Filters && !Filters->next) 143 // Special version of printf that knows how to print IP addresses, DNS-format name strings, etc. 185 #define HostEntryTotalPackets(H) ((H)->pkts[HostPkt_Q] + (H)->pkts[HostPkt_L] + (H)->pkts[HostPkt_R… 201 for (i = 0; i < list->num; i++) in FindHost() [all …]
|
/external/scapy/test/ |
D | regression.uts | 55 b = Bunch(returncode=0, communicate=lambda *args, **kargs: (b"v2.4.5rc1-261-g44b98e14", None)) 77 = List layers - advanced 87 = List packet fields - ls 137 # only upper case and +- 138 assert re.match(r"[A-Z+-]*", l) 145 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 147 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 149 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 151 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 153 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ [all …]
|
/external/cronet/stable/net/dns/ |
D | host_resolver_manager_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 156 top_level_result_error_ = request_->Start(base::BindOnce( in ResolveHostResponseHelper() 163 top_level_result_error_ = request_->Start( in ResolveHostResponseHelper() 182 return request_->GetResolveErrorInfo().error; in result_error() 301 --num_attempts_waiting_; in Resolve() 306 // Since any negative number is considered a network error, with -1 having in Resolve() 309 // resolves the host, then this method returns -4. in Resolve() 311 return -1 - resolved_attempt_number_; in Resolve() 333 // TestHostResolverManager's sole purpose is to mock the IPv6 reachability test. 334 // By default, this pretends that IPv6 is globally reachable. [all …]
|
/external/cronet/tot/net/dns/ |
D | host_resolver_manager_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 156 top_level_result_error_ = request_->Start(base::BindOnce( in ResolveHostResponseHelper() 163 top_level_result_error_ = request_->Start( in ResolveHostResponseHelper() 182 return request_->GetResolveErrorInfo().error; in result_error() 301 --num_attempts_waiting_; in Resolve() 306 // Since any negative number is considered a network error, with -1 having in Resolve() 309 // resolves the host, then this method returns -4. in Resolve() 311 return -1 - resolved_attempt_number_; in Resolve() 333 // TestHostResolverManager's sole purpose is to mock the IPv6 reachability test. 334 // By default, this pretends that IPv6 is globally reachable. [all …]
|
/external/aws-sdk-java-v2/services/securityhub/src/main/resources/codegen-resources/ |
D | service-2.json | 4 "apiVersion":"2018-10-26", 7 "protocol":"rest-json", 12 "uid":"securityhub-2018-10-26" 83 … href=\"https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards.html\">Secu… 100 … href=\"https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards.html\">Secu… 136 …target accounts, organizational units, or the root. Only the Security Hub delegated administrator … 184 …-custom-providers.html#securityhub-custom-providers-bfi-reqs\">default product ARN</a> or are a pa… 217 …azon.com/securityhub/latest/userguide/finding-update-batchupdatefindings.html#batchupdatefindings-… 251 …s a custom action target in Security Hub.</p> <p>You can use custom actions on findings and insigh… 303 …r more details about cross-Region replication, see <a href=\"https://docs.aws.amazon.com/securityh… [all …]
|
/external/aws-sdk-java-v2/services/ecs/src/main/resources/codegen-resources/ |
D | service-2.json | 4 "apiVersion":"2014-11-13", 13 "uid":"ecs-2014-11-13" 47 …-linked role for your account. This is so that it can manage required resources in other Amazon We… 68 …-day period are considered current customers and will be able to continue using the service. </p> … 91 …-types.html\">Amazon ECS deployment types</a> in the <i>Amazon Elastic Container Service Developer… 210 …ref=\"https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html\">Amazon E… 241 …e an <code>INACTIVE</code> task definition. However, there may be up to a 10-minute window followi… 338 …ref=\"https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html\">Amazon E… 386 …ee <a href=\"https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-exec.html\">Using Ama… 434 …target type and cluster. When you specify a target type and cluster, <code>ListAttributes</code> r… [all …]
|
/external/cpuinfo/test/dmesg/ |
D | huawei-p9-lite.log | 4 … 0.000000s][pid:0,cpu0,swapper]Linux version 3.10.90-ge124f87 (android@localhost) (gcc version 4.9… 44 [ 0.000000s][pid:0,cpu0,swapper] id - start address - end address 45 [ 0.000000s][pid:0,cpu0,swapper] - 0 : 0x000000 - 0x3fffffff 46 [ 0.000000s][pid:0,cpu0,swapper] - 1 : 0x40000000 - 0x7fffffff 69 [ 0.000000s][pid:0,cpu0,swapper]pcpu-alloc: s19200 r8192 d21760 u49152 alloc=12*4096 70 [ 0.000000s][pid:0,cpu0,swapper]pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 72 …roidboot.selinux=enforcing androidboot.swtype=normal fastboot_version=Dallas-Trunk_FASTBOOT setup_… 74 [ 0.000000s][pid:0,cpu0,swapper]Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) 75 …s][pid:0,cpu0,swapper]software IO TLB [mem 0x7bec6000-0x7bf06000] (0MB) mapped at [ffffffc07bac600… 99 [ 0.000000s] vmalloc : 0xffffff8000000000 - 0xffffffbbffff0000 (245759 MB) [all …]
|
/external/bcc/libbpf-tools/loongarch/ |
D | vmlinux_602.h | 3005 RPM_INVALID = -1, 5818 struct task_struct *target; member 5916 PERF_EVENT_STATE_DEAD = -4, 5917 PERF_EVENT_STATE_EXIT = -3, 5918 PERF_EVENT_STATE_ERROR = -2, 5919 PERF_EVENT_STATE_OFF = -1, 7486 CGROUP_BPF_ATTACH_TYPE_INVALID = -1, 8505 WORK_STRUCT_WQ_DATA_MASK = -256LL, 9654 struct netns_ipv6 ipv6; member 11837 NETNS_BPF_INVALID = -1, [all …]
|
D | vmlinux.h | 3005 RPM_INVALID = -1, 5818 struct task_struct *target; member 5916 PERF_EVENT_STATE_DEAD = -4, 5917 PERF_EVENT_STATE_EXIT = -3, 5918 PERF_EVENT_STATE_ERROR = -2, 5919 PERF_EVENT_STATE_OFF = -1, 7486 CGROUP_BPF_ATTACH_TYPE_INVALID = -1, 8505 WORK_STRUCT_WQ_DATA_MASK = -256LL, 9654 struct netns_ipv6 ipv6; member 11837 NETNS_BPF_INVALID = -1, [all …]
|