Home | History | Annotate | Download | only in jdwp

Lines Matching defs:clientSock

89     if (netState->clientSock >= 0) {
90 shutdown(netState->clientSock, SHUT_RDWR);
91 close(netState->clientSock);
272 netState->clientSock = receiveClientFd(netState);
276 if (netState->clientSock < 0) {
283 ALOGV("received file descriptor %d from ADB", netState->clientSock);
309 if (netState->clientSock < 0)
314 close(netState->clientSock);
315 netState->clientSock = -1;
327 int clientSock;
334 clientSock = netState->clientSock;
335 if (clientSock >= 0) {
336 shutdown(clientSock, SHUT_RDWR);
337 netState->clientSock = -1;
374 state->netState->clientSock >= 0);
505 assert(netState->clientSock >= 0);
525 fd = netState->clientSock;
582 * on netState->clientSock will fail and throw us out
587 if (netState->clientSock >= 0 &&
588 FD_ISSET(netState->clientSock, &readfds))
590 readCount = read(netState->clientSock,
632 cc = TEMP_FAILURE_RETRY(write(netState->clientSock, netState->inputBuffer,
668 if (netState->clientSock < 0) {
700 if (netState->clientSock < 0) {