Home
last modified time | relevance | path

Searched refs:cohort_hint (Results 1 – 4 of 4) sorted by relevance

/system/update_engine/client_library/include/update_engine/
Dclient.h71 virtual bool SetCohortHint(const std::string& cohort_hint) = 0;
72 virtual bool GetCohortHint(std::string* cohort_hint) const = 0;
/system/update_engine/client_library/
Dclient_dbus.cc108 bool DBusUpdateEngineClient::SetCohortHint(const string& cohort_hint) { in SetCohortHint() argument
109 return proxy_->SetCohortHint(cohort_hint, nullptr); in SetCohortHint()
112 bool DBusUpdateEngineClient::GetCohortHint(string* cohort_hint) const { in GetCohortHint()
113 return proxy_->GetCohortHint(cohort_hint, nullptr); in GetCohortHint()
Dclient_dbus.h52 bool SetCohortHint(const std::string& cohort_hint) override;
53 bool GetCohortHint(std::string* cohort_hint) const override;
/system/update_engine/
Dupdate_engine_client.cc231 cohort_hint, "", "Set the current cohort hint to the passed value."); in ProcessFlags()
358 string cohort_hint; in ProcessFlags() local
359 if (!client_->GetCohortHint(&cohort_hint)) { in ProcessFlags()
364 LOG(INFO) << "Current cohort hint: \"" << cohort_hint << "\""; in ProcessFlags()