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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequestUpload.cpp 54 void XMLHttpRequestUpload::dispatchProgressEvent(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
56 m_lastBytesSent = bytesSent;
58 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, true, bytesSent, totalBytesToBeSent));
61 void XMLHttpRequestUpload::dispatchEventAndLoadEnd(const AtomicString& type, bool lengthComputable, unsigned long long bytesSent, unsigned long long total)
64 dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, bytesSent, total));
65 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend, lengthComputable, bytesSent, total));
XMLHttpRequest.cpp     [all...]
XMLHttpRequest.h 162 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
  /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(createCallbackTask(&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 73 virtual void dataSent(Resource*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
WorkerThreadableLoader.h 105 virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
WorkerThreadableLoader.cpp 188 void WorkerThreadableLoader::MainThreadBridge::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
190 m_clientBridge->didSendData(bytesSent, totalBytesToBeSent);
DocumentThreadableLoader.cpp 256 void DocumentThreadableLoader::dataSent(Resource* resource, unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
260 m_client->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 77 virtual void didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
ResourceLoader.cpp 312 void ResourceLoader::didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
316 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/content/renderer/media/
buffered_resource_loader.h 145 unsigned long long bytesSent,
  /external/chromium_org/third_party/WebKit/Source/web/
AssociatedURLLoader.cpp 129 virtual void didSendData(unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/) OVERRIDE;
192 void AssociatedURLLoader::ClientAdapter::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)
197 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 482 uint32_t* bytesSent,
  /external/chromium_org/content/renderer/npapi/
webplugin_impl.h 341 unsigned long long bytesSent,

Completed in 676 milliseconds

1 2