Home | History | Annotate | Download | only in jdwp

Lines Matching refs:clientSock

81     if (clientSock != -1) {
82 shutdown(clientSock, SHUT_RDWR);
83 close(clientSock);
104 local_clientSock = this->clientSock;
106 this->control_sock_ = this->clientSock = -1;
310 clientSock = sock;
315 if (clientSock == -1) {
322 VLOG(jdwp) << "received file descriptor " << clientSock << " from ADB";
347 CHECK_NE(clientSock, -1);
368 fd = clientSock;
425 * on clientSock will fail and throw us out of the loop.
429 if (clientSock >= 0 && FD_ISSET(clientSock, &readfds)) {
430 readCount = read(clientSock, input_buffer_ + input_count_, sizeof(input_buffer_) - input_count_);
469 int cc = TEMP_FAILURE_RETRY(write(clientSock, input_buffer_, kMagicHandshakeLen));