HomeSort by relevance Sort by last modified time
    Searched defs:clientSock (Results 1 - 8 of 8) 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);
  /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 1271 milliseconds