Searched defs:reply (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/
H A DDdm.cpp33 * Returns "true" if we have a reply. The reply buffer is newly allocated,
36 * TODO: we currently assume that the request and reply include a single
121 ALOGV("DDM reply: type=0x%08x data=%p offset=%d length=%d",
127 ALOGW("WARNING: chunk off=%d len=%d exceeds reply array len %d",
132 u1* reply; local
133 reply = (u1*) malloc(length + kChunkHdrLen);
134 if (reply == NULL) {
138 set4BE(reply + 0, type);
139 set4BE(reply
[all...]
/dalvik/vm/jdwp/
H A DJdwpAdb.cpp434 bool reply; local
443 reply = true;
446 reply = false;
454 if (!reply) {
466 ALOGE("Failed sending reply to debugger: %s", strerror(errno));
471 ALOGW("No reply created for set=%d cmd=%d", cmdSet, cmd);
475 ALOGV("reply?!");
H A DJdwpSocket.cpp552 bool reply;
561 reply = true;
564 reply = false;
572 reply ? "reply" : "req",
590 bool reply; local
601 reply = true;
604 reply = false;
612 if (!reply) {
624 ALOGE("Failed sending reply t
[all...]

Completed in 1726 milliseconds