Home | History | Annotate | Download | only in lib

Lines Matching defs:bytes

204   ssize_t bytes = region_server->Recv(&protocol_version,
206 if (bytes != sizeof(protocol_version)) {
207 LOG(FATAL) << "Failed to recv protocol version; res=" << bytes << " ("
220 bytes = region_server->Send(&size, sizeof(size), MSG_NOSIGNAL);
221 if (bytes != sizeof(size)) {
222 LOG(FATAL) << "Failed to send region name length; res=" << bytes << " ("
227 bytes = region_server->Send(region_name, size, MSG_NOSIGNAL);
228 if (bytes != size) {
229 LOG(FATAL) << "Failed to send region name; res=" << bytes << " ("
243 bytes = region_server->RecvMsgAndFDs(hdr, 0, &fds);
244 if (bytes != sizeof(control_data)) {
245 LOG(FATAL) << "Failed to complete handshake; res=" << bytes << " ("