Searched refs:port (Results 1 - 3 of 3) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_socket.cc64 static JdwpSocketState* SocketStartup(JdwpState* state, uint16_t port, bool probe);
70 uint16_t port = options->port; local
73 if (options->port != 0) {
74 /* try only the specified port */
75 state->netState = SocketStartup(state, port, false);
78 for (port = kBasePort; port <= kMaxPort; port++) {
79 state->netState = SocketStartup(state, port, tru
114 SocketStartup(JdwpState* state, uint16_t port, bool probe) argument
[all...]
H A Djdwp.h107 uint16_t port; member in struct:art::JDWP::JdwpOptions
122 * Among other things, this binds to a port to listen for a connection from
/art/runtime/
H A Ddebugger.cc541 * address: for dt_socket, "host:port", or just "port" when listening
581 /* this is either <port> or <host>:<port> */
592 LOG(ERROR) << "JDWP address missing port: " << value;
596 uint64_t port = strtoul(port_string.c_str(), &end, 10); local
597 if (*end != '\0' || port > 0xffff) {
598 LOG(ERROR) << "JDWP address has junk in port field: " << value;
601 gJdwpOptions.port = port;
[all...]

Completed in 48 milliseconds