Home | History | Annotate | Download | only in jdwp

Lines Matching refs:JDWP

25 #include "jdwp/jdwp_priv.h"
32 * The JDWP <-> ADB transport protocol is explained in detail
35 * 1/ when the JDWP thread starts, it tries to connect to a Unix
36 * domain stream socket (@jdwp-control) that is opened by the
44 * a given JDWP debugger, that can be used to read the usual
45 * JDWP-handshake, etc...
48 #define kJdwpControlName "\0jdwp-control"
53 namespace JDWP {
120 * runs in the main thread, before the JDWP thread starts, so it shouldn't
124 VLOG(jdwp) << "ADB transport startup";
178 * JDWP thread.
239 VLOG(jdwp) << StringPrintf("PID sent as '%.*s' to ADB", 4, buff);
243 PLOG(ERROR) << "Weird, can't send JDWP process pid to ADB";
246 if (VLOG_IS_ON(jdwp)) {
262 VLOG(jdwp) << "trying to receive file descriptor from ADB";
275 VLOG(jdwp) << "received file descriptor " << clientSock << " from ADB";
339 VLOG(jdwp) << "+++ all fds are closed";
365 VLOG(jdwp) << "Got wake-up signal, bailing out of select";
388 VLOG(jdwp) << "+++ EINTR hit";
392 VLOG(jdwp) << "+++ peer disconnected";
429 VLOG(jdwp) << "+++ handshake complete";
443 } // namespace JDWP