OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:total_received
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/net/
chrome_network_data_saving_metrics_unittest.cc
324
int64
total_received
[] = {0};
local
331
total_received
[0] += kContentLength;
335
total_received
, 1,
total_received
, 1,
347
total_received
[0] += kContentLength;
349
total_received
, 1,
total_received
, 1,
360
total_received
[0] += kContentLength;
364
total_received
, 1,
total_received
, 1
[
all
...]
chrome_network_data_saving_metrics.cc
531
int64
total_received
= prefs->GetInt64(prefs::kHttpReceivedContentLength);
local
533
total_received
+= received_content_length;
535
prefs->SetInt64(prefs::kHttpReceivedContentLength,
total_received
);
chrome_network_delegate.cc
388
int64
total_received
= prefs->GetInt64(prefs::kHttpReceivedContentLength);
local
394
base::Int64ToString(
total_received
));
/external/v8/src/
debug-agent.cc
454
int
total_received
= 0;
local
455
while (
total_received
< len) {
456
int received = conn->Receive(data +
total_received
, len -
total_received
);
458
return
total_received
;
460
total_received
+= received;
462
return
total_received
;
/external/chromium_org/v8/src/
debug-agent.cc
490
int
total_received
= 0;
local
491
while (
total_received
< len) {
492
int received = conn->Receive(data +
total_received
, len -
total_received
);
494
return
total_received
;
496
total_received
+= received;
498
return
total_received
;
Completed in 2675 milliseconds