/external/cronet/tot/net/dns/ |
D | dns_hosts_unittest.cc | 149 DnsHosts hosts; in TEST() local 155 DnsHosts hosts; in TEST() local 161 DnsHosts hosts; in TEST() local 167 DnsHosts hosts; in TEST() local 173 DnsHosts hosts; in TEST() local 179 DnsHosts hosts; in TEST() local 185 DnsHosts hosts; in TEST() local 191 DnsHosts hosts; in TEST() local 197 DnsHosts hosts; in TEST() local
|
D | dns_config_service_unittest.cc | 106 DnsHosts hosts; in MakeHosts() local 363 DnsHosts hosts = { in TEST_F() local 389 DnsHosts hosts = { in TEST_F() local 419 DnsHosts hosts = { in TEST_F() local 445 DnsHosts hosts = { in TEST_F() local 470 DnsHosts hosts = { in TEST_F() local 507 DnsHosts hosts = { in TEST_F() local
|
D | host_resolver_internal_result.h | 137 const std::vector<HostPortPair>& hosts() const { return hosts_; } in hosts() function 138 void set_hosts(std::vector<HostPortPair> hosts) { hosts_ = std::move(hosts); } in set_hosts()
|
D | test_dns_config_service.h | 41 void OnHostsRead(const DnsHosts& hosts) { in OnHostsRead()
|
/external/cronet/stable/net/dns/ |
D | dns_hosts_unittest.cc | 149 DnsHosts hosts; in TEST() local 155 DnsHosts hosts; in TEST() local 161 DnsHosts hosts; in TEST() local 167 DnsHosts hosts; in TEST() local 173 DnsHosts hosts; in TEST() local 179 DnsHosts hosts; in TEST() local 185 DnsHosts hosts; in TEST() local 191 DnsHosts hosts; in TEST() local 197 DnsHosts hosts; in TEST() local
|
D | dns_config_service_unittest.cc | 106 DnsHosts hosts; in MakeHosts() local 363 DnsHosts hosts = { in TEST_F() local 389 DnsHosts hosts = { in TEST_F() local 419 DnsHosts hosts = { in TEST_F() local 445 DnsHosts hosts = { in TEST_F() local 470 DnsHosts hosts = { in TEST_F() local 507 DnsHosts hosts = { in TEST_F() local
|
D | host_resolver_internal_result.h | 137 const std::vector<HostPortPair>& hosts() const { return hosts_; } in hosts() function 138 void set_hosts(std::vector<HostPortPair> hosts) { hosts_ = std::move(hosts); } in set_hosts()
|
D | test_dns_config_service.h | 41 void OnHostsRead(const DnsHosts& hosts) { in OnHostsRead()
|
/external/autotest/server/cros/tradefed/ |
D | tradefed_prerequisite.py | 10 def bluetooth(hosts): argument 24 def region_us(hosts): argument 41 def check(prereq, hosts): argument
|
D | adb.py | 73 def get_adb_targets(hosts): argument
|
/external/autotest/server/cros/ |
D | host_lock_manager.py | 47 def locked_hosts(self, hosts): argument 101 def lock(self, hosts, lock_reason='Locked by HostLockManager'): argument 118 def unlock(self, hosts=None): argument 141 def _host_modifier(self, hosts, operation, lock_reason=None): argument
|
/external/openthread/tests/toranj/cli/ |
D | test-501-multi-br-failure-recovery.py | 158 hosts = br1.srp_server_get_hosts() variable 194 hosts = br2.srp_server_get_hosts() variable
|
D | test-502-multi-br-leader-failure-recovery.py | 158 hosts = br1.srp_server_get_hosts() variable 194 hosts = br2.srp_server_get_hosts() variable
|
D | test-400-srp-client-server.py | 105 hosts = server.srp_server_get_hosts() variable
|
/external/autotest/frontend/afe/ |
D | frontend_test_utils.py | 89 def _create_job(self, hosts=[], metahosts=[], priority=0, active=False, argument 157 def _create_job_simple(self, hosts, use_metahost=False, argument
|
D | rpc_interface.py | 165 def add_label_to_hosts(id, hosts): argument 186 def _create_label_everywhere(id, hosts): argument 234 def label_add_hosts(id, hosts): argument 258 def remove_label_from_hosts(id, hosts): argument 276 def label_remove_hosts(id, hosts): argument 806 def acl_group_add_hosts(id, hosts): argument 814 def acl_group_remove_hosts(id, hosts): argument 962 hosts=(), argument 1094 def _call_special_tasks_on_hosts(task, hosts): argument
|
/external/cronet/tot/base/android/junit/src/org/chromium/base/ |
D | UnownedUserDataKeyTest.java | 69 public void assertDetachedHostsMatch(UnownedUserDataHost... hosts) { in assertDetachedHostsMatch() 71 assertArrayEquals(mDetachedHosts.toArray(), hosts); in assertDetachedHostsMatch() local 80 public void assertDetachedHostsMatchAnyOrder(UnownedUserDataHost... hosts) { in assertDetachedHostsMatchAnyOrder()
|
/external/cronet/stable/base/android/junit/src/org/chromium/base/ |
D | UnownedUserDataKeyTest.java | 69 public void assertDetachedHostsMatch(UnownedUserDataHost... hosts) { in assertDetachedHostsMatch() 71 assertArrayEquals(mDetachedHosts.toArray(), hosts); in assertDetachedHostsMatch() local 80 public void assertDetachedHostsMatchAnyOrder(UnownedUserDataHost... hosts) { in assertDetachedHostsMatchAnyOrder()
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
D | Args2.java | 41 public List hosts = new ArrayList(); field in Args2
|
/external/autotest/frontend/client/src/autotest/afe/ |
D | HostSelector.java | 47 public List<String> hosts = new ArrayList<String>(); field in HostSelector.HostSelection 156 List<String> hosts = Utils.splitListWithSpaces(display.getHostnameField().getText()); in onAddByHostname() local 161 public void setSelectedHostnames(final List<String> hosts, final boolean allowOneTimeHosts) { in setSelectedHostnames()
|
/external/flatbuffers/swift/Sources/FlatBuffers/ |
D | Enum.swift | 27 /// The current value the enum hosts enum
|
/external/autotest/client/common_lib/ |
D | barrier.py | 494 def rendezvous(self, *hosts, **dargs): 523 def rendezvous_servers(self, mainid, *hosts, **dargs):
|
/external/autotest/server/site_tests/hardware_StorageQualCheckSetup/ |
D | hardware_StorageQualCheckSetup.py | 32 def _group_hosts_into_pools(self, hosts): argument
|
/external/rust/android-crates-io/crates/tokio/tests/ |
D | net_lookup_host.rs | 28 let mut hosts = net::lookup_host("localhost:3000").await?; in resolve_dns() localVariable
|
/external/autotest/server/ |
D | profilers.py | 151 def _get_all_failure_logs(self, test, hosts): argument 171 def _run_clients(self, test, hosts): argument
|