HomeSort by relevance Sort by last modified time
    Searched refs:fSockfd (Results 1 - 2 of 2) sorted by null

  /external/skia/experimental/Networking/
SkSockets.cpp 21 fSockfd = this->createSocket();
25 this->closeSocket(fSockfd);
26 shutdown(fSockfd, 2); //stop sending/receiving
146 // h.done, h.bytes, fSockfd, attempts);
250 if (bind(fSockfd, (sockaddr*)&serverAddr, sizeof(serverAddr)) < 0) {
264 listen(fSockfd, MAX_WAITING_CLIENTS);
270 FD_SET(fSockfd, &workingSet);
274 int sel = select(fSockfd + 1, &workingSet, NULL, NULL, &timeout);
284 newfd = accept(fSockfd, (struct sockaddr*)&clientAddr, &clientLen);
313 //Add fSockfd since the client will be using it to read/writ
    [all...]
SkSockets.h 136 int fSockfd;

Completed in 62 milliseconds