Home | History | Annotate | Download | only in cros

Lines Matching refs:prop

339 void Network::SetValueProperty(const char* prop, const base::Value& value) {
340 DCHECK(prop);
343 CrosSetNetworkServiceProperty(service_path_, prop, value);
351 void Network::ClearProperty(const char* prop) {
352 DCHECK(prop);
355 CrosClearNetworkServiceProperty(service_path_, prop);
364 const char* prop, const std::string& str, std::string* dest) {
367 SetValueProperty(prop, base::StringValue(str));
370 void Network::SetOrClearStringProperty(const char* prop,
374 ClearProperty(prop);
378 SetStringProperty(prop, str, dest);
382 void Network::SetBooleanProperty(const char* prop, bool b, bool* dest) {
385 SetValueProperty(prop, base::FundamentalValue(b));
388 void Network::SetIntegerProperty(const char* prop, int i, int* dest) {
391 SetValueProperty(prop, base::FundamentalValue(i));