Home
last modified time | relevance | path

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

/external/libchrome/dbus/
Dproperty.h137 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 …]
Dproperty.cc22 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()
190 void PropertySet::Set(PropertyBase* property, SetCallback callback) { in Set()
206 bool PropertySet::SetAndBlock(PropertyBase* property) { in SetAndBlock()
221 void PropertySet::OnSet(PropertyBase* property, in OnSet()
[all …]
/external/python/cpython2/Lib/test/
Dtest_property.py8 class PropertyBase(Exception): class
11 class PropertyGet(PropertyBase):
14 class PropertySet(PropertyBase):
17 class PropertyDel(PropertyBase):
/external/libbrillo/brillo/dbus/
Ddbus_property.h20 class Property : public dbus::PropertyBase {