Home | History | Annotate | Download | only in update_manager

Lines Matching refs:ref

53   // Creates the variable returning copies of the passed |ref|. The reference to
58 PollCopyVariable(const std::string& name, const T& ref, const bool* is_set_p,
60 : Variable<T>(name, kVariableModePoll), ref_(ref), is_set_p_(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) {}
68 const T& ref, const bool* is_set_p,
70 : Variable<T>(name, poll_interval), ref_(ref), is_set_p_(is_set_p),
73 const T& ref, const bool* is_set_p)
74 : PollCopyVariable(name, poll_interval, ref, is_set_p, std::string()) {}
76 const T& ref)
77 : PollCopyVariable(name, poll_interval, ref, nullptr) {}