Home
last modified time | relevance | path

Searched refs:m_sendingQuota (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/websockets/
DNewWebSocketChannelImpl.cpp116 , m_sendingQuota(0) in NewWebSocketChannelImpl()
302 while (!m_messages.isEmpty() && m_sendingQuota > 0 && !m_blobLoader) { in sendInternal()
309 …size_t size = std::min(static_cast<size_t>(m_sendingQuota), message->text.length() - m_sentSizeOfT… in sendInternal()
313 m_sendingQuota -= size; in sendInternal()
324 …size_t size = std::min(static_cast<size_t>(m_sendingQuota), message->arrayBuffer->byteLength() - m… in sendInternal()
328 m_sendingQuota -= size; in sendInternal()
335 …size_t size = std::min(static_cast<size_t>(m_sendingQuota), message->vectorData->size() - m_sentSi… in sendInternal()
339 m_sendingQuota -= size; in sendInternal()
512 m_sendingQuota += quota; in didReceiveFlowControl()
DNewWebSocketChannelImpl.h166 int64_t m_sendingQuota; variable