HomeSort by relevance Sort by last modified time
    Searched refs:hostname (Results 376 - 400 of 1117) sorted by null

<<11121314151617181920>>

  /external/skia/experimental/Networking/
SkSockets.h 179 SkTCPClient(const char* hostname, int port = DEFAULT_PORT);
  /external/skqp/experimental/Networking/
SkSockets.h 179 SkTCPClient(const char* hostname, int port = DEFAULT_PORT);
  /external/toolchain-utils/automation/server/
job_executer.py 35 self.job.primary_machine.hostname,
82 cmd.RemoteCopyFrom(from_machine.hostname,
100 cmd.RemoteCopyFrom(self.job.primary_machine.hostname,
110 self.job.primary_machine.hostname, self.job.work_dir)
  /frameworks/base/core/java/android/net/
Proxy.java 78 // Hostname / IP REGEX validation
105 * user did not set a hostname it returns the default host.
215 * Validate syntax of hostname, port and exclusion list entries
218 public static int validate(String hostname, String port, String exclList) {
219 Matcher match = HOSTNAME_PATTERN.matcher(hostname);
226 if (hostname.length() > 0 && port.length() == 0) return PROXY_PORT_EMPTY;
229 if (hostname.length() == 0) return PROXY_HOSTNAME_EMPTY;
  /hardware/interfaces/gnss/1.0/default/
AGnss.h 56 const hidl_string& hostname, int32_t port) override;
  /hardware/qcom/gps/msm8909w_3100/android/
AGnss.h 60 const hidl_string& hostname, int32_t port) override;
  /hardware/qcom/gps/msm8998/android/
