Lines Matching refs:store_
175 store_(PropertyStore::PropertyChangeCallback( in Service()
218 store_.RegisterConstBool(kConnectableProperty, &connectable_); in Service()
222 store_.RegisterConstStrings(kEapRemoteCertificationProperty, in Service()
232 store_.RegisterConstString(kErrorProperty, &error_); in Service()
233 store_.RegisterConstString(kErrorDetailsProperty, &error_details_); in Service()
247 store_.RegisterConstString(kPreviousErrorProperty, in Service()
249 store_.RegisterConstInt32(kPreviousErrorSerialNumberProperty, in Service()
263 store_.RegisterBool(kSaveCredentialsProperty, &save_credentials_); in Service()
273 store_.RegisterConstUint8(kSignalStrengthProperty, &strength_); in Service()
274 store_.RegisterString(kUIDataProperty, &ui_data_); in Service()
279 store_.RegisterConstInt32(kConnectionIdProperty, &connection_id_); in Service()
280 store_.RegisterBool(kDnsAutoFallbackProperty, &is_dns_auto_fallback_allowed_); in Service()
281 store_.RegisterBool(kLinkMonitorDisableProperty, &link_monitor_disabled_); in Service()
282 store_.RegisterBool(kManagedCredentialsProperty, &managed_credentials_); in Service()
289 store_.RegisterConstString(kPortalDetectionFailedPhaseProperty, in Service()
291 store_.RegisterConstString(kPortalDetectionFailedStatusProperty, in Service()
296 static_ip_parameters_.PlumbPropertyStore(&store_); in Service()
301 dhcp_properties_->InitPropertyStore(&store_); in Service()
667 store_.SetBoolProperty(it.first, it.second.Get<bool>(), &set_error); in Configure()
678 store_.SetInt32Property(it.first, it.second.Get<int32_t>(), &set_error); in Configure()
689 store_.SetKeyValueStoreProperty(it.first, in Configure()
702 store_.SetStringProperty(it.first, it.second.Get<string>(), &set_error); in Configure()
713 store_.SetStringsProperty(it.first, it.second.Get<Strings>(), &set_error); in Configure()
724 store_.SetStringmapProperty(it.first, in Configure()
740 if (!store_.GetBoolProperty(it.first, &value, &get_error) || in DoPropertiesMatch()
748 if (!store_.GetInt32Property(it.first, &value, &get_error) || in DoPropertiesMatch()
756 if (!store_.GetStringProperty(it.first, &value, &get_error) || in DoPropertiesMatch()
764 if (!store_.GetStringsProperty(it.first, &value, &get_error) || in DoPropertiesMatch()
772 if (!store_.GetStringmapProperty(it.first, &value, &get_error) || in DoPropertiesMatch()
780 if (!store_.GetKeyValueStoreProperty(it.first, &value, &get_error) || in DoPropertiesMatch()
1349 store_.RegisterDerivedBool( in HelpRegisterDerivedBool()
1358 store_.RegisterDerivedInt32( in HelpRegisterDerivedInt32()
1367 store_.RegisterDerivedString( in HelpRegisterDerivedString()
1375 store_.RegisterDerivedRpcIdentifier( in HelpRegisterConstDerivedRpcIdentifier()
1384 store_.RegisterDerivedUint16( in HelpRegisterConstDerivedUint16()
1391 store_.RegisterDerivedStrings( in HelpRegisterConstDerivedStrings()
1398 store_.RegisterDerivedString( in HelpRegisterConstDerivedString()
1410 store_.RegisterDerivedBool(name, accessor); in HelpRegisterObservedDerivedBool()