Searched defs:adb_port (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/tools/android/forwarder2/
H A Dhost_controller.h43 int adb_port,
52 int adb_port() const { return adb_port_; } function in class:forwarder2::HostController
59 int adb_port,
H A Dhost_controller.cc24 int adb_port,
32 if (!adb_control_socket->ConnectTcp(std::string(), adb_port)) {
34 << adb_port;
51 device_port_allocated, host_port, adb_port, exit_notifier_fd,
70 int adb_port,
78 adb_port_(adb_port),
21 Create( int device_port, int host_port, int adb_port, int exit_notifier_fd, const ErrorCallback& error_callback) argument
67 HostController( int device_port, int host_port, int adb_port, int exit_notifier_fd, const ErrorCallback& error_callback, scoped_ptr<Socket> adb_control_socket, scoped_ptr<PipeNotifier> delete_controller_notifier) argument
H A Dhost_forwarder_main.cc124 static std::string MakeHostControllerMapKey(int adb_port, int device_port) { argument
125 return base::StringPrintf("%d:%d", adb_port, device_port);
154 controller->adb_port(), controller->device_port()),
162 const int adb_port = GetAdbPortForDevice(device_serial); local
163 if (adb_port < 0) {
173 adb_port, -device_port);
190 adb_port, device_port);
202 device_port, host_port, adb_port, GetExitNotifierFD(),
219 std::make_pair(MakeHostControllerMapKey(adb_port, device_port),
/external/chromium_org/chrome/test/chromedriver/server/
H A Dchromedriver_server.cc165 int adb_port,
176 adb_port,
216 int adb_port = 5037; local
256 &adb_port)) {
307 url_base, adb_port, port_server.Pass());
161 RunServer(int port, bool allow_remote, const std::vector<std::string>& whitelisted_ips, const std::string& url_base, int adb_port, scoped_ptr<PortServer> port_server) argument
H A Dhttp_handler.cc69 int adb_port,
80 adb_.reset(new AdbImpl(io_task_runner, adb_port));
65 HttpHandler( const base::Closure& quit_func, const scoped_refptr<base::SingleThreadTaskRunner> io_task_runner, const std::string& url_base, int adb_port, scoped_ptr<PortServer> port_server) argument
/external/qemu/android/
H A Dqemu-setup.c233 int adb_port = -1; local
251 if (opts->adb_port) {
274 adb_port = strtol( comma_location+1, &end, 0 );
281 if ( console_port == adb_port ) {
289 slirp_redir( 0, adb_port, guest_ip, 5555 );
291 adb_server_init(adb_port);
296 slirp_unredir( 0, adb_port );
323 adb_port = base_port + 1;
325 if ( slirp_redir( 0, adb_port, guest_ip, 5555 ) < 0 )
328 if (adb_server_init(adb_port))
[all...]

Completed in 1091 milliseconds