Searched refs:connect (Results 1 - 4 of 4) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_adb.cc35 * 1/ when the JDWP thread starts, it tries to connect to a Unix
177 * Block forever, waiting for a debugger to connect to us. Called from the
215 * connect() will fail. We loop here forever waiting for it
225 int ret = connect(control_sock_, &control_addr_.controlAddrPlain, control_addr_len_);
247 PLOG(ERROR) << "Can't connect to ADB control socket";
H A Djdwp_socket.cc96 LOG(INFO) << "JDWP will " << (options->server ? "listen" : "connect") << " on port " << port;
311 * Try to connect.
313 if (connect(clientSock, &addr.addrPlain, sizeof(addr)) != 0) {
314 PLOG(ERROR) << "Unable to connect to " << inet_ntoa(addr.addrInet.sin_addr) << ":" << ntohs(addr.addrInet.sin_port);
/art/runtime/
H A Ddebugger.h661 static void DdmBroadcast(bool connect) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
H A Ddebugger.cc543 * timeout: how long to wait for debugger to connect / listen
546 * onthrow=<exception-name>: connect to debugger when exception thrown
547 * onuncaught=y|n: connect to debugger when uncaught exception thrown
652 // Init JDWP if the debugger is enabled. This may connect out to a
3940 void Dbg::DdmBroadcast(bool connect) { argument
3941 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
3950 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;

Completed in 825 milliseconds