Searched refs:port (Results 1 – 3 of 3) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_socket.cc | 64 static JdwpSocketState* SocketStartup(JdwpState* state, uint16_t port, bool probe); 70 uint16_t port = options->port; in InitSocketTransport() local 73 if (options->port != 0) { in InitSocketTransport() 75 state->netState = SocketStartup(state, port, false); in InitSocketTransport() 78 for (port = kBasePort; port <= kMaxPort; port++) { in InitSocketTransport() 79 state->netState = SocketStartup(state, port, true); in InitSocketTransport() 86 LOG(ERROR) << "JDWP net startup failed (req port=" << options->port << ")"; in InitSocketTransport() 94 LOG(INFO) << "JDWP will wait for debugger on port " << port; in InitSocketTransport() 96 LOG(INFO) << "JDWP will " << (options->server ? "listen" : "connect") << " on port " << port; in InitSocketTransport() 114 static JdwpSocketState* SocketStartup(JdwpState* state, uint16_t port, bool probe) { in SocketStartup() argument [all …]
|
D | jdwp.h | 107 uint16_t port; member
|
/art/runtime/ |
D | debugger.cc | 596 uint64_t port = strtoul(port_string.c_str(), &end, 10); in ParseJdwpOption() local 597 if (*end != '\0' || port > 0xffff) { in ParseJdwpOption() 601 gJdwpOptions.port = port; in ParseJdwpOption() 634 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) { in ParseJdwpOptions()
|