Home | History | Annotate | Download | only in websockets

Lines Matching refs:m_handle

113     , m_handle(adoptPtr(blink::Platform::current()->createWebSocketHandle()))
134 if (!m_handle)
159 document()->frame()->loader().client()->dispatchWillOpenWebSocket(m_handle.get());
160 m_handle->connect(url, webProtocols, *executionContext()->securityOrigin(), this);
234 ASSERT(m_handle);
236 m_handle->close(codeToSend, reason);
242 // m_handle and m_client can be null here.
267 m_handle.clear();
300 ASSERT(m_handle);
311 m_handle->send(final, type, message->text.data() + m_sentSizeOfTopMessage, size);
326 m_handle->send(final, type, static_cast<const char*>(message->arrayBuffer->data()) + m_sentSizeOfTopMessage, size);
337 m_handle->send(final, type, message->vectorData->data() + m_sentSizeOfTopMessage, size);
355 if (!m_handle || m_receivedDataSizeForFlowControl < receivedDataSizeForFlowControlHighWaterMark) {
358 m_handle->flowControl(m_receivedDataSizeForFlowControl);
372 m_handle.clear();
396 ASSERT(m_handle);
397 ASSERT(handle == m_handle);
443 ASSERT(m_handle);
444 ASSERT(handle == m_handle);
494 ASSERT(m_handle);
495 m_handle.clear();
511 ASSERT(m_handle);
526 ASSERT(m_handle);