Home
last modified time | relevance | path

Searched refs:poll_interval (Results 1 – 9 of 9) sorted by relevance

/system/update_engine/update_manager/
Dvariable.h114 BaseVariable(const std::string& name, base::TimeDelta poll_interval) in BaseVariable() argument
115 : BaseVariable(name, kVariableModePoll, poll_interval) {} in BaseVariable()
118 void SetPollInterval(base::TimeDelta poll_interval) { in SetPollInterval() argument
121 poll_interval_ = poll_interval; in SetPollInterval()
144 base::TimeDelta poll_interval) in BaseVariable() argument
147 poll_interval : base::TimeDelta()) {} in BaseVariable()
204 Variable(const std::string& name, const base::TimeDelta poll_interval) in Variable() argument
205 : BaseVariable(name, poll_interval) {} in Variable()
Dgeneric_variables.h67 PollCopyVariable(const std::string& name, const base::TimeDelta poll_interval, in PollCopyVariable() argument
70 : Variable<T>(name, poll_interval), ref_(ref), is_set_p_(is_set_p), in PollCopyVariable()
72 PollCopyVariable(const std::string& name, const base::TimeDelta poll_interval, in PollCopyVariable() argument
74 : PollCopyVariable(name, poll_interval, ref, is_set_p, std::string()) {} in PollCopyVariable()
75 PollCopyVariable(const std::string& name, const base::TimeDelta poll_interval, in PollCopyVariable() argument
77 : PollCopyVariable(name, poll_interval, ref, nullptr) {} in PollCopyVariable()
141 const base::TimeDelta poll_interval, in CallCopyVariable() argument
143 : Variable<T>(name, poll_interval), func_(func) {} in CallCopyVariable()
Dreal_system_provider.cc51 const base::TimeDelta poll_interval, in RetryPollVariable() argument
53 : Variable<T>(name, poll_interval), in RetryPollVariable()
55 base_interval_(poll_interval) { in RetryPollVariable()
Dfake_variable.h34 FakeVariable(const std::string& name, base::TimeDelta poll_interval) in FakeVariable() argument
35 : Variable<T>(name, poll_interval) {} in FakeVariable()
Dvariable_unittest.cc40 DefaultVariable(const string& name, const TimeDelta& poll_interval) in DefaultVariable() argument
41 : Variable<T>(name, poll_interval) {} in DefaultVariable()
/system/update_engine/
Domaha_response.h36 int poll_interval = 0; member
Dupdate_attempter_unittest.cc251 response.poll_interval = 234; in TEST_F()
Domaha_request_action.cc753 &output_object->poll_interval); in ParseResponse()
Dupdate_attempter.cc1013 std::max(0, omaha_request_action->GetOutputObject().poll_interval); in UpdateAttempter()