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

  /external/chromium/net/websockets/
websocket_job.h 60 SocketStream* socket, int max_pending_send_allowed);
websocket.h 152 int max_pending_send_allowed);
websocket.cc 146 int max_pending_send_allowed) {
148 max_pending_send_allowed_ = max_pending_send_allowed;
150 // Use |max_pending_send_allowed| as hint for initial size of read buffer.
websocket_job.cc 103 // pending bytes less than max_pending_send_allowed, so when sending
104 // larger message than max_pending_send_allowed should not be buffered.
106 // sending more data when pending data reaches max_pending_send_allowed.
177 SocketStream* socket, int max_pending_send_allowed) {
182 delegate_->OnConnected(socket, max_pending_send_allowed);
websocket_throttle_unittest.cc 23 net::SocketStream* socket, int max_pending_send_allowed) {}
websocket_job_unittest.cc 60 virtual void OnConnected(SocketStream* socket, int max_pending_send_allowed) {
  /external/chromium/net/socket_stream/
socket_stream.h 68 // at most |max_pending_send_allowed| so that a client of the socket stream
70 // |max_pending_send_allowed| bytes.
72 int max_pending_send_allowed) = 0;
113 int max_pending_send_allowed() const { return max_pending_send_allowed_; } function in class:net::SocketStream

Completed in 145 milliseconds