/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XMLHttpRequestUpload.cpp | 53 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()
|
D | XMLHttpRequest.cpp | 1375 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()
|
D | XMLHttpRequest.h | 161 …virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVER…
|
/external/chromium_org/extensions/test/data/ |
D | 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);
|
D | data_sender_unittest.js | 46 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/ |
D | WorkerLoaderClientBridge.cpp | 52 …<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()
|
D | ThreadableLoaderClientWrapper.h | 60 void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) in didSendData() argument 63 m_client->didSendData(bytesSent, totalBytesToBeSent); in didSendData()
|
D | WorkerLoaderClientBridgeSyncHelper.cpp | 64 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()
|
D | WorkerLoaderClientBridge.h | 51 …virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVER…
|
D | WorkerLoaderClientBridgeSyncHelper.h | 57 …virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVER…
|
D | WorkerThreadableLoader.cpp | 210 void WorkerThreadableLoader::MainThreadBridge::didSendData(unsigned long long bytesSent, unsigned l… in didSendData() argument 212 m_clientBridge->didSendData(bytesSent, totalBytesToBeSent); in didSendData()
|
D | DocumentThreadableLoader.h | 75 …virtual void dataSent(Resource*, unsigned long long bytesSent, unsigned long long totalBytesToBeSe…
|
D | WorkerThreadableLoader.h | 106 …virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVER…
|
/external/chromium_org/extensions/renderer/resources/ |
D | serial_service.js | 311 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/ |
D | RawResource.cpp | 109 void RawResource::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) in didSendData() argument 113 c->dataSent(this, bytesSent, totalBytesToBeSent); in didSendData()
|
D | RawResource.h | 55 …virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVER…
|
D | ResourceLoader.h | 78 …virtual void didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long to…
|
D | ResourceLoader.cpp | 331 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/ |
D | WebURLLoaderClient.h | 51 WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) { } in didSendData() argument
|
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/BWEStandAlone/ |
D | TestSenderReceiver.cc | 260 uint32_t bytesSent; in ReceiveBitrateKbps() local 265 if (_rtp->DataCountersRTP(&bytesSent, &packetsSent, &bytesReceived, &packetsReceived) == 0) in ReceiveBitrateKbps()
|
/external/chromium_org/content/renderer/media/android/ |
D | media_info_loader.h | 85 unsigned long long bytesSent,
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | AssociatedURLLoader.cpp | 188 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/ |
D | buffered_resource_loader.h | 142 unsigned long long bytesSent, in NON_EXPORTED_BASE()
|
/external/chromium_org/third_party/webrtc/voice_engine/include/ |
D | voe_rtp_rtcp.h | 85 int bytesSent; member
|
/external/chromium_org/third_party/tlslite/tlslite/ |
D | tlsrecordlayer.py | 622 bytesSent = self.sock.send(s) #Might raise socket.error 659 if bytesSent == len(s): 661 s = s[bytesSent:]
|