OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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