Searched refs:PropertyBase (Results 1 – 3 of 3) sorted by relevance
/external/libchrome/dbus/ |
D | property.h | 137 class CHROME_DBUS_EXPORT PropertyBase { 139 PropertyBase(); 140 virtual ~PropertyBase(); 198 DISALLOW_COPY_AND_ASSIGN(PropertyBase); 235 void RegisterProperty(const std::string& name, PropertyBase* property); 260 virtual void Get(PropertyBase* property, GetCallback callback); 261 virtual void OnGet(PropertyBase* property, GetCallback callback, 266 virtual bool GetAndBlock(PropertyBase* property); 284 virtual void Set(PropertyBase* property, SetCallback callback); 285 virtual void OnSet(PropertyBase* property, SetCallback callback, [all …]
|
D | property.cc | 22 PropertyBase::PropertyBase() : property_set_(nullptr), is_valid_(false) {} in PropertyBase() function in dbus::PropertyBase 24 PropertyBase::~PropertyBase() {} in ~PropertyBase() 26 void PropertyBase::Init(PropertySet* property_set, const std::string& name) { in Init() 50 PropertyBase* property) { in RegisterProperty() 100 void PropertySet::Get(PropertyBase* property, GetCallback callback) { in Get() 115 void PropertySet::OnGet(PropertyBase* property, GetCallback callback, in OnGet() 137 bool PropertySet::GetAndBlock(PropertyBase* property) { in GetAndBlock() 191 void PropertySet::Set(PropertyBase* property, SetCallback callback) { in Set() 207 bool PropertySet::SetAndBlock(PropertyBase* property) { in SetAndBlock() 223 void PropertySet::OnSet(PropertyBase* property, in OnSet() [all …]
|
/external/libbrillo/brillo/dbus/ |
D | dbus_property.h | 20 class Property : public dbus::PropertyBase {
|