Home | History | Annotate | Download | only in jdwp

Lines Matching refs:clientSock

67     if (clientSock != -1) {
68 shutdown(clientSock, SHUT_RDWR);
69 close(clientSock);
87 int clientSock = this->clientSock;
90 this->control_sock_ = this->clientSock = -1;
92 if (clientSock != -1) {
93 shutdown(clientSock, SHUT_RDWR);
264 clientSock = ReceiveClientFd();
268 if (clientSock == -1) {
275 VLOG(jdwp) << "received file descriptor " << clientSock << " from ADB";
300 CHECK_NE(clientSock, -1);
321 fd = clientSock;
377 * on clientSock will fail and throw us out of the loop.
381 if (clientSock >= 0 && FD_ISSET(clientSock, &readfds)) {
382 readCount = read(clientSock, input_buffer_ + input_count_, sizeof(input_buffer_) - input_count_);
421 int cc = TEMP_FAILURE_RETRY(write(clientSock, input_buffer_, kMagicHandshakeLen));