/external/chromium_org/content/common/ |
socket_stream_messages.h | 35 // and |amount_sent| parameter of ViewMsg_SocketStream_DataSent. 37 // (accumulated total of |data|) - (accumulated total of |amount_sent|) 67 // |amount_sent| bytes of data requested by 71 int /* amount_sent */)
|
/external/chromium_org/content/child/ |
socket_stream_dispatcher.cc | 49 void OnSentData(int amount_sent); 137 void IPCWebSocketStreamHandleBridge::OnSentData(int amount_sent) { 138 DVLOG(1) << "Bridge #" << socket_id_ << " OnSentData (" << amount_sent local 142 delegate_->DidSendData(handle_, amount_sent); 211 void SocketStreamDispatcher::OnSentData(int socket_id, int amount_sent) { 212 DVLOG(1) << "SocketStreamDispatcher::OnSentData (" << amount_sent 218 bridge->OnSentData(amount_sent);
|
socket_stream_dispatcher.h | 43 void OnSentData(int socket_id, int amount_sent);
|
/external/chromium/webkit/glue/ |
websocketstreamhandle_delegate.h | 29 int amount_sent) {}
|
websocketstreamhandle_impl.cc | 114 WebKit::WebSocketStreamHandle* web_handle, int amount_sent) { 116 client_->didSendData(handle_, amount_sent);
|
/external/chromium_org/webkit/child/ |
websocketstreamhandle_delegate.h | 30 int amount_sent) {}
|
websocketstreamhandle_impl.cc | 126 WebSocketStreamHandle* web_handle, int amount_sent) { 128 client_->didSendData(handle_, amount_sent);
|
/external/chromium/net/websockets/ |
websocket_job.cc | 185 void WebSocketJob::OnSentData(SocketStream* socket, int amount_sent) { 190 OnSentHandshakeRequest(socket, amount_sent); 195 DCHECK_GT(amount_sent, 0); 197 current_buffer_->DidConsume(amount_sent); 201 // We need to report amount_sent of original buffer size, instead of 203 amount_sent = send_frame_handler_->GetOriginalBufferSize(); 204 DCHECK_GT(amount_sent, 0); 207 delegate_->OnSentData(socket, amount_sent); 320 SocketStream* socket, int amount_sent) { 322 handshake_request_sent_ += amount_sent; [all...] |
websocket_job.h | 62 SocketStream* socket, int amount_sent); 80 void OnSentHandshakeRequest(SocketStream* socket, int amount_sent);
|
websocket_job_unittest.cc | 62 virtual void OnSentData(SocketStream* socket, int amount_sent) { 63 amount_sent_ += amount_sent; 72 size_t amount_sent() const { return amount_sent_; } function in class:net::MockSocketStreamDelegate 255 EXPECT_EQ(strlen(kHandshakeRequestMessage), delegate.amount_sent()); 302 EXPECT_EQ(strlen(kHandshakeRequestMessage), delegate.amount_sent()); 382 EXPECT_EQ(strlen(kHandshakeRequestMessage), delegate.amount_sent()); 469 EXPECT_EQ(strlen(kHandshakeRequestMessage), delegate.amount_sent());
|
websocket.h | 153 virtual void OnSentData(SocketStream* socket_stream, int amount_sent);
|
websocket.cc | 180 void WebSocket::OnSentData(SocketStream* socket_stream, int amount_sent) { 183 current_write_buf_->DidConsume(amount_sent);
|
websocket_throttle_unittest.cc | 24 virtual void OnSentData(net::SocketStream* socket, int amount_sent) {}
|
/external/chromium_org/net/websockets/ |
websocket_job.cc | 200 void WebSocketJob::OnSentData(SocketStream* socket, int amount_sent) { 202 DCHECK_GT(amount_sent, 0); 206 OnSentHandshakeRequest(socket, amount_sent); 213 << "OnSentData current_send_buffer=NULL amount_sent=" << amount_sent; 216 current_send_buffer_->DidConsume(amount_sent); 220 // We need to report amount_sent of original buffer size, instead of 222 amount_sent = current_send_buffer_->size(); 223 DCHECK_GT(amount_sent, 0); 231 delegate_->OnSentData(socket, amount_sent); [all...] |
websocket_job.h | 68 virtual void OnSentData(SocketStream* socket, int amount_sent) OVERRIDE; 98 void OnSentHandshakeRequest(SocketStream* socket, int amount_sent);
|
websocket_job_test.cc | 111 int amount_sent) OVERRIDE { 112 amount_sent_ += amount_sent; 137 size_t amount_sent() const { return amount_sent_; } function in class:net::__anon9624::MockSocketStreamDelegate 552 EXPECT_EQ(kHandshakeRequestWithoutCookieLength, delegate.amount_sent()); 577 EXPECT_EQ(kHandshakeRequestWithoutCookieLength, delegate.amount_sent()); 633 delegate.amount_sent()); 668 delegate.amount_sent()); 710 EXPECT_EQ(kHandshakeRequestWithCookieLength, delegate.amount_sent()); 760 EXPECT_EQ(kHandshakeRequestWithoutCookieLength, delegate.amount_sent()); [all...] |
websocket_throttle_test.cc | 26 int amount_sent) OVERRIDE {}
|
/external/chromium_org/content/browser/renderer_host/ |
socket_stream_dispatcher_host.cc | 76 int amount_sent) { 79 << " amount_sent=" << amount_sent; local 84 if (!Send(new SocketStreamMsg_SentData(socket_id, amount_sent))) {
|
socket_stream_dispatcher_host.h | 53 virtual void OnSentData(net::SocketStream* socket, int amount_sent) OVERRIDE;
|
/external/chromium/net/socket_stream/ |
socket_stream.h | 74 // Called when |amount_sent| bytes of data are sent. 76 int amount_sent) = 0;
|
socket_stream_unittest.cc | 83 int amount_sent) { 86 socket, amount_sent, std::string(), NULL));
|
/external/chromium_org/net/socket_stream/ |
socket_stream.h | 73 // Called when |amount_sent| bytes of data are sent. 75 int amount_sent) = 0;
|
socket_stream_unittest.cc | 110 int amount_sent) OVERRIDE { 113 amount_sent, std::string(), NULL, OK)); 219 virtual void OnSentData(SocketStream* socket, int amount_sent) OVERRIDE { [all...] |