Home
last modified time | relevance | path

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

/system/update_engine/
Dupdate_attempter_android.cc501 download_progress_ = 0; in ActionCompleted()
526 download_progress_ = progress; in BytesReceived()
557 progress - download_progress_ >= kBroadcastThresholdProgress || in ProgressUpdate()
560 download_progress_ = progress; in ProgressUpdate()
581 download_progress_ = 0; in TerminateUpdateAndNotify()
613 .progress = download_progress_, in SetStatusAndNotify()
Dupdate_attempter_android.h182 double download_progress_{0.0};
Dupdate_attempter.cc1100 download_progress_ = 0.0; in ProcessingStopped()
1120 download_progress_ = 0.0; in ActionCompleted()
1234 download_progress_ = progress; in BytesReceived()
1249 progress - download_progress_ >= kBroadcastThresholdProgress || in ProgressUpdate()
1252 download_progress_ = progress; in ProgressUpdate()
1311 out_status->progress = download_progress_; in GetStatus()
Dupdate_attempter_unittest.cc149 EXPECT_EQ(0.0, attempter_.download_progress_); in SetUp()
242 EXPECT_EQ(0.0, attempter_.download_progress_); in TEST_F()
269 EXPECT_EQ(0.0, attempter_.download_progress_); in TEST_F()
286 EXPECT_EQ(progress_1, attempter_.download_progress_); in TEST_F()
291 EXPECT_EQ(progress_2, attempter_.download_progress_); in TEST_F()
304 EXPECT_EQ(0.0, attempter_.download_progress_); in TEST_F()
324 EXPECT_EQ(0.0, attempter_.download_progress_); in TEST_F()
333 EXPECT_EQ(1.0, attempter_.download_progress_); in TEST_F()
Dupdate_attempter.h459 double download_progress_ = 0.0; variable