HomeSort by relevance Sort by last modified time
    Searched refs:host_port (Results 1 - 23 of 23) sorted by null

  /external/chromium-trace/catapult/telemetry/telemetry/internal/forwarders/
__init__.py 37 def host_port(self): member in class:Forwarder
50 assert self.host_ip and self.host_port
51 return 'http://%s:%i' % (self.host_ip, self.host_port)
cros_forwarder.py 41 lambda: self._cri.IsHTTPServerRunningOnPort(self.host_port), 60)
42 logging.debug('Server started on %s:%d', self.host_ip, self.host_port)
56 def host_port(self): member in class:CrOsSshForwarder
  /external/chromium-trace/catapult/devil/devil/android/
forwarder.py 71 port_pairs: A list of tuples (device_port, host_port) to forward. Note
93 '--map', str(device_port), str(host_port)]
94 for device_port, host_port in port_pairs]
122 'expected "device_port:host_port"' % output)
124 host_port = int(tokens[1])
126 instance._device_to_host_port_map[serial_with_port] = host_port
127 instance._host_to_device_port_map[host_port] = serial_with_port
129 device_port, host_port)
148 port_pairs: A list of tuples (device_port, host_port) to unmap.
166 def DevicePortForHostPort(host_port)
    [all...]
ports.py 84 def IsHostPortAvailable(host_port):
88 host_port: Port on host to check.
96 s.bind(('', host_port))
  /external/v8/build/android/pylib/
chrome_test_server_spawner.py 122 self.host_port = self.arguments['port']
123 assert isinstance(self.host_port, int)
136 by self.pipe_out. It is written as a result to |self.host_port|.
141 assert self.host_port == 0 and self.pipe_out and self.pipe_in
167 self.host_port = port_json['port']
168 return _CheckPortNotAvailable(self.host_port)
190 assert self.host_port == args_copy['port']
191 if self.host_port == 0:
244 self.is_ready = _CheckPortNotAvailable(self.host_port)
246 forwarder.Forwarder.Map([(0, self.host_port)], self.device, self.tool
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
devtools_http.py 42 host_port = '127.0.0.1:%i' % self._devtools_port
43 self._conn = httplib.HTTPConnection(host_port, timeout=timeout)
  /tools/test/connectivity/acts/framework/acts/controllers/
adb.py 136 def tcp_forward(self, host_port, device_port):
140 host_port: Port number to use on the computer.
143 self.forward("tcp:{} tcp:{}".format(host_port, device_port))
android_device.py 295 def __init__(self, serial="", host_port=None, device_port=8080,
298 self.h_port = host_port
  /external/autotest/client/tests/kvm/deps/
heartbeat_slu.py 146 host_port = 9001 variable
172 host_port = int(value)
202 run_server(host_address, host_port, is_daemon, file_server, queue_size, threshold, check_drift)
205 run_client(host_address, host_port, is_daemon, file_client, interval)
  /external/curl/lib/
http_proxy.c 132 char *host_port; local
150 host_port = aprintf("%s:%hu", hostname, remote_port);
151 if(!host_port) {
157 result = Curl_http_output_auth(conn, "CONNECT", host_port, TRUE);
159 free(host_port);
  /external/libweave/src/notification/
xmpp_channel.cc 291 std::pair<std::string, std::string> host_port = local
293 CHECK(!host_port.first.empty());
294 CHECK(!host_port.second.empty());
296 CHECK(base::StringToUint(host_port.second, &port)) << xmpp_endpoint_;
298 network_->OpenSslSocket(host_port.first, port,
  /external/autotest/client/virt/
kvm_vm.py 294 for host_port, guest_port in hostfwd:
295 cmd += ",hostfwd=tcp::%s-:%s" % (host_port, guest_port)
315 def add_tcp_redir(help, host_port, guest_port):
320 return " -redir tcp:%s::%s" % (host_port, guest_port)
452 host_port = vm.redirs.get(guest_port)
453 redirs += [(host_port, guest_port)]
543 for host_port, guest_port in redirs:
544 qemu_cmd += add_tcp_redir(help, host_port, guest_port)
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/core/
memory_cache_http_server.py 155 def __init__(self, host_port, handler, paths):
156 BaseHTTPServer.HTTPServer.__init__(self, host_port, handler)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
android_platform_backend.py 481 def ForwardHostToDevice(self, host_port, device_port):
482 self._device.adb.Forward('tcp:%d' % host_port, device_port)
484 def StopForwardingHost(self, host_port):
487 if line[0] == self._device and line[1] == 'tcp:%s' % host_port:
488 self._device.adb.ForwardRemove('tcp:%d' % host_port)
492 host_port, self._device)
  /system/connectivity/shill/vpn/
openvpn_driver.cc 623 string host_name, host_port; local
624 if (SplitPortFromHost(vpnhost, &host_name, &host_port)) {
626 DCHECK(!host_port.empty());
627 AppendOption("remote", host_name, host_port, options);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/
__init__.py     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python3/httplib2/
__init__.py 756 ident, host_port = url[1].split('@', 1)
762 host_port = url[1]
763 if ':' in host_port:
764 host, port = host_port.split(':', 1)
766 host = host_port
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
gcs_json_api.py 209 self.host_port = ''
211 self.host_port = ':' + config.get('Credentials', 'gs_json_port')
215 self.url_base = (self.http_base + self.host_base + self.host_port + '/' +
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
urllib.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
urllib.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib.py     [all...]
  /external/chromium-trace/catapult/third_party/WebOb/webob/
request.py 410 def host_port(self): member in class:BaseRequest
    [all...]

Completed in 2208 milliseconds