/aosp_15_r20/external/grpc-grpc/test/cpp/naming/ |
H A 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 …]
|
H A 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 …]
|
/aosp_15_r20/external/grpc-grpc/test/core/event_engine/test_suite/tests/ |
H A 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 …]
|
H A D | dns_test.cc | 7 // http://www.apache.org/licenses/LICENSE-2.0 37 #include "src/core/lib/config/config_vars.h" 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 …]
|
/aosp_15_r20/external/dnsmasq/ |
H A D | dnsmasq.conf.example | 5 # "/usr/sbin/dnsmasq --help" or "man 8 dnsmasq" for details. 10 # uneccessarily. If you have a dial-on-demand link they also stop 14 #domain-needed 15 # Never forward addresses in the non-routed address spaces. 16 #bogus-priv 19 # Uncomment this to filter useless windows-originated DNS requests 20 # which can trigger dial-on-demand links needlessly. 21 # Note that (amongst other things) this blocks all SRV requests, 22 # so don't use it if you use eg Kerberos, SIP, XMMP or Google-talk. 23 # This option only affects forwarding, SRV records originating for [all …]
|
H A 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 …]
|
/aosp_15_r20/external/curl/docs/ |
H A 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 45 1.30 config file parsing 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 [all …]
|
/aosp_15_r20/external/dnsmasq/src/ |
H A D | option.c | 1 /* dnsmasq is Copyright (c) 2000-2009 Simon Kelley 39 /* options which don't have a one-char version */ 86 {"no-hosts", 0, 0, 'h'}, 87 {"no-poll", 0, 0, 'n'}, 89 {"no-daemon", 0, 0, 'd'}, 90 {"log-queries", 0, 0, 'q'}, 93 {"resolv-file", 2, 0, 'r'}, 94 {"mx-host", 1, 0, 'm'}, 95 {"mx-target", 1, 0, 't'}, 96 {"cache-size", 2, 0, 'c'}, [all …]
|
/aosp_15_r20/external/mdnsresponder/mDNSShared/ |
H A 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… 106 // A single registered service: ServiceRecordSet + bookkeeping 114 mDNSBool renameonmemfree; // Set on config change when we deregister original name [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/route53/src/main/resources/codegen-resources/ |
H A D | service-2.json | 4 "apiVersion":"2013-04-01", 7 "protocol":"rest-xml", 12 "uid":"route53-2013-04-01" 19 "requestUri":"/2013-04-01/keysigningkey/{HostedZoneId}/{Name}/activate" 31 …"documentation":"<p>Activates a key-signing key (KSK) so that it can be used for signing by DNSSEC… 37 "requestUri":"/2013-04-01/hostedzone/{Id}/associatevpc" 42 "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"} 55 …- Amazon Web Services Regions</p> </li> <li> <p> <code>aws-cn</code> - China Regions</p> </li> <li… 61 "requestUri":"/2013-04-01/cidrcollection/{CidrCollectionId}" 66 "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"} [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/route53resolver/src/main/resources/codegen-resources/ |
H A D | service-2.json | 4 "apiVersion":"2018-04-01", 13 "uid":"route53resolver-2018-04-01" 182 …o the DNS service for a VPC from your network.</p> </li> <li> <p>An <i>outbound Resolver endpoint<… 309 …bound</b>: DNS queries from your network are no longer routed to the DNS service for the specified… 685 …ng characters: <code>A-Z</code>, <code>a-z</code>, <code>0-9</code>, <code>-</code> (hyphen).</p> … 766 …"documentation":"<p>Retrieves the minimal high-level information for the rule groups that you have… 1195 … an inbound or an outbound Resolver endpoint. You can only update between IPV4 and DUALSTACK, IPV6… 1310 …"documentation":"<p>Either the IPv4 address that you want to add to a Resolver endpoint or a subne… 1513 …- Permit the request to go through.</p> </li> <li> <p> <code>ALERT</code> - Permit the request and… 1517 …- Respond indicating that the query was successful, but no response is available for it.</p> </li>… [all …]
|
/aosp_15_r20/external/toybox/android/mac/generated/ |
H A D | help.h | 1 …-libc on a nommu system, you'll need to say \"y\" here\nunless you used the patch in the mcm-build… 9 … even when it has a built-in version of that command. This requires\n toybox symlinks to be … 13 #define HELP_toybox_zhelp "Compress help with gzip -9, deflating when displayed. This makes the\nbi… 15 …t --help argument in all commands, even ones with a NULL\noptstring. (Use TOYFLAG_NOHELP to disabl… 23 #define HELP_toybox_libcrypto "Use faster hash functions out of external -lcrypto library." 27 #define HELP_toybox_selinux "Include SELinux options in commands such as ls, and add\nSELinux-speci… 29 …ad use conventional unix security (and possibly\nLinux Containers) for a simple straightforward sy… 33 …--long | --help | --version | [COMMAND] [ARGUMENTS...]]\n\nWith no arguments, \"toybox\" shows ava… 41 …-D] [-F] [-R] [-n] [-v] FILE...\n\nRestores the default security contexts for the given files.\n\n… 43 …-p PRI] [-t TAG] [MESSAGE...]\n\nLogs message (or stdin) to logcat.\n\n-p Use the given priority i… [all …]
|
/aosp_15_r20/external/toybox/android/linux/generated/ |
H A D | help.h | 1 …-libc on a nommu system, you'll need to say \"y\" here\nunless you used the patch in the mcm-build… 9 … even when it has a built-in version of that command. This requires\n toybox symlinks to be … 13 #define HELP_toybox_zhelp "Compress help with gzip -9, deflating when displayed. This makes the\nbi… 15 …t --help argument in all commands, even ones with a NULL\noptstring. (Use TOYFLAG_NOHELP to disabl… 23 #define HELP_toybox_libcrypto "Use faster hash functions out of external -lcrypto library." 27 #define HELP_toybox_selinux "Include SELinux options in commands such as ls, and add\nSELinux-speci… 29 …ad use conventional unix security (and possibly\nLinux Containers) for a simple straightforward sy… 33 …--long | --help | --version | [COMMAND] [ARGUMENTS...]]\n\nWith no arguments, \"toybox\" shows ava… 41 …-D] [-F] [-R] [-n] [-v] FILE...\n\nRestores the default security contexts for the given files.\n\n… 43 …-p PRI] [-t TAG] [MESSAGE...]\n\nLogs message (or stdin) to logcat.\n\n-p Use the given priority i… [all …]
|
/aosp_15_r20/external/toybox/android/device/generated/ |
H A D | help.h | 1 …-libc on a nommu system, you'll need to say \"y\" here\nunless you used the patch in the mcm-build… 9 … even when it has a built-in version of that command. This requires\n toybox symlinks to be … 13 #define HELP_toybox_zhelp "Compress help with gzip -9, deflating when displayed. This makes the\nbi… 15 …t --help argument in all commands, even ones with a NULL\noptstring. (Use TOYFLAG_NOHELP to disabl… 23 #define HELP_toybox_libcrypto "Use faster hash functions out of external -lcrypto library." 27 #define HELP_toybox_selinux "Include SELinux options in commands such as ls, and add\nSELinux-speci… 29 …ad use conventional unix security (and possibly\nLinux Containers) for a simple straightforward sy… 33 …--long | --help | --version | [COMMAND] [ARGUMENTS...]]\n\nWith no arguments, \"toybox\" shows ava… 41 …-D] [-F] [-R] [-n] [-v] FILE...\n\nRestores the default security contexts for the given files.\n\n… 43 …-p PRI] [-t TAG] [MESSAGE...]\n\nLogs message (or stdin) to logcat.\n\n-p Use the given priority i… [all …]
|
/aosp_15_r20/external/curl/tests/ |
H A D | servers.pm | 21 # SPDX-License-Identifier: curl 124 my %PORT = (nolisten => 47); # port we use for a local non-listening service 147 our $SOCKSIN="socksd-request.log"; # what curl sent to the SOCKS proxy 168 if( -x "$_/$cmd" . exe_ext('SYS') && ! -d "$_/$cmd" . exe_ext('SYS')) { 182 my $server = IO::Socket->new(LocalPort => 0, 189 return $server->sockport(); 197 my ($fh, $socks) = tempfile("curl-socksd-XXXXXXXX", TMPDIR => 1); 200 my ($f2, $http) = tempfile("curl-http-XXXXXXXX", TMPDIR => 1); 288 my $cmd = "$handle $dir -accepteula -nobanner"; 293 … if($tryhandle =~ /^(\S+)\s+pid:\s+(\d+)\s+type:\s+(\w+)\s+([0-9A-F]+):\s+(.+)\r\r/) { [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/securityhub/src/main/resources/codegen-resources/ |
H A 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 …ome Region. A configuration can refer to a configuration policy or to a self-managed configuration… 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-… 303 …r more details about cross-Region replication, see <a href=\"https://docs.aws.amazon.com/securityh… 710 … href=\"https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-settingup.html\">setu… [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/ecs/src/main/resources/codegen-resources/ |
H A D | service-2.json | 4 "apiVersion":"2014-11-13", 9 "serviceFullName":"Amazon EC2 Container Service", 13 "uid":"ecs-2014-11-13" 47 …service-linked role for your account. This is so that it can manage required resources in other Am… 68 …service drops below the <code>desiredCount</code>, Amazon ECS runs another copy of the task in the… 91 …service. This is used when a service uses the <code>EXTERNAL</code> deployment controller type. Fo… 136 … be used to remove a capacity provider from a service's capacity provider strategy. When updating … 173 …service within a cluster. You can delete a service if you have no running tasks in it and the desi… 189 …service's desired count.</p> <p>You can't use a <code>DELETE_IN_PROGRESS</code> task definition re… 210 …service. This is used when a service uses the <code>EXTERNAL</code> deployment controller type. Fo… [all …]
|
/aosp_15_r20/external/scapy/test/ |
H A D | regression.uts | 67 data["win_index"] = -1 68 data["guid"] = "{1XX00000-X000-0X0X-X00X-00XXXX000XXX}" 83 = Test read_routes6() - default output 92 # - one route if there is only the loopback interface 93 # - three routes if there is a network interface 110 = Test read_routes6() - check mandatory routes 229 interact(argv=["-s scapy1"] + extra_args, mybanner="What a test") 238 assert not interact_emulator(extra_args=["-?"]) # Failing 239 assert interact_emulator(extra_args=["-d"]) # Extended 308 = Test mysummary functions - Ether [all …]
|
/aosp_15_r20/prebuilts/qemu-kernel/mips/3.10/ |
HD | kernel-qemu | ... 8 4-a 8 @-a 8 L-a 8 \-a 8 l-a 8 x ... |
/aosp_15_r20/prebuilts/qemu-kernel/mips/ranchu/ |
H A D | kernel-qemu | ... ->comm, REC->pid, REC->group, REC->result X ^ "work ... |
/aosp_15_r20/prebuilts/qemu-kernel/mips/3.18/ |
HD | kernel-qemu2 | ... ->comm, REC->pid, REC->group, REC->result X ^ "work ... |
/aosp_15_r20/out/.module_paths/ |
D | files.db | 2 …oot/opengrok-1.13.29/src/aosp_15_r20","RootDirs":["."],"FollowSymlinks":false,"ExcludeDirs":[".git… 3 …-1.13.29/src/aosp_15_r20","Dirs":[{"P":"","T":1745562741781905629,"I":547973,"F":["Android.bp","lk… 4 …-1.13.29/src/aosp_15_r20","Dirs":[{"P":"cts/hostsidetests/usage/app/src/android/app","T":174556228… 5 …-1.13.29/src/aosp_15_r20","Dirs":[{"P":"developers/build/prebuilts/gradle/SynchronizedNotification… 6 …-1.13.29/src/aosp_15_r20","Dirs":[{"P":"device/google/atv/TvSampleLeanbackLauncher/src/main/java/c… 7 …-1.13.29/src/aosp_15_r20/external","Dirs":[{"P":"aws-sdk-java-v2/codegen/src/main/resources/softwa… 8 …-1.13.29/src/aosp_15_r20/external","Dirs":[{"P":"coreboot/src/mainboard/apple/macbookair4_2/acpi",… 9 …-1.13.29/src/aosp_15_r20/external","Dirs":[{"P":"eigen/unsupported/Eigen/src/SpecialFunctions/arch… 10 …-1.13.29/src/aosp_15_r20/external/google-cloud-java","Dirs":[{"P":"java-dataform/samples/snippets/… 11 …-1.13.29/src/aosp_15_r20/external","Dirs":[{"P":"google-cloud-java/java-webrisk/grpc-google-cloud-… [all …]
|
/aosp_15_r20/tools/deviceinfra/prebuilts/ |
D | ats_olc_server_local_mode_deploy.jar | ... META-INF/
META-INF/MANIFEST.MF
build-data.properties
com/
com/google ... |
D | ats_olc_server_deploy.jar | ... META-INF/
META-INF/MANIFEST.MF
build-data.properties
com/
com/google ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/services/core/services.core.unboosted/android_common/combined/ |
D | services.core.unboosted.jar | ... META-INF/
META-INF/MANIFEST.MF
android/
android/adpf ... |