HomeSort by relevance Sort by last modified time
    Searched refs:bytesSent (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequestUpload.cpp 53 void XMLHttpRequestUpload::dispatchProgressEvent(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
55 m_lastBytesSent = bytesSent;
57 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, true, bytesSent, totalBytesToBeSent));
60 void XMLHttpRequestUpload::dispatchEventAndLoadEnd(const AtomicString& type, bool lengthComputable, unsigned long long bytesSent, unsigned long long total)
63 dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, bytesSent, total));
64 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend, lengthComputable, bytesSent, total));
XMLHttpRequest.h 161 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
XMLHttpRequest.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
WorkerLoaderClientBridge.h 51 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
ThreadableLoaderClientWrapper.h 60 void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
63 m_client->didSendData(bytesSent, totalBytesToBeSent);
WorkerLoaderClientBridge.cpp 52 static void workerGlobalScopeDidSendData(ExecutionContext* context, PassRefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
55 workerClientWrapper->didSendData(bytesSent, totalBytesToBeSent);
58 void WorkerLoaderClientBridge::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
60 m_loaderProxy.postTaskToWorkerGlobalScope(createCrossThreadTask(&workerGlobalScopeDidSendData, m_workerClientWrapper, bytesSent, totalBytesToBeSent));
WorkerLoaderClientBridgeSyncHelper.h 57 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
WorkerLoaderClientBridgeSyncHelper.cpp 64 void WorkerLoaderClientBridgeSyncHelper::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
67 m_clientTasks.append(bind(&ThreadableLoaderClient::didSendData, &m_client, bytesSent, totalBytesToBeSent));
DocumentThreadableLoader.h 75 virtual void dataSent(Resource*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
WorkerThreadableLoader.h 106 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
WorkerThreadableLoader.cpp 210 void WorkerThreadableLoader::MainThreadBridge::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
212 m_clientBridge->didSendData(bytesSent, totalBytesToBeSent);
  /external/chromium_org/third_party/WebKit/public/platform/
WebURLLoaderClient.h 51 WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) { }
  /external/chromium_org/content/renderer/media/android/
media_info_loader.h 85 unsigned long long bytesSent,
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
RawResource.h 55 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
78 virtual void dataSent(Resource*, unsigned long long /* bytesSent */, unsigned long long /* totalBytesToBeSent */) { }
RawResource.cpp 109 void RawResource::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
113 c->dataSent(this, bytesSent, totalBytesToBeSent);
ResourceLoader.h 78 virtual void didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
ResourceLoader.cpp 331 void ResourceLoader::didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
335 m_resource->didSendData(bytesSent, totalBytesToBeSent);
  /external/chromium_org/third_party/webrtc/voice_engine/include/
voe_rtp_rtcp.h 85 int bytesSent;
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/BWEStandAlone/
TestSenderReceiver.cc 260 uint32_t bytesSent;
265 if (_rtp->DataCountersRTP(&bytesSent, &packetsSent, &bytesReceived, &packetsReceived) == 0)
  /external/chromium_org/extensions/test/data/
serial_unittest.js 118 test.assertEq(0, sendInfo.bytesSent);
400 test.assertEq(4, sendInfo.bytesSent);
414 test.assertEq(4, sendInfo.bytesSent);
419 test.assertEq(0, sendInfo.bytesSent);
430 test.assertEq(4, sendInfo.bytesSent);
434 test.assertEq(4, sendInfo.bytesSent);
453 test.assertEq(2, sendInfo.bytesSent);
457 test.assertEq(4, sendInfo.bytesSent);
470 test.assertEq(0, sendInfo.bytesSent);
486 test.assertEq(0, sendInfo.bytesSent);
    [all...]
data_sender_unittest.js 46 return sender.send(data).then(function(bytesSent) {
47 test.assertEq(data.byteLength, bytesSent);
60 test.assertEq(expectedBytesSent, result.bytesSent);
  /external/chromium_org/media/blink/
buffered_resource_loader.h 142 unsigned long long bytesSent,
  /external/chromium_org/third_party/WebKit/Source/web/
AssociatedURLLoader.cpp 125 virtual void didSendData(unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/) OVERRIDE;
188 void AssociatedURLLoader::ClientAdapter::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
193 m_client->didSendData(m_loader, bytesSent, totalBytesToBeSent);
  /external/chromium_org/content/browser/resources/media/
stats_graph_helper.js 8 // e.g. 1234-0-ssrc-abcd123-bytesSent is the graph for the series of bytesSent
60 bytesSent: {
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/interface/
rtp_rtcp.h 471 uint32_t* bytesSent,

Completed in 2629 milliseconds

1 2