AGnss.h 60 const hidl_string& hostname, int32_t port) override;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
WifiConfigHelper.java 101 * validate syntax of hostname and port entries
105 public static int validate(String hostname, String port, String exclList) {
106 Matcher match = HOSTNAME_PATTERN.matcher(hostname);
116 if (hostname.length() > 0 && port.length() == 0) {
121 if (hostname.length() == 0) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
nfs_mount.h 40 char hostname[NFS_MAXNAMLEN + 1]; /* 1 */ member in struct:nfs_mount_data
  /system/core/fastboot/
socket.h 55 // Creates a new client connection. Clients are connected to a specific hostname/port and can
58 static std::unique_ptr<Socket> NewClient(Protocol protocol, const std::string& hostname,
  /test/vti/test_serving/gae/webapp/src/scheduler/
job_heartbeat.py 60 "[hostname]{} [device]{} [test_name]{}".format(
61 job.hostname, job.device, job.test_name))
periodic.py 125 new_job.hostname = target_host
251 a string which represents hostname,
273 (lab.hostname, target_product_type))
276 model.DeviceModel.hostname == lab.hostname)
291 if device.hostname not in available_devices:
292 available_devices[device.hostname] = set()
293 available_devices[device.hostname].add(
  /external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/
FakeHttpLayer.java 352 private String method, hostname, path; field in class:FakeHttpLayer.RequestMatcherBuilder
374 public RequestMatcherBuilder host(String hostname) {
375 this.hostname = hostname;
413 if (hostname != null && !hostname.equals(uri.getHost())) {
454 return hostname;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
getaddrinfo.c 141 "address family for hostname not supported.", /* EAI_ADDRFAMILY */
147 "no address associated with hostname.", /* EAI_NODATA */
148 "hostname nor servname provided, or not known.",/* EAI_NONAME */
236 getaddrinfo(const char*hostname, const char*servname,
276 if (hostname == NULL && servname == NULL)
379 * hostname == NULL.
383 if (hostname == NULL) {
413 /* hostname as numeric name */
415 if (inet_pton(gai_afdl[i].a_af, hostname, pton)) {
465 /* hostname as alphabetical name */
    [all...]
  /external/autotest/client/cros/chameleon/
chameleon.py 114 def __init__(self, hostname, port=CHAMELEON_PORT, proxy_generator=None,
118 @param hostname: Hostname the chameleond process is running.
126 self._hostname = hostname
131 # of arguments (hostname and port) would be delayed until run time
146 @param hostname: Hostname the chameleond process is running.
247 output_dir, self.host.hostname)
248 log_dir = os.path.join(output_dir, 'chameleond', self.host.hostname)
918 """Given a DUT's hostname, returns the hostname of its Chameleon
    [all...]
  /external/autotest/contrib/
compare_suite.py 27 AUTOTEST_SERVER = CONFIG.get_config_value('SERVER', 'hostname', type=str)
30 JOB_URL = LOG_BASE_URL + '%(job_id)s-%(owner)s/%(hostname)s'
31 LOG_PATH_FMT = 'hosts/%(hostname)s/%(task_id)d-%(taskname)s'
38 # A cache of special tasks, hostname:[task]
46 hosts/hostname/job_id-repair/debug/autoserv.DEBUG.
76 self.hostname = task.host.hostname
80 'hostname': self.hostname}
123 self.hostname = self.tko_job.machine.hostnam
    [all...]
  /external/autotest/site_utils/
test_push.py 117 URL_HOST = CONFIG.get_config_value('SERVER', 'hostname', type=str)
175 def powerwash_dut_to_test_repair(hostname, timeout):
178 @param hostname: hostname of the dut.
186 control_type='Server', control_file=c, hosts=[hostname])
194 (hostname, timeout))
198 AFE.reverify_hosts(hostnames=[hostname])
204 hosts = [h.hostname for h in AFE.get_hosts()]
323 powerwash_dut_to_test_repair(host.hostname, timeout=420)
389 hostnames = set([hqe.host.hostname for hqe in hqes]
    [all...]
rpc_flight_recorder.py 34 def afe_rpc_call(hostname):
37 @param hostname: server's hostname to poll
39 afe_monitor = AfeMonitor(hostname)
44 fields={'target_hostname': hostname})
207 def __init__(self, hostname):
209 @param hostname: hostname of server to monitor, string
211 self._hostname = hostname
  /external/python/cpython2/Modules/
getaddrinfo.c 141 "address family for hostname not supported.", /* EAI_ADDRFAMILY */
147 "no address associated with hostname.", /* EAI_NODATA */
148 "hostname nor servname provided, or not known.",/* EAI_NONAME */
236 getaddrinfo(const char*hostname, const char*servname,
276 if (hostname == NULL && servname == NULL)
379 * hostname == NULL.
383 if (hostname == NULL) {
413 /* hostname as numeric name */
415 if (inet_pton(gai_afdl[i].a_af, hostname, pton)) {
465 /* hostname as alphabetical name *
    [all...]
  /external/python/cpython3/Modules/
getaddrinfo.c 141 "address family for hostname not supported.", /* EAI_ADDRFAMILY */
147 "no address associated with hostname.", /* EAI_NODATA */
148 "hostname nor servname provided, or not known.",/* EAI_NONAME */
236 getaddrinfo(const char*hostname, const char*servname,
276 if (hostname == NULL && servname == NULL)
379 * hostname == NULL.
383 if (hostname == NULL) {
413 /* hostname as numeric name */
415 if (inet_pton(gai_afdl[i].a_af, hostname, pton)) {
465 /* hostname as alphabetical name *
    [all...]
  /external/autotest/frontend/tko/
rpc_interface.py 290 'test_name', 'hostname', 'machine_idx').distinct()
292 hostname = result_dict['hostname']
295 host_info.setdefault(hostname, {})
296 host_info[hostname].setdefault('tests', [])
297 host_info[hostname]['tests'].append(test)
298 host_info[hostname]['id'] = machine_idx
467 ['Hostname', 'hostname'],
  /external/autotest/server/cros/dynamic_suite/
job_status.py 215 job.id, job.owner, s.hostname, job.name,
224 job.owner, s.hostname, job.name,
269 end_time_str=None, job_id=None, owner=None, hostname=None,
283 @param hostname: The name of the host the test that generated this
295 self._hostname = hostname
445 def hostname(self): member in class:Status
  /external/autotest/server/cros/
host_lock_manager_unittest.py 80 self.afe.get_hosts(hostname=self.HOST1).AndReturn(None)
89 self.afe.get_hosts(hostname=self.HOST1).AndReturn(host_info)
98 self.afe.get_hosts(hostname=self.HOST1).AndReturn(host_info)
107 self.afe.get_hosts(hostname=self.HOST1).AndReturn(host_info)
117 self.afe.get_hosts(hostname=self.HOST1).AndReturn(host_info)
  /external/autotest/server/hosts/
ssh_host.py 51 def _initialize(self, hostname, *args, **dargs):
56 hostname: network hostname or address of remote machine
58 super(SSHHost, self)._initialize(hostname=hostname, *args, **dargs)
81 return "%s %s" % (base_cmd, self.hostname)
442 host.login(self.hostname, self.user, self.password,
  /external/libxml2/
nanohttp.c 126 char *hostname; /* the host name */ member in struct:xmlNanoHTTPCtxt
295 if (ctxt->hostname != NULL) {
296 xmlFree(ctxt->hostname);
297 ctxt->hostname = NULL;
323 ctxt->hostname = (char *) xmlCharStrndup(uri->server + 1, len -2);
325 ctxt->hostname = xmlMemStrdup(uri->server);
327 ctxt->hostname = xmlMemStrdup(uri->server);
426 if (ctxt->hostname != NULL) xmlFree(ctxt->hostname);
802 xmlStrcat(tmp_http, (const xmlChar *) ctxt->hostname);
    [all...]

Completed in 546 milliseconds

<<11121314151617181920>>