HomeSort by relevance Sort by last modified time
    Searched defs:adb_port (Results 1 - 5 of 5) sorted by null

  /external/qemu/android/
qemu-setup.c 246 if (opts->adb_port) {
269 int adb_port = strtol( comma_location+1, &end, 0 ); local
276 if ( console_port == adb_port ) {
284 slirp_redir( 0, adb_port, guest_ip, 5555 );
286 adb_server_init(adb_port);
291 slirp_unredir( 0, adb_port );
  /bootable/recovery/minadbd/
adb.h 188 int adb_port; // Use for emulators (local transport) member in struct:atransport
267 atransport* find_emulator_transport_by_adb_port(int adb_port);
379 int local_connect_arbitrary_ports(int console_port, int adb_port);
  /system/core/adb/
adb.c 1116 int adb_port = strtol(port_separator, NULL, 0); local
1117 if (!(console_port > 0 && adb_port > 0)) {
1132 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
1135 "Emulator on port %d already registered.", adb_port);
1148 if (!local_connect_arbitrary_ports(console_port, adb_port)) {
1150 "Connected to emulator on ports %d,%d", console_port, adb_port);
1154 console_port, adb_port);
    [all...]
adb.h 193 int adb_port; // Use for emulators (local transport) member in struct:atransport
296 atransport* find_emulator_transport_by_adb_port(int adb_port);
430 int local_connect_arbitrary_ports(int console_port, int adb_port);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
AndroidDebugBridge.java 60 final static int ADB_PORT = 5037;
1091 int adb_port = determineAndValidateAdbPort(); local
    [all...]

Completed in 3706 milliseconds