HomeSort by relevance Sort by last modified time
    Searched refs:kJdwpHandshake (Results 1 - 3 of 3) sorted by null

  /art/adbconnection/
adbconnection.cc 65 static constexpr const char kJdwpHandshake[14] = {
790 if (res < 0 || avail < sizeof(kJdwpHandshake)) {
799 char handshake_msg[sizeof(kJdwpHandshake)];
804 if (res < static_cast<int>(sizeof(kJdwpHandshake)) ||
805 strncmp(handshake_msg, kJdwpHandshake, sizeof(kJdwpHandshake)) != 0) {
815 kJdwpHandshake,
816 sizeof(kJdwpHandshake),
818 if (res < static_cast<int>(sizeof(kJdwpHandshake))) {
    [all...]
  /art/dt_fd_forward/
dt_fd_forward.h 62 static constexpr const char kJdwpHandshake[14] = {
dt_fd_forward.cc 374 char handshake_recv[sizeof(kJdwpHandshake)];
378 strncmp(handshake_recv, kJdwpHandshake, sizeof(kJdwpHandshake)) != 0) {
385 res = WriteFullyWithoutChecks(kJdwpHandshake, sizeof(kJdwpHandshake));

Completed in 190 milliseconds