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

  /external/chromium_org/content/child/
socket_stream_dispatcher.h 41 void OnSentData(int socket_id, int amount_sent);
web_socket_stream_handle_delegate.h 30 int amount_sent) {}
socket_stream_dispatcher.cc 47 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);
210 void SocketStreamDispatcher::OnSentData(int socket_id, int amount_sent) {
211 DVLOG(1) << "SocketStreamDispatcher::OnSentData (" << amount_sent
217 bridge->OnSentData(amount_sent);
web_socket_stream_handle_impl.cc 131 WebSocketStreamHandle* web_handle, int amount_sent) {
133 client_->didSendData(handle_, amount_sent);
  /external/chromium_org/net/websockets/
websocket_job.h 64 virtual void OnSentData(SocketStream* socket, int amount_sent) OVERRIDE;
94 void OnSentHandshakeRequest(SocketStream* socket, int amount_sent);
websocket_job.cc 194 void WebSocketJob::OnSentData(SocketStream* socket, int amount_sent) {
196 DCHECK_GT(amount_sent, 0);
200 OnSentHandshakeRequest(socket, amount_sent);
207 << "OnSentData current_send_buffer=NULL amount_sent=" << amount_sent;
210 current_send_buffer_->DidConsume(amount_sent);
214 // We need to report amount_sent of original buffer size, instead of
216 amount_sent = current_send_buffer_->size();
217 DCHECK_GT(amount_sent, 0);
225 delegate_->OnSentData(socket, amount_sent);
    [all...]
websocket_job_test.cc 112 int amount_sent) OVERRIDE {
113 amount_sent_ += amount_sent;
138 size_t amount_sent() const { return amount_sent_; } function in class:net::__anon14465::MockSocketStreamDelegate
357 virtual void OnSentData(SocketStream* socket, int amount_sent) OVERRIDE {
673 EXPECT_EQ(kHandshakeRequestWithoutCookieLength, delegate.amount_sent());
698 EXPECT_EQ(kHandshakeRequestWithoutCookieLength, delegate.amount_sent());
753 delegate.amount_sent());
788 delegate.amount_sent());
830 EXPECT_EQ(kHandshakeRequestWithCookieLength, delegate.amount_sent());
880 EXPECT_EQ(kHandshakeRequestWithoutCookieLength, delegate.amount_sent());
    [all...]
websocket_throttle_test.cc 30 int amount_sent) OVERRIDE {}
  /external/chromium_org/content/browser/renderer_host/
socket_stream_dispatcher_host.h 52 virtual void OnSentData(net::SocketStream* socket, int amount_sent) OVERRIDE;
socket_stream_dispatcher_host.cc 77 int amount_sent) {
80 << " amount_sent=" << amount_sent; local
85 if (!Send(new SocketStreamMsg_SentData(socket_id, amount_sent))) {
  /external/chromium_org/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 112 int amount_sent) OVERRIDE {
115 amount_sent, std::string(), NULL, OK));
221 virtual void OnSentData(SocketStream* socket, int amount_sent) OVERRIDE {
    [all...]

Completed in 474 milliseconds