Searched refs:PollCopyVariable (Results 1 – 2 of 2) sorted by relevance
/system/update_engine/update_manager/ |
D | generic_variables.h | 51 class PollCopyVariable : public Variable<T> { 58 PollCopyVariable(const std::string& name, const T& ref, const bool* is_set_p, in PollCopyVariable() function 62 PollCopyVariable(const std::string& name, const T& ref, const bool* is_set_p) in PollCopyVariable() function 63 : PollCopyVariable(name, ref, is_set_p, std::string()) {} in PollCopyVariable() 64 PollCopyVariable(const std::string& name, const T& ref) in PollCopyVariable() function 65 : PollCopyVariable(name, ref, nullptr) {} in PollCopyVariable() 67 PollCopyVariable(const std::string& name, const base::TimeDelta poll_interval, in PollCopyVariable() function 72 PollCopyVariable(const std::string& name, const base::TimeDelta poll_interval, in PollCopyVariable() function 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() function [all …]
|
D | generic_variables_unittest.cc | 41 PollCopyVariable<int> var("var", source); in TEST_F() 63 PollCopyVariable<int> var("var", source, &is_set); in TEST_F() 93 PollCopyVariable<CopyConstructorTestClass> var("var", source); in TEST_F()
|