Searched refs:received_bytes (Results 26 - 40 of 40) sorted by relevance

12

/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
H A Decho_client.py134 received_bytes = socket.recv(remaining)
135 if not received_bytes:
140 bytes.append(received_bytes)
141 remaining -= len(received_bytes)
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dclient_for_testing.py136 received_bytes = socket.recv(remaining)
137 if not received_bytes:
142 bytes.append(received_bytes)
143 remaining -= len(received_bytes)
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Dlast_download_finder.cc71 download_request->set_length(download.received_bytes);
/external/chromium_org/content/browser/download/
H A Ddownload_manager_impl.h88 int64 received_bytes,
H A Ddownload_manager_impl_unittest.cc245 int64 received_bytes,
312 int64 received_bytes,
299 CreatePersistedItem( DownloadItemImplDelegate* delegate, uint32 download_id, const base::FilePath& current_path, const base::FilePath& target_path, const std::vector<GURL>& url_chain, const GURL& referrer_url, const std::string& mime_type, const std::string& original_mime_type, const base::Time& start_time, const base::Time& end_time, const std::string& etag, const std::string& last_modified, int64 received_bytes, int64 total_bytes, DownloadItem::DownloadState state, DownloadDangerType danger_type, DownloadInterruptReason interrupt_reason, bool opened, const net::BoundNetLog& bound_net_log) argument
H A Ddownload_item_impl.h65 int64 received_bytes,
H A Ddownload_browsertest.cc722 int received_bytes, int total_bytes,
726 EXPECT_EQ(received_bytes, download->GetReceivedBytes());
739 ASSERT_EQ(static_cast<size_t>(received_bytes), file_contents.size());
740 for (int i = 0; i < received_bytes; ++i) {
720 ConfirmFileStatusForResume( DownloadItem* download, bool file_exists, int received_bytes, int total_bytes, const base::FilePath& expected_filename) argument
H A Ddownload_item_impl.cc122 int64 received_bytes,
141 received_bytes_(received_bytes),
110 DownloadItemImpl(DownloadItemImplDelegate* delegate, uint32 download_id, const base::FilePath& current_path, const base::FilePath& target_path, const std::vector<GURL>& url_chain, const GURL& referrer_url, const std::string& mime_type, const std::string& original_mime_type, const base::Time& start_time, const base::Time& end_time, const std::string& etag, const std::string& last_modified, int64 received_bytes, int64 total_bytes, DownloadItem::DownloadState state, DownloadDangerType danger_type, DownloadInterruptReason interrupt_reason, bool opened, const net::BoundNetLog& bound_net_log) argument
H A Dsave_package.cc837 save_item->url() == page_url_ && !save_item->received_bytes()) {
/external/chromium_org/net/http/
H A Dhttp_cache_unittest.cc128 int64* received_bytes) {
162 if (received_bytes)
163 *received_bytes = trans->GetTotalReceivedBytes();
6669 int64 received_bytes = -1; local
6672 NULL, &received_bytes);
6673 return received_bytes;
6685 int64 received_bytes = RunTransactionAndGetReceivedBytes(cache, transaction); local
6686 EXPECT_EQ(TransactionSize(transaction), received_bytes); local
6688 received_bytes = RunTransactionAndGetReceivedBytes(cache, transaction);
6689 EXPECT_EQ(0, received_bytes);
122 RunTransactionTestBase(net::HttpCache* cache, const MockTransaction& trans_info, const MockHttpRequest& request, net::HttpResponseInfo* response_info, const net::BoundNetLog& net_log, net::LoadTimingInfo* load_timing_info, int64* received_bytes) argument
6696 int64 received_bytes = RunTransactionAndGetReceivedBytes(cache, transaction); local
6697 EXPECT_EQ(TransactionSize(transaction), received_bytes); local
6702 EXPECT_EQ(TransactionSize(transaction), received_bytes); local
6717 int64 received_bytes = RunTransactionAndGetReceivedBytes(cache, transaction); local
6718 EXPECT_EQ(TransactionSize(transaction), received_bytes); local
6724 EXPECT_EQ(TransactionSize(transaction), received_bytes); local
6735 int64 received_bytes = RunTransactionAndGetReceivedBytes(cache, transaction); local
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dextensions.py97 logger, received_bytes, filtered_bytes, average_ratio):
101 ratio = float(received_bytes) / filtered_bytes
/external/chromium_org/chrome/browser/download/
H A Dsave_page_browsertest.cc166 if ((num_files >= 0) && (info.received_bytes != num_files)) {
168 << " != " << info.received_bytes;
H A Ddownload_browsertest.cc347 return row.received_bytes > 0 && !row.target_path.empty();
1795 EXPECT_EQ(URLRequestSlowDownloadJob::kFirstDownloadSize, row.received_bytes);
1830 row1.received_bytes);
/external/chromium_org/net/quic/
H A Dquic_connection_test.cc3474 size_t received_bytes = 0; local
3475 received_bytes += ProcessFecProtectedPacket(1, false, !kEntropyFlag);
3476 received_bytes += ProcessFecProtectedPacket(3, false, !kEntropyFlag);
3478 received_bytes += ProcessDataPacket(3, 1, !kEntropyFlag);
3479 received_bytes += ProcessFecPacket(4, 1, true, !kEntropyFlag, NULL);
3488 EXPECT_EQ(received_bytes, stats.bytes_received);
/external/chromium_org/chrome/browser/history/
H A Dhistory_unittest.cc263 EXPECT_EQ(0, downloads[0].received_bytes);
296 "received_bytes, total_bytes, state, end_time, opened) VALUES "
362 "received_bytes, total_bytes, state, end_time, opened) VALUES "
470 "received_bytes, total_bytes, state, end_time, opened) VALUES "
519 "received_bytes, total_bytes, state, danger_type, interrupt_reason, "
582 "received_bytes, total_bytes, state, danger_type, interrupt_reason, "
663 "received_bytes, total_bytes, state, danger_type, interrupt_reason, "

Completed in 540 milliseconds

12