Home
last modified time | relevance | path

Searched refs:DownloadProgress (Results 1 – 6 of 6) sorted by relevance

/system/update_engine/
Dpayload_state_interface.h55 virtual void DownloadProgress(size_t count) = 0;
Dmock_payload_state.h36 MOCK_METHOD1(DownloadProgress, void(size_t count));
Dpayload_state_unittest.cc473 payload_state.DownloadProgress(progress_bytes); in TEST()
788 payload_state.DownloadProgress(prev_chunk); in TEST()
805 payload_state.DownloadProgress(first_chunk); in TEST()
823 payload_state.DownloadProgress(second_chunk); in TEST()
839 payload_state.DownloadProgress(third_chunk); in TEST()
857 payload_state.DownloadProgress(p2p_total); in TEST()
891 payload_state.DownloadProgress(num_bytes); in TEST()
932 payload_state.DownloadProgress(num_bytes); in TEST()
1089 payload_state.DownloadProgress(10); in TEST()
Dpayload_state.h55 void DownloadProgress(size_t count) override;
Dpayload_state.cc166 void PayloadState::DownloadProgress(size_t count) { in DownloadProgress() function in chromeos_update_engine::PayloadState
Dupdate_attempter.cc1228 system_state_->payload_state()->DownloadProgress(bytes_progressed); in BytesReceived()