HomeSort by relevance Sort by last modified time
    Searched refs:host_name (Results 1 - 25 of 50) sorted by null

1 2

  /external/netperf/src/
netperf.c 134 printf("remotehost is %s and port %s\n",host_name,test_port);
140 establish_control(host_name,test_port,address_family,
153 send_tcp_stream(host_name);
156 send_tcp_maerts(host_name);
159 send_tcp_mss(host_name);
163 send_exs_tcp_stream(host_name);
168 sendfile_tcp_stream(host_name);
172 send_tcp_rr(host_name);
175 send_tcp_conn_rr(host_name);
178 send_tcp_cc(host_name);
    [all...]
netsh.c 104 host_name[HOSTNAMESIZE] = "", /* remote host name or ip addr */ variable
957 strncpy(host_name,arg1,sizeof(host_name));
1055 if ('\0' == host_name[0]) {
1056 /* host_name was not set */
1062 strcpy(host_name,"localhost");
1073 strcpy(host_name,"localhost");
1077 strcpy(host_name,"::1");
1088 strcpy(host_name,"::1");
1101 ai = resolve_host(host_name, NULL, address_family)
    [all...]
netsh.h 12 #define HOST_NAME "127.0.0.1"
83 extern char host_name[HOSTNAMESIZE];/* remote host name or ip addr */
  /external/dhcpcd-6.8.2/
dhcpcd.conf 33 option domain_name_servers, domain_name, domain_search, host_name, wpad_url
  /external/autotest/server/cros/clique_lib/
clique_dut_locker.py 30 @attribute host_name: String representing the host name corresponding to
34 def __init__(self, board_name=None, host_name=None):
39 @param host_name: String representing the host name corresponding to
43 self.host_name = host_name
50 self.host_name)
144 def _allocate_dut(self, host_name=None, board_name=None):
150 @param host_name: Host name for the DUT.
156 if host_name:
157 if self.lock_manager.lock([host_name])
    [all...]
  /external/autotest/server/cros/ap_configurators/
ap_batch_locker.py 46 self.configurator.host_name,
131 if not utils.host_is_in_lab_zone(ap_locker.configurator.host_name):
135 if self.manager.lock([ap_locker.configurator.host_name]):
137 logging.info('locked %s', ap_locker.configurator.host_name)
144 ap_locker.configurator.host_name)
147 ap_locker.configurator.host_name)
168 logging.info('checking %s', ap_locker.configurator.host_name)
179 ap.configurator.host_name)
181 [ap.configurator.host_name for ap in self.aps_to_lock])
197 def unlock_one_ap(self, host_name)
    [all...]
ap_configurator_factory_unittest.py 32 host_name='mock_ap',
51 self.host_name = host_name
80 def host_name(self): member in class:APConfiguratorFactoryTest.MockAp
82 return self.host_name
120 host_name='chromeos3-row2-rack1-host1',
136 host_name='chromeos3-row2-rack1-host2',
146 host_name='chromeos3-row7-rack1-host2',
ap_configurator_factory.py 349 if ap.host_name in hostnames:
350 logging.info('Found AP by hostname %s', ap.host_name)
400 if want_chamber_aps and ap.host_name in chamber_aps:
403 if not want_chamber_aps and ap.host_name not in chamber_aps:
static_ap_configurator.py 46 self.host_name = ap_config.get_wan_host()
48 self.pdu = re.sub('host\d+', 'rpm1', self.host_name) + '.cros'
106 [self.host_name, 'OFF']))
114 [self.host_name, 'ON']))
dynamic_ap_configurator.py 60 self.host_name = ap_config.get_wan_host()
62 self.pdu = re.sub('host\d+', 'rpm1', self.host_name) + '.cros'
484 self.rpm_client.queue_request(self.host_name, 'OFF')
497 self.rpm_client.queue_request(self.host_name, 'OFF')
516 self.rpm_client.queue_request(self.host_name, 'ON')
543 self.rpm_client.queue_request(self.host_name, 'CYCLE')
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_resolver_iterator.hpp 72 const std::string& host_name, const std::string& service_name)
78 std::string actual_host_name = host_name;
107 const std::string& host_name, const std::string& service_name)
113 endpoint, host_name, service_name));
121 const std::string& host_name, const std::string& service_name)
131 *ep_iter, host_name, service_name));
basic_resolver_entry.hpp 69 std::string host_name() const function in class:asio::ip::basic_resolver_entry
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
resolver_service.hpp 59 socket_ops::getaddrinfo(query.host_name().c_str(),
64 address_info, query.host_name(), query.service_name());
89 char host_name[NI_MAXHOST]; local
92 host_name, NI_MAXHOST, service_name, NI_MAXSERV,
96 endpoint, host_name, service_name);
resolve_endpoint_op.hpp 65 char host_name[NI_MAXHOST]; local
68 o->endpoint_.size(), host_name, NI_MAXHOST, service_name, NI_MAXSERV,
70 o->iter_ = iterator_type::create(o->endpoint_, host_name, service_name);
resolve_op.hpp 74 o->query_.host_name().c_str(), o->query_.service_name().c_str(),
100 o->query_.host_name(), o->query_.service_name());
  /system/netd/tests/
netd_test.cpp 278 const char* host_name = "hello.example.com."; local
281 dns.addMapping(host_name, ns_type::ns_t_a, "1.2.3.3");
296 EXPECT_EQ(1U, GetNumQueriesForType(dns, ns_type::ns_t_a, host_name));
377 const char* host_name = "howdy.example.com."; local
380 dns.addMapping(host_name, ns_type::ns_t_a, "1.2.3.4");
381 dns.addMapping(host_name, ns_type::ns_t_aaaa, "::1.2.3.4");
386 dns2.addMapping(host_name, ns_type::ns_t_a, "1.2.3.4");
387 dns2.addMapping(host_name, ns_type::ns_t_aaaa, "::1.2.3.4");
397 size_t found = GetNumQueries(dns, host_name);
412 found = GetNumQueries(dns, host_name);
453 const char* host_name = "hola.example.com."; local
477 const char* host_name = "nihao.example2.com."; local
502 const char* host_name = "ohayou.example.com."; local
553 const char* host_name = "konbanha.example.com."; local
705 const char* host_name = "tlsmissing.example.com."; local
836 const char* host_name = "tlsfingerprint.example.com."; local
869 const char* host_name = "badtlsfingerprint.example.com."; local
908 const char* host_name = "twotlsfingerprints.example.com."; local
1049 const char* host_name = "addrinfotls.example.com."; local
    [all...]
  /external/autotest/client/site_tests/platform_DBusMachineIdRotation/
platform_DBusMachineIdRotation.py 88 host_name = avahi_utils.avahi_get_hostname()
89 if host_name != machine_id:
  /tools/test/connectivity/acts/framework/acts/controllers/utils_lib/ssh/
formatter.py 132 host_name = self.format_host_name(settings)
135 base_command = [executable] + all_options + [host_name]
  /external/autotest/server/cros/network/
chaos_clique_utils.py 204 batch_locker.unlock_one_ap(ap.host_name)
226 tag = ap.host_name + '_PDU'
230 tag = ap.host_name
242 batch_locker.unlock_one_ap(ap.host_name)
  /external/toybox/toys/pending/
bootchartd.c 210 char host_name[32]; local
219 gethostname(host_name, sizeof(host_name));
225 fprintf(hdr_fp, "title = Boot chart for %s (%s)\n", host_name, toybuf);
arp.c 259 char *host_name = "?"; local
273 if (!ip_to_host(&sa, NI_NAMEREQD)) host_name = toybuf;
277 printf("%s (%s) at" , host_name, ip);
  /external/ltp/
ltpmenu 321 host_name=" "
377 host_name=$(cat /tmp/runltp.out.$$ | awk '{print $1}') ;
379 RHOST=$host_name ;
  /external/ltp/testcases/network/rpc/basic_tests/rpc01/
rpc1.c 18 char host_name[100]; variable
103 gethostname(host_name, 100);
104 if ((hp = gethostbyname(host_name)) != NULL)
  /external/curl/lib/vtls/
schannel.c 124 TCHAR *host_name; local
344 host_name = Curl_convert_UTF8_to_tchar(hostname);
345 if(!host_name)
356 &connssl->cred->cred_handle, NULL, host_name, connssl->req_flags, 0, 0,
361 Curl_unicodefree(host_name);
414 TCHAR *host_name; local
519 host_name = Curl_convert_UTF8_to_tchar(hostname);
520 if(!host_name)
527 host_name, connssl->req_flags, 0, 0, &inbuf_desc, 0, NULL,
530 Curl_unicodefree(host_name);
1406 TCHAR *host_name; local
    [all...]
  /external/boringssl/src/ssl/test/
test_config.h 54 std::string host_name; member in struct:TestConfig

Completed in 993 milliseconds

1 2