HomeSort by relevance Sort by last modified time
    Searched defs:clientSock (Results 1 - 11 of 11) sorted by null

  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
TcpStream.cpp 60 int clientSock = -1;
65 clientSock = ::accept(m_sock, (sockaddr *)&addr, &len);
67 if (clientSock < 0 && errno == EINTR) {
75 if (clientSock >= 0) {
76 clientStream = new TcpStream(clientSock, m_bufsize);
UnixStream.cpp 105 int clientSock = -1;
110 clientSock = ::accept(m_sock, (sockaddr *)&addr, &len);
112 if (clientSock < 0 && errno == EINTR) {
120 if (clientSock >= 0) {
121 clientStream = new UnixStream(clientSock, m_bufsize);
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
TcpStream.cpp 74 int clientSock = -1;
79 clientSock = ::accept(m_sock, (sockaddr *)&addr, &len);
81 if (clientSock < 0 && errno == EINTR) {
89 if (clientSock >= 0) {
90 clientStream = new TcpStream(clientSock, m_bufsize);
UnixStream.cpp 103 int clientSock = -1;
108 clientSock = ::accept(m_sock, (sockaddr *)&addr, &len);
110 if (clientSock < 0 && errno == EINTR) {
118 if (clientSock >= 0) {
119 clientStream = new UnixStream(clientSock, m_bufsize);
  /art/runtime/jdwp/
jdwp_priv.h 75 int clientSock; // Active connection to debugger.
jdwp_socket.cc 174 int clientSock = this->clientSock;
177 this->listenSock = this->clientSock = -1;
184 if (clientSock != -1) {
185 shutdown(clientSock, SHUT_RDWR);
186 close(clientSock);
221 CHECK_EQ(clientSock, -1); /* must not already be talking */
244 clientSock = sock;
249 SetNoDelay(clientSock);
304 clientSock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP)
    [all...]
jdwp_adb.cc 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)
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/
Server.cpp 140 int clientSock = accept(
145 if (clientSock <= 0) {
150 Connection *connection = new Connection(clientSock, &clientAddr);
  /dalvik/vm/jdwp/
JdwpPriv.h 126 int clientSock; /* active connection to debugger */
JdwpAdb.cpp 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;
    [all...]
JdwpSocket.cpp 211 int clientSock = netState->clientSock;
214 netState->listenSock = netState->clientSock = -1;
221 if (clientSock >= 0) {
222 shutdown(clientSock, SHUT_RDWR);
223 close(clientSock);
247 assert(netState->clientSock == -1);
271 state->netState->clientSock >= 0);
313 assert(netState->clientSock < 0);
353 assert(netState->clientSock < 0); /* must not already be talking *
    [all...]

Completed in 208 milliseconds