Searched defs:properties (Results 1 - 25 of 88) sorted by relevance

1234

/system/connectivity/shill/test-scripts/
H A Dlist-services8 properties = service.GetProperties(utf8_strings = True) variable
12 for key in properties.keys():
14 (key, flimflam.convert_dbus_value(properties[key], 4))
H A Dget-profile-entry37 properties = profile.GetEntry(entry_name) variable
38 for key in properties.keys():
40 (key, flimflam.convert_dbus_value(properties[key], 4))
H A Dcheck-rssi38 properties = service.GetProperties(utf8_strings = True) variable
39 if "Name" not in properties:
42 name = properties["Name"]
45 (name, int(strength.get(name, -1)), int(properties.get("Strength", -1)))
H A Dget-service31 properties = service.GetProperties(utf8_strings = True) variable
35 for key in properties.keys():
37 (key, flimflam.convert_dbus_value(properties[key], 4))
H A Dlist-ipconfigs20 properties = device.GetProperties(utf8_strings = True) variable
21 for path in properties["IPConfigs"]:
H A Dshow-introspection13 properties = manager.GetProperties(utf8_strings = True) variable
15 for path in properties["Devices"]:
/system/connectivity/shill/
H A Dgeolocation_info.h30 // This class stores properties (key-value pairs) for a single entity
40 const std::map<std::string, std::string> properties() const { function in class:shill::GeolocationInfo
H A Dkey_value_store.h33 // expose its instance members as properties accessible via
137 const brillo::VariantDictionary& properties() const { function in class:shill::KeyValueStore
H A Ddhcp_properties.h46 // Loads DHCP properties from |storage| in group |id|.
49 // Saves DHCP properties to |storage| in group |id|.
72 const KeyValueStore& properties() const { return properties_; }; function in class:shill::DhcpProperties
H A Dipconfig_unittest.cc91 void UpdateProperties(const IPConfig::Properties& properties) { argument
92 ipconfig_->UpdateProperties(properties, true);
103 void ExpectPropertiesEqual(const IPConfig::Properties& properties) { argument
104 EXPECT_EQ(properties.address, ipconfig_->properties().address);
105 EXPECT_EQ(properties.subnet_prefix, ipconfig_->properties().subnet_prefix);
106 EXPECT_EQ(properties.broadcast_address,
107 ipconfig_->properties().broadcast_address);
108 EXPECT_EQ(properties
154 IPConfig::Properties properties; local
[all...]
H A Dppp_device.cc50 IPConfig::Properties properties = local
52 properties.blackhole_ipv6 = blackhole_ipv6;
53 UpdateIPConfig(properties);
61 IPConfig::Properties properties = local
63 properties.blackhole_ipv6 = blackhole_ipv6;
64 properties.mtu = mtu;
65 UpdateIPConfig(properties);
85 IPConfig::Properties properties; local
86 properties.address_family = IPAddress::kFamilyIPv4;
87 properties
[all...]
/system/connectivity/shill/cellular/
H A Dmodem_classic.cc71 InterfaceToProperties properties; local
72 properties[MM_MODEM_INTERFACE] = modem_properties;
73 CreateDeviceFromModemProperties(properties);
H A Dmodem_1.cc63 void Modem1::CreateDeviceMM1(const InterfaceToProperties& properties) { argument
67 properties.find(MM_DBUS_INTERFACE_MODEM);
68 if (it == properties.end()) {
69 LOG(ERROR) << "Cellular device with no modem properties";
90 CreateDeviceFromModemProperties(properties);
H A Dmodem_1_unittest.cc107 InterfaceToProperties properties; local
115 properties[MM_DBUS_INTERFACE_MODEM] = modem_properties;
121 properties[MM_DBUS_INTERFACE_MODEM_MODEM3GPP] = modem3gpp_properties;
125 modem_->CreateDeviceMM1(properties);
H A Dmodem_manager_1.cc87 const InterfaceToProperties& properties) {
96 InitModem1(modem1, properties);
100 const InterfaceToProperties& properties) {
104 modem->CreateDeviceMM1(properties);
111 const InterfaceToProperties& properties) {
112 if (ContainsKey(properties, MM_DBUS_INTERFACE_MODEM)) {
113 AddModem1(object_path, properties);
86 AddModem1(const string& path, const InterfaceToProperties& properties) argument
99 InitModem1(shared_ptr<Modem1> modem, const InterfaceToProperties& properties) argument
109 OnInterfacesAddedSignal( const string& object_path, const InterfaceToProperties& properties) argument
H A Dmodem_unittest.cc116 InterfaceToProperties properties; local
117 properties[MM_MODEM_INTERFACE].SetUint(kSentinel, kSentinelValue);
131 modem_->CreateDeviceFromModemProperties(properties);
178 InterfaceToProperties properties; local
184 // No modem interface properties: no device created
185 modem_->CreateDeviceFromModemProperties(properties);
188 properties[MM_MODEM_INTERFACE] = KeyValueStore();
196 modem_->CreateDeviceFromModemProperties(properties);
210 modem_->CreateDeviceFromModemProperties(properties);
217 InterfaceToProperties properties; local
[all...]
/system/connectivity/shill/dbus/
H A Dchromeos_supplicant_bss_proxy.cc59 const brillo::VariantDictionary& properties) {
62 KeyValueStore::ConvertFromVariantDictionary(properties, &store);
58 PropertiesChanged( const brillo::VariantDictionary& properties) argument
H A Dchromeos_dbus_properties_proxy.cc85 const brillo::VariantDictionary& properties) {
88 KeyValueStore::ConvertFromVariantDictionary(properties, &properties_store);
83 MmPropertiesChanged( const string& interface, const brillo::VariantDictionary& properties) argument
H A Dchromeos_ipconfig_dbus_adaptor.cc99 brillo::ErrorPtr* error, brillo::VariantDictionary* properties) {
102 properties,
98 GetProperties( brillo::ErrorPtr* error, brillo::VariantDictionary* properties) argument
H A Dchromeos_modem_simple_proxy.cc58 void ChromeosModemSimpleProxy::Connect(const KeyValueStore& properties, argument
64 KeyValueStore::ConvertToVariantDictionary(properties, &properties_dict);
H A Dchromeos_profile_dbus_adaptor.cc85 brillo::ErrorPtr* error, brillo::VariantDictionary* properties) {
88 properties,
84 GetProperties( brillo::ErrorPtr* error, brillo::VariantDictionary* properties) argument
/system/update_engine/
H A Dimage_properties_android.cc34 // Build time properties name used in Brillo.
103 const MutableImageProperties& properties) {
106 prefs->SetString(kPrefsImgPropChannelName, properties.target_channel) &&
108 properties.is_powerwash_allowed));
102 StoreMutableImageProperties(SystemState* system_state, const MutableImageProperties& properties) argument
/system/connectivity/shill/test-rpc-proxy/
H A Dproxy_rpc_security_types.cc64 void SecurityConfig::GetServiceProperties(brillo::VariantDictionary* properties) { argument
66 // properties to be sent to Shill.
84 void WEPConfig::GetServiceProperties(brillo::VariantDictionary* properties) { argument
88 (*properties)[shill::kPassphraseProperty] = passphrase;
125 void WPAConfig::GetServiceProperties(brillo::VariantDictionary* properties) { argument
126 (*properties)[shill::kPassphraseProperty] = psk_;
/system/update_engine/update_manager/
H A Dreal_shill_provider.cc75 brillo::VariantDictionary properties; local
77 if (!manager_proxy->GetProperties(&properties, &error))
81 properties.find(shill::kDefaultServiceProperty);
82 if (prop_default_service != properties.end()) {
138 // Get the connection properties synchronously.
139 brillo::VariantDictionary properties; local
141 if (!service->GetProperties(&properties, &error)) {
148 const auto& prop_tethering = properties.find(shill::kTetheringProperty);
149 if (prop_tethering == properties.end()) {
164 const auto& prop_type = properties
[all...]
/system/bt/service/common/bluetooth/binder/
H A DIBluetoothGattServer.cpp86 int properties = data.readInt32(); local
91 server_if, *uuid, properties, permissions, &out_id);
230 int properties, int permissions,
238 data.writeInt32(properties);
228 AddCharacteristic( int server_if, const bluetooth::UUID& uuid, int properties, int permissions, std::unique_ptr<bluetooth::GattIdentifier>* out_id) argument

Completed in 270 milliseconds

1234