Searched refs:property_value (Results 1 – 10 of 10) sorted by relevance
/system/connectivity/shill/ |
D | dhcp_properties.cc | 85 string property_value; in Load() local 86 if (storage->GetString(id, GetFullPropertyName(name), &property_value)) { in Load() 87 properties_.SetString(name, property_value); in Load() 96 string property_value; in Save() local 100 property_value = properties_.GetString(name); in Save() 101 storage->SetString(id, GetFullPropertyName(name), property_value); in Save()
|
/system/connectivity/shill/test-rpc-proxy/ |
D | proxy_dbus_client.cc | 32 brillo::Any* property_value) { in GetPropertyValueFromProxy() argument 33 CHECK(property_value); in GetPropertyValueFromProxy() 40 *property_value = proxy_properties[property_name]; in GetPropertyValueFromProxy() 52 brillo::Any property_value; in IsProxyPropertyValueIn() local 54 if ((GetPropertyValueFromProxy<Proxy>(proxy, property_name, &property_value)) && in IsProxyPropertyValueIn() 56 property_value) != expected_values.end())) { in IsProxyPropertyValueIn() 60 *final_value = property_value; in IsProxyPropertyValueIn() 211 brillo::Any* property_value) { in GetPropertyValueFromDeviceProxy() argument 213 proxy, property_name, property_value); in GetPropertyValueFromDeviceProxy() 219 brillo::Any* property_value) { in GetPropertyValueFromServiceProxy() argument [all …]
|
D | proxy_dbus_client.h | 69 brillo::Any* property_value); 72 brillo::Any* property_value); 75 brillo::Any* property_value); 129 brillo::Any* property_value);
|
D | proxy_dbus_shill_wifi_client.cc | 40 brillo::Any property_value; in RemoveAllWifiEntries() local 42 profile_proxy.get(), shill::kEntriesProperty, &property_value)); in RemoveAllWifiEntries() 43 auto entry_ids = property_value.Get<std::vector<std::string>>(); in RemoveAllWifiEntries() 397 brillo::Any property_value; in DeleteEntriesForSsid() local 399 profile.get(), shill::kEntriesProperty, &property_value)) { in DeleteEntriesForSsid() 402 auto entry_ids = property_value.Get<std::vector<std::string>>(); in DeleteEntriesForSsid() 473 brillo::Any* property_value) { in GetPropertyOnDevice() argument 483 device.get(), property_name, property_value); in GetPropertyOnDevice() 489 const brillo::Any& property_value) { in SetPropertyOnDevice() argument 499 property_name, property_value, nullptr); in SetPropertyOnDevice()
|
D | proxy_rpc_server.cc | 334 brillo::Any property_value; in GetDbusPropertyOnDevice() local 336 interface_name, property_name, &property_value)) { in GetDbusPropertyOnDevice() 340 GetXmlRpcValueFromBrilloAnyValue(property_value, &result); in GetDbusPropertyOnDevice() 352 brillo::Any property_value; in SetDbusPropertyOnDevice() local 353 GetBrilloAnyValueFromXmlRpcValue(¶ms_in[2], &property_value); in SetDbusPropertyOnDevice() 355 interface_name, property_name, property_value); in SetDbusPropertyOnDevice()
|
D | proxy_shill_wifi_client.h | 106 brillo::Any* property_value) = 0; 109 const brillo::Any& property_value) = 0;
|
D | proxy_dbus_shill_wifi_client.h | 87 brillo::Any* property_value) override; 90 const brillo::Any& property_value) override;
|
/system/weaved/buffet/ |
D | shill_client.cc | 265 const Any& property_value) { in OnManagerPropertyChange() argument 276 for (const auto& device_path : property_value.TryGet<vector<ObjectPath>>()) { in OnManagerPropertyChange() 339 const Any& property_value) { in OnDevicePropertyChange() argument 350 ObjectPath service_path{property_value.TryGet<ObjectPath>()}; in OnDevicePropertyChange() 438 const Any& property_value) { in OnServicePropertyChange() argument 446 const string state{property_value.TryGet<string>()}; in OnServicePropertyChange() 456 VLOG(3) << "Signal strength=" << property_value.TryGet<uint8_t>(); in OnServicePropertyChange() 458 OnStrengthChangeForConnectingService(property_value.TryGet<uint8_t>()); in OnServicePropertyChange() 460 VLOG(3) << "Error=" << property_value.TryGet<std::string>(); in OnServicePropertyChange() 462 connecting_service_error_ = property_value.TryGet<std::string>(); in OnServicePropertyChange()
|
D | shill_client.h | 84 const brillo::Any& property_value); 91 const brillo::Any& property_value); 98 const brillo::Any& property_value);
|
/system/netd/server/ |
D | MDnsSdListener.cpp | 563 char property_value[PROPERTY_VALUE_MAX]; in startService() local 565 property_get(MDNS_SERVICE_STATUS, property_value, ""); in startService() 566 if (strcmp("running", property_value) != 0) { in startService()
|