Home | History | Annotate | Download | only in websockets

Lines Matching refs:Network

88     LOG(Network, "WebSocketChannel %p connect", this);
98 LOG(Network, "WebSocketChannel %p send %s", this, msg.utf8().data());
111 LOG(Network, "WebSocketChannel %p bufferedAmount", this);
119 LOG(Network, "WebSocketChannel %p close", this);
127 LOG(Network, "WebSocketChannel %p disconnect", this);
151 LOG(Network, "WebSocketChannel %p didOpen", this);
166 LOG(Network, "WebSocketChannel %p didClose", this);
187 LOG(Network, "WebSocketChannel %p didReceiveData %d", this, len);
212 LOG(Network, "WebSocketChannel %p didFail", this);
217 message = "WebSocket network error";
219 message = makeString("WebSocket network error: error code ", String::number(error.errorCode()));
221 message = makeString("WebSocket network error: ", error.localizedDescription());
240 LOG(Network, "WebSocket buffer overflow (%lu+%lu)", static_cast<unsigned long>(m_bufferSize), static_cast<unsigned long>(len));
294 LOG(Network, "WebSocketChannel %p connected", this);
297 LOG(Network, "remaining in read buf %lu", static_cast<unsigned long>(m_bufferSize));
300 LOG(Network, "WebSocketChannel %p connection failed", this);
320 LOG(Network, "frame length overflow %lu", static_cast<unsigned long>(length));
328 LOG(Network, "frame length overflow %lu+%u", static_cast<unsigned long>(newLength), lengthMsgByte);
334 LOG(Network, "frame length integer wrap %lu->%lu", static_cast<unsigned long>(length), static_cast<unsigned long>(newLength));
344 LOG(Network, "frame buffer pointer wrap %p+%lu->%p", p, static_cast<unsigned long>(length), p + length);