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

  /external/chromium_org/tools/android/forwarder2/
host_controller.h 39 // If |device_port| is zero then a dynamic port is allocated (and retrievable
40 // through device_port() below).
41 static scoped_ptr<HostController> Create(int device_port,
54 int device_port() const { return device_port_; } function in class:forwarder2::HostController
57 HostController(int device_port,
host_forwarder_main.cc 105 int device_port,
114 base::Unretained(this), device_serial, device_port, host_port,
124 static std::string MakeHostControllerMapKey(int adb_port, int device_port) {
125 return base::StringPrintf("%d:%d", adb_port, device_port);
154 controller->adb_port(), controller->device_port()),
159 int device_port,
170 if (device_port < 0) {
173 adb_port, -device_port);
187 const bool use_dynamic_port_allocation = device_port == 0;
190 adb_port, device_port);
336 int device_port; variable
    [all...]
host_controller.cc 22 int device_port,
39 command::LISTEN, device_port, adb_control_socket.get());
46 LOG(ERROR) << "Device binding error using port " << device_port;
68 int device_port,
76 device_port_(device_port),
  /external/chromium_org/build/android/pylib/
forwarder.py 70 port_pairs: A list of tuples (device_port, host_port) to forward. Note
71 that you can specify 0 as a device_port, in which case a
93 ['--serial-id=' + device_serial, '--map', str(device_port),
94 str(host_port)] for device_port, host_port in port_pairs]
113 'expected "device_port:host_port"' % output)
114 device_port = int(tokens[0])
116 serial_with_port = (device_serial, device_port)
120 device_port, host_port)
123 def UnmapDevicePort(device_port, device):
128 device_port: A previously forwarded port (through Map())
    [all...]
ports.py 104 def IsDevicePortUsed(device, device_port, state=''):
109 device_port: Port on device we want to check.
116 base_url = '127.0.0.1:%d' % device_port
chrome_test_server_spawner.py 244 device_port = Forwarder.DevicePortForHostPort(self.host_port)
245 if device_port and _CheckDevicePortStatus(self.device, device_port):
247 self.forwarder_device_port = device_port
android_commands.py     [all...]
  /external/chromium_org/build/android/pylib/base/
base_test_runner.py 127 for (device_port, _) in port_pairs:
128 Forwarder.UnmapDevicePort(device_port, self.device)
135 host_port_pairs: A list of (device_port, local_port) tuples to forward.

Completed in 3283 milliseconds