Home | History | Annotate | Download | only in base

Lines Matching defs:Recv

314   int Recv(void *pv, size_t cb) {
315 int received = ::recv(s_, (char *)pv, (int)cb, 0);
317 // Note: on graceful shutdown, recv can return 0. In this case, we
319 // assumptions can be made about Recv.
805 ssize_t res = ::recv(s_, &ch, 1, MSG_PEEK);
827 // the next recv() will get EOF, so we'll still eventually notice that
1116 if (recv(s_, &ch, 1, MSG_PEEK) > 0)