HomeSort by relevance Sort by last modified time
    Searched refs:PropertySet (Results 1 - 25 of 42) sorted by null

1 2

  /system/connectivity/shill/dbus/
chromeos_supplicant_network_proxy.h 41 // This function will always return true, since PropertySet::Set is an
46 class PropertySet : public dbus::PropertySet {
48 PropertySet(dbus::ObjectProxy* object_proxy,
54 DISALLOW_COPY_AND_ASSIGN(PropertySet);
73 std::unique_ptr<PropertySet> properties_;
chromeos_wimax_manager_proxy.h 47 class PropertySet : public dbus::PropertySet {
49 PropertySet(dbus::ObjectProxy* object_proxy,
55 DISALLOW_COPY_AND_ASSIGN(PropertySet);
79 std::unique_ptr<PropertySet> properties_;
chromeos_wimax_network_proxy.h 48 class PropertySet : public dbus::PropertySet {
50 PropertySet(dbus::ObjectProxy* object_proxy,
61 DISALLOW_COPY_AND_ASSIGN(PropertySet);
83 std::unique_ptr<PropertySet> properties_;
chromeos_supplicant_network_proxy.cc 42 ChromeosSupplicantNetworkProxy::PropertySet::PropertySet(
46 : dbus::PropertySet(object_proxy, interface_name, callback) {
60 new PropertySet(
chromeos_modem_cdma_proxy.h 64 class PropertySet : public dbus::PropertySet {
66 PropertySet(dbus::ObjectProxy* object_proxy,
72 DISALLOW_COPY_AND_ASSIGN(PropertySet);
118 std::unique_ptr<PropertySet> properties_;
chromeos_modem_gsm_card_proxy.h 74 class PropertySet : public dbus::PropertySet {
76 PropertySet(dbus::ObjectProxy* object_proxy,
82 DISALLOW_COPY_AND_ASSIGN(PropertySet);
104 std::unique_ptr<PropertySet> properties_;
chromeos_modem_gsm_network_proxy.h 72 class PropertySet : public dbus::PropertySet {
74 PropertySet(dbus::ObjectProxy* object_proxy,
80 DISALLOW_COPY_AND_ASSIGN(PropertySet);
130 std::unique_ptr<PropertySet> properties_;
chromeos_supplicant_process_proxy.h 50 // This function will always return true since PropertySet::Set is an async
57 class PropertySet : public dbus::PropertySet {
59 PropertySet(dbus::ObjectProxy* object_proxy,
69 DISALLOW_COPY_AND_ASSIGN(PropertySet);
102 std::unique_ptr<PropertySet> properties_;
chromeos_wimax_device_proxy.h 64 class PropertySet : public dbus::PropertySet {
66 PropertySet(dbus::ObjectProxy* object_proxy,
74 DISALLOW_COPY_AND_ASSIGN(PropertySet);
100 std::unique_ptr<PropertySet> properties_;
chromeos_supplicant_interface_proxy.h 69 // The below set functions will always return true, since PropertySet::Set
79 class PropertySet : public dbus::PropertySet {
81 PropertySet(dbus::ObjectProxy* object_proxy,
92 DISALLOW_COPY_AND_ASSIGN(PropertySet);
129 std::unique_ptr<PropertySet> properties_;
chromeos_wimax_manager_proxy.cc 47 ChromeosWiMaxManagerProxy::PropertySet::PropertySet(
51 : dbus::PropertySet(object_proxy, interface_name, callback) {
78 new PropertySet(
chromeos_wimax_network_proxy.cc 48 ChromeosWiMaxNetworkProxy::PropertySet::PropertySet(
52 : dbus::PropertySet(object_proxy, interface_name, callback) {
78 new PropertySet(
chromeos_modem_cdma_proxy.cc 42 ChromeosModemCDMAProxy::PropertySet::PropertySet(
46 : dbus::PropertySet(object_proxy, interface_name, callback) {
76 new PropertySet(
chromeos_modem_gsm_card_proxy.cc 45 ChromeosModemGSMCardProxy::PropertySet::PropertySet(
49 : dbus::PropertySet(object_proxy, interface_name, callback) {
62 new PropertySet(
chromeos_modem_gsm_network_proxy.cc 44 ChromeosModemGSMNetworkProxy::PropertySet::PropertySet(
48 : dbus::PropertySet(object_proxy, interface_name, callback) {
78 new PropertySet(
chromeos_supplicant_process_proxy.cc 47 ChromeosSupplicantProcessProxy::PropertySet::PropertySet(
51 : dbus::PropertySet(object_proxy, interface_name, callback) {
75 new PropertySet(
chromeos_wimax_device_proxy.cc 50 ChromeosWiMaxDeviceProxy::PropertySet::PropertySet(
54 : dbus::PropertySet(object_proxy, interface_name, callback) {
82 new PropertySet(
  /external/libchrome/dbus/
property.cc 26 void PropertyBase::Init(PropertySet* property_set, const std::string& name) {
34 // PropertySet implementation.
37 PropertySet::PropertySet(
46 PropertySet::~PropertySet() {
49 void PropertySet::RegisterProperty(const std::string& name,
55 void PropertySet::ConnectSignals() {
60 base::Bind(&PropertySet::ChangedReceived,
62 base::Bind(&PropertySet::ChangedConnected
    [all...]
property.h 30 // from the PropertySet class defined here. This structure should contain a
33 // to the PropertySet constructor, and then call RegisterProperty() for each
39 // struct Properties : public dbus::PropertySet {
47 // : dbus::PropertySet(object_proxy, "com.example.DBus", callback) {
131 class PropertySet;
135 // associated PropertySet, property name, and the type-unsafe parts
136 // used by PropertySet.
144 // PropertySet::RegisterProperty() passing |this| for |property_set| so
148 void Init(PropertySet* property_set, const std::string& name);
168 // Method used by PropertySet to retrieve the value from a MessageReader
    [all...]
mock_object_manager.h 32 MOCK_METHOD2(GetProperties, PropertySet*(const ObjectPath&,
object_manager.h 40 // struct Properties : public dbus::PropertySet {
48 // : dbus::PropertySet(object_proxy, kExampleInterface, callback) {
83 // dbus::PropertySet* CreateProperties(dbus::ObjectProxy* object_proxy,
91 // return static_cast<dbus::PropertySet*>(properties);
153 // subclass of dbus::PropertySet; ObjectManager will then connect signals
155 virtual PropertySet* CreateProperties(
192 // method will be used to create instances of dbus::PropertySet* when
216 // Returns a PropertySet* pointer for the given |object_path| and
221 PropertySet* GetProperties(const ObjectPath& object_path,
256 // the correct PropertySet
    [all...]
  /external/libbrillo/brillo/dbus/
dbus_property.h 30 void Get(dbus::PropertySet::GetCallback callback) {
43 void Set(const T& value, dbus::PropertySet::SetCallback callback) {
54 // Method used by PropertySet to retrieve the value from a MessageReader,
61 // Method used by PropertySet to append the set value to a MessageWriter,
68 // Method used by test and stub implementations of dbus::PropertySet::Set
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_property.py 14 class PropertySet(PropertyBase):
46 raise PropertySet(self._spam)
100 self.assertRaises(PropertySet, setattr, sub, "spam", None)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_property.py 14 class PropertySet(PropertyBase):
46 raise PropertySet(self._spam)
100 self.assertRaises(PropertySet, setattr, sub, "spam", None)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_property.py 14 class PropertySet(PropertyBase):
46 raise PropertySet(self._spam)
100 self.assertRaises(PropertySet, setattr, sub, "spam", None)

Completed in 381 milliseconds

1 2