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

1 2

  /external/libweave/src/states/
state_change_queue.h 20 // |changed_properties| contains a property set with the new property values
25 : timestamp{time}, changed_properties{std::move(properties)} {}
27 std::unique_ptr<base::DictionaryValue> changed_properties; member in struct:weave::StateChange
36 const base::DictionaryValue& changed_properties);
state_change_queue.cc 18 const base::DictionaryValue& changed_properties) {
22 stored_changes->MergeDictionary(&changed_properties);
24 stored_changes.reset(changed_properties.DeepCopy());
state_change_queue_unittest.cc 36 EXPECT_JSON_EQ("{'prop':{'name': 23}}", *changes.front().changed_properties);
54 EXPECT_JSON_EQ(state1, *changes[0].changed_properties);
56 EXPECT_JSON_EQ(state2, *changes[1].changed_properties);
83 EXPECT_JSON_EQ(expected1, *changes[0].changed_properties);
85 EXPECT_JSON_EQ(expected2, *changes[1].changed_properties);
112 EXPECT_JSON_EQ(expected1, *changes[0].changed_properties);
116 EXPECT_JSON_EQ(expected2, *changes[1].changed_properties);
  /system/connectivity/shill/cellular/
cellular_bearer.cc 184 const KeyValueStore& changed_properties,
192 if (changed_properties.ContainsBool(MM_BEARER_PROPERTY_CONNECTED)) {
193 connected_ = changed_properties.GetBool(MM_BEARER_PROPERTY_CONNECTED);
197 if (changed_properties.ContainsString(MM_BEARER_PROPERTY_INTERFACE)) {
199 changed_properties.GetString(MM_BEARER_PROPERTY_INTERFACE);
202 if (changed_properties.ContainsKeyValueStore(MM_BEARER_PROPERTY_IP4CONFIG)) {
204 changed_properties.GetKeyValueStore(MM_BEARER_PROPERTY_IP4CONFIG);
210 if (changed_properties.ContainsKeyValueStore(MM_BEARER_PROPERTY_IP6CONFIG)) {
212 changed_properties.GetKeyValueStore(MM_BEARER_PROPERTY_IP6CONFIG);
mock_cellular.h 44 const KeyValueStore& changed_properties,
modem.cc 185 const KeyValueStore& changed_properties,
191 changed_properties,
cellular_capability_classic.cc 273 const KeyValueStore& changed_properties,
288 if (changed_properties.ContainsBool(kModemPropertyEnabled)) {
289 bool enabled = changed_properties.GetBool(kModemPropertyEnabled);
cellular_bearer.h 59 const KeyValueStore& changed_properties,
cellular_capability.h 94 const KeyValueStore& changed_properties,
cellular_capability_universal_cdma.cc 466 const KeyValueStore& changed_properties,
470 OnModemCDMAPropertiesChanged(changed_properties, invalidated_properties);
473 interface, changed_properties, invalidated_properties);
cellular_capability_classic.h 77 const KeyValueStore& changed_properties,
cellular_capability_universal_cdma.h 46 const KeyValueStore& changed_properties,
modem.h 112 const KeyValueStore& changed_properties,
cellular_capability_gsm.h 57 const KeyValueStore& changed_properties,
cellular_capability_universal.cc     [all...]
cellular_capability_universal.h 81 const KeyValueStore& changed_properties,
cellular.h 170 const KeyValueStore& changed_properties,
  /system/connectivity/shill/
dbus_properties_proxy_interface.h 38 const KeyValueStore& changed_properties,
  /system/connectivity/shill/dbus/
chromeos_dbus_properties_proxy.cc 94 const brillo::VariantDictionary& changed_properties,
98 KeyValueStore::ConvertFromVariantDictionary(changed_properties,
chromeos_dbus_properties_proxy.h 61 const brillo::VariantDictionary& changed_properties,
  /external/libbrillo/brillo/dbus/
exported_property_set.cc 139 VariantDictionary changed_properties{
145 signal->Send(interface_name, changed_properties, invalidated_properties);
  /external/libweave/src/
component_manager.h 31 // |changed_properties| contains a property set with the new property values
39 changed_properties{std::move(properties)} {}
42 std::unique_ptr<base::DictionaryValue> changed_properties; member in struct:weave::ComponentStateChange
component_manager_unittest.cc     [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
dbus_std_ifaces.py 256 changed_properties,
262 @param changed_properties: Dictionary containing the changed properties
270 str(changed_properties), str(invalidated_properties)))
  /system/connectivity/shill/wifi/
wifi_endpoint_unittest.cc 703 KeyValueStore changed_properties; local
707 changed_properties.SetInt16(WPASupplicant::kBSSPropertySignal,
711 endpoint->PropertiesChanged(changed_properties);
720 KeyValueStore changed_properties; local
721 changed_properties.SetString(WPASupplicant::kBSSPropertyMode,
723 endpoint->PropertiesChanged(changed_properties);
    [all...]

Completed in 1041 milliseconds

1 2