Home
last modified time | relevance | path

Searched refs:bytesSent (Results 1 – 25 of 42) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/xml/
DXMLHttpRequestUpload.cpp53 void XMLHttpRequestUpload::dispatchProgressEvent(unsigned long long bytesSent, unsigned long long t… in dispatchProgressEvent() argument
55 m_lastBytesSent = bytesSent; in dispatchProgressEvent()
57 …dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, true, bytesSent, total… in dispatchProgressEvent()
60 …End(const AtomicString& type, bool lengthComputable, unsigned long long bytesSent, unsigned long l… in dispatchEventAndLoadEnd() argument
63 dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, bytesSent, total)); in dispatchEventAndLoadEnd()
64 …(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend, lengthComputable, bytesSent, total)); in dispatchEventAndLoadEnd()
DXMLHttpRequest.cpp1375 void XMLHttpRequest::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSen… in didSendData() argument
1377 …WTF_LOG(Network, "XMLHttpRequest %p didSendData(%llu, %llu)", this, bytesSent, totalBytesToBeSent); in didSendData()
1383 m_upload->dispatchProgressEvent(bytesSent, totalBytesToBeSent); in didSendData()
1385 if (bytesSent == totalBytesToBeSent && !m_uploadComplete) { in didSendData()
1388 … m_upload->dispatchEventAndLoadEnd(EventTypeNames::load, true, bytesSent, totalBytesToBeSent); in didSendData()
DXMLHttpRequest.h161 …virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVER…
/external/chromium_org/extensions/test/data/
Dserial_unittest.js118 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);
Ddata_sender_unittest.js46 return sender.send(data).then(function(bytesSent) { argument
47 test.assertEq(data.byteLength, bytesSent);
60 test.assertEq(expectedBytesSent, result.bytesSent);
/external/chromium_org/third_party/WebKit/Source/core/loader/
DWorkerLoaderClientBridge.cpp52 …<ThreadableLoaderClientWrapper> workerClientWrapper, unsigned long long bytesSent, unsigned long l… in workerGlobalScopeDidSendData() argument
55 workerClientWrapper->didSendData(bytesSent, totalBytesToBeSent); in workerGlobalScopeDidSendData()
58 void WorkerLoaderClientBridge::didSendData(unsigned long long bytesSent, unsigned long long totalBy… in didSendData() argument
60 …teCrossThreadTask(&workerGlobalScopeDidSendData, m_workerClientWrapper, bytesSent, totalBytesToBeS… in didSendData()
DThreadableLoaderClientWrapper.h60 void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) in didSendData() argument
63 m_client->didSendData(bytesSent, totalBytesToBeSent); in didSendData()
DWorkerLoaderClientBridgeSyncHelper.cpp64 void WorkerLoaderClientBridgeSyncHelper::didSendData(unsigned long long bytesSent, unsigned long lo… in didSendData() argument
67 …m_clientTasks.append(bind(&ThreadableLoaderClient::didSendData, &m_client, bytesSent, totalBytesTo… in didSendData()
DWorkerLoaderClientBridge.h51 …virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVER…
DWorkerLoaderClientBridgeSyncHelper.h57 …virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVER…
DWorkerThreadableLoader.cpp210 void WorkerThreadableLoader::MainThreadBridge::didSendData(unsigned long long bytesSent, unsigned l… in didSendData() argument
212 m_clientBridge->didSendData(bytesSent, totalBytesToBeSent); in didSendData()
DDocumentThreadableLoader.h75 …virtual void dataSent(Resource*, unsigned long long bytesSent, unsigned long long totalBytesToBeSe…
DWorkerThreadableLoader.h106 …virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVER…
/external/chromium_org/extensions/renderer/resources/
Dserial_service.js311 return Promise.resolve({bytesSent: 0, error: 'pending'}); property
319 return this.sendPipe_.send(data).then(function(bytesSent) { argument
320 return {bytesSent: bytesSent};
323 bytesSent: e.bytesSent,
/external/chromium_org/third_party/WebKit/Source/core/fetch/
DRawResource.cpp109 void RawResource::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) in didSendData() argument
113 c->dataSent(this, bytesSent, totalBytesToBeSent); in didSendData()
DRawResource.h55 …virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVER…
DResourceLoader.h78 …virtual void didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long to…
DResourceLoader.cpp331 void ResourceLoader::didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long … in didSendData() argument
335 m_resource->didSendData(bytesSent, totalBytesToBeSent); in didSendData()
/external/chromium_org/third_party/WebKit/public/platform/
DWebURLLoaderClient.h51 WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) { } in didSendData() argument
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/BWEStandAlone/
DTestSenderReceiver.cc260 uint32_t bytesSent; in ReceiveBitrateKbps() local
265 if (_rtp->DataCountersRTP(&bytesSent, &packetsSent, &bytesReceived, &packetsReceived) == 0) in ReceiveBitrateKbps()
/external/chromium_org/content/renderer/media/android/
Dmedia_info_loader.h85 unsigned long long bytesSent,
/external/chromium_org/third_party/WebKit/Source/web/
DAssociatedURLLoader.cpp188 void AssociatedURLLoader::ClientAdapter::didSendData(unsigned long long bytesSent, unsigned long lo… in didSendData() argument
193 m_client->didSendData(m_loader, bytesSent, totalBytesToBeSent); in didSendData()
/external/chromium_org/media/blink/
Dbuffered_resource_loader.h142 unsigned long long bytesSent, in NON_EXPORTED_BASE()
/external/chromium_org/third_party/webrtc/voice_engine/include/
Dvoe_rtp_rtcp.h85 int bytesSent; member
/external/chromium_org/third_party/tlslite/tlslite/
Dtlsrecordlayer.py622 bytesSent = self.sock.send(s) #Might raise socket.error
659 if bytesSent == len(s):
661 s = s[bytesSent:]

12