HomeSort by relevance Sort by last modified time
    Searched refs:PollCopyVariable (Results 1 - 2 of 2) sorted by null

  /system/update_engine/update_manager/
generic_variables.h 44 // var_something_foo = new PollCopyVariable<MyType>(foo_);
51 class PollCopyVariable : public Variable<T> {
58 PollCopyVariable(const std::string& name, const T& ref, const bool* is_set_p,
62 PollCopyVariable(const std::string& name, const T& ref, const bool* is_set_p)
63 : PollCopyVariable(name, ref, is_set_p, std::string()) {}
64 PollCopyVariable(const std::string& name, const T& ref)
65 : PollCopyVariable(name, ref, nullptr) {}
67 PollCopyVariable(const std::string& name, const base::TimeDelta poll_interval,
72 PollCopyVariable(const std::string& name, const base::TimeDelta poll_interval,
74 : PollCopyVariable(name, poll_interval, ref, is_set_p, std::string()) {
    [all...]
generic_variables_unittest.cc 41 PollCopyVariable<int> var("var", source);
63 PollCopyVariable<int> var("var", source, &is_set);
93 PollCopyVariable<CopyConstructorTestClass> var("var", source);

Completed in 340 milliseconds