HomeSort by relevance Sort by last modified time
    Searched refs:m_sendingQuota (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
NewWebSocketChannelImpl.cpp 117 , m_sendingQuota(0)
310 if (m_sendingQuota <= 0 && message->type != MessageTypeClose)
316 size_t size = std::min(static_cast<size_t>(m_sendingQuota), message->text.length() - m_sentSizeOfTopMessage);
320 m_sendingQuota -= size;
331 size_t size = std::min(static_cast<size_t>(m_sendingQuota), message->arrayBuffer->byteLength() - m_sentSizeOfTopMessage);
335 m_sendingQuota -= size;
342 size_t size = std::min(static_cast<size_t>(m_sendingQuota), message->vectorData->size() - m_sentSizeOfTopMessage);
346 m_sendingQuota -= size;
526 m_sendingQuota += quota;
NewWebSocketChannelImpl.h 177 int64_t m_sendingQuota;

Completed in 122 milliseconds