OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cohort_hint
(Results
1 - 7
of
7
) sorted by null
/system/update_engine/binder_bindings/android/brillo/
IUpdateEngine.aidl
31
void SetCohortHint(in String
cohort_hint
);
/system/update_engine/client_library/include/update_engine/
client.h
71
virtual bool SetCohortHint(const std::string&
cohort_hint
) = 0;
72
virtual bool GetCohortHint(std::string*
cohort_hint
) const = 0;
/system/update_engine/client_library/
client_dbus.h
50
bool SetCohortHint(const std::string&
cohort_hint
) override;
51
bool GetCohortHint(std::string*
cohort_hint
) const override;
client_dbus.cc
75
bool DBusUpdateEngineClient::SetCohortHint(const string&
cohort_hint
) {
76
return proxy_->SetCohortHint(
cohort_hint
, nullptr);
79
bool DBusUpdateEngineClient::GetCohortHint(string*
cohort_hint
) const {
80
return proxy_->GetCohortHint(
cohort_hint
, nullptr);