Home
last modified time | relevance | path

Searched refs:download_progress_ (Results 1 – 5 of 5) sorted by relevance

/system/update_engine/
Dupdate_attempter_android.cc581 download_progress_ = 0; in ActionCompleted()
611 download_progress_ = progress; in BytesReceived()
642 progress - download_progress_ >= kBroadcastThresholdProgress || in ProgressUpdate()
645 download_progress_ = progress; in ProgressUpdate()
679 download_progress_ = 0; in TerminateUpdateAndNotify()
712 .progress = download_progress_, in SetStatusAndNotify()
Dupdate_attempter_android.h224 double download_progress_{0.0};
Dupdate_attempter.cc1282 download_progress_ = 0.0; in ProcessingStopped()
1302 download_progress_ = 0.0; in ActionCompleted()
1415 download_progress_ = progress; in BytesReceived()
1430 progress - download_progress_ >= kBroadcastThresholdProgress || in ProgressUpdate()
1433 download_progress_ = progress; in ProgressUpdate()
1500 out_status->progress = download_progress_; in GetStatus()
Dupdate_attempter_unittest.cc264 EXPECT_EQ(0.0, attempter_.download_progress_); in SetUp()
532 EXPECT_EQ(0.0, attempter_.download_progress_); in TEST_F()
559 EXPECT_EQ(0.0, attempter_.download_progress_); in TEST_F()
576 EXPECT_EQ(progress_1, attempter_.download_progress_); in TEST_F()
581 EXPECT_EQ(progress_2, attempter_.download_progress_); in TEST_F()
594 EXPECT_EQ(0.0, attempter_.download_progress_); in TEST_F()
613 EXPECT_EQ(0.0, attempter_.download_progress_); in TEST_F()
622 EXPECT_EQ(1.0, attempter_.download_progress_); in TEST_F()
Dupdate_attempter.h514 double download_progress_ = 0.0; variable