Home | History | Annotate | Download | only in base

Lines Matching refs:received

312   int received = ::recv(s_, static_cast<char*>(buffer),
314 if ((received == 0) && (length != 0)) {
327 bool success = (received >= 0) || IsBlockingError(error);
334 return received;
343 int received = ::recvfrom(s_, static_cast<char*>(buffer),
346 if ((received >= 0) && (out_addr != nullptr))
349 bool success = (received >= 0) || IsBlockingError(error);
356 return received;
964 LOG(LS_INFO) << "Received signal with no handler: " << signum;