HomeSort by relevance Sort by last modified time
    Searched refs:onc_object (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/chromeos/network/onc/
onc_validator.h 80 // Validate the given |onc_object| according to |object_signature|. The
95 const base::DictionaryValue& onc_object,
113 const base::DictionaryValue& onc_object,
139 // |onc_object| according to |object_signature|. |result| must point to a
143 const base::DictionaryValue& onc_object,
153 const base::DictionaryValue& onc_object,
157 const base::DictionaryValue& onc_object,
161 const base::DictionaryValue& onc_object,
165 const base::DictionaryValue& onc_object,
169 const base::DictionaryValue& onc_object,
    [all...]
onc_translator.h 20 // Translates a hierarchical ONC dictionary |onc_object| to a flat Shill
21 // dictionary. The |signature| declares the type of |onc_object| and must point
30 const base::DictionaryValue& onc_object);
onc_utils.cc 176 base::DictionaryValue* onc_object) {
178 if (!onc_object->GetStringWithoutPathExpansion(fieldname, &user_string))
195 onc_object->SetStringWithoutPathExpansion(fieldname, user_string);
201 base::DictionaryValue* onc_object) {
203 ExpandField(eap::kAnonymousIdentity, substitution, onc_object);
204 ExpandField(eap::kIdentity, substitution, onc_object);
207 ExpandField(vpn::kUsername, substitution, onc_object);
211 for (base::DictionaryValue::Iterator it(*onc_object); !it.IsAtEnd();
214 if (!onc_object->GetDictionaryWithoutPathExpansion(it.key(), &inner_object))
245 const base::DictionaryValue& onc_object,
    [all...]
onc_normalizer.h 30 const base::DictionaryValue& onc_object);
36 const base::DictionaryValue& onc_object,
onc_mapper.h 51 // into each field of |onc_object|, and drops unknown fields. Result of the
56 const base::DictionaryValue& onc_object,
67 // Maps each field of the given |onc_object| according to |object_signature|.
73 const base::DictionaryValue& onc_object,
onc_utils.h 71 // specification. The object of |onc_object| is modified in place. Currently
77 base::DictionaryValue* onc_object);
85 // Creates a copy of |onc_object| with all values of sensitive fields replaced
90 const base::DictionaryValue& onc_object,
onc_validator.cc 65 const base::DictionaryValue& onc_object,
72 MapValue(*object_signature, onc_object, &error);
113 const base::DictionaryValue& onc_object,
117 bool valid = ValidateObjectDefault(signature, onc_object, repaired.get());
120 valid = ValidateToplevelConfiguration(onc_object, repaired.get());
122 valid = ValidateNetworkConfiguration(onc_object, repaired.get());
124 valid = ValidateEthernet(onc_object, repaired.get());
126 valid = ValidateIPConfig(onc_object, repaired.get());
128 valid = ValidateWiFi(onc_object, repaired.get());
130 valid = ValidateVPN(onc_object, repaired.get())
    [all...]
onc_translator_onc_to_shill.cc 37 // |onc_object| according to |onc_signature| into |shill_dictionary|. This
44 const base::DictionaryValue& onc_object,
47 onc_object_(&onc_object),
229 // Iterates recursively over |onc_object| and its |signature|. At each object
233 const base::DictionaryValue& onc_object,
235 // Translates fields of |onc_object| and writes them to |shill_dictionary_|.
236 LocalTranslator translator(signature, onc_object, shill_dictionary);
240 for (base::DictionaryValue::Iterator it(onc_object); !it.IsAtEnd();
258 const base::DictionaryValue& onc_object) {
261 TranslateONCHierarchy(*onc_signature, onc_object, shill_dictionary.get())
    [all...]
onc_mapper.cc 48 const base::DictionaryValue& onc_object,
53 MapFields(signature, onc_object, &found_unknown_field, error, result.get());
66 const base::DictionaryValue& onc_object,
70 for (base::DictionaryValue::Iterator it(onc_object); !it.IsAtEnd();
onc_validator_unittest.cc 24 // Validate |onc_object| with the given |signature|. The object is considered
26 // |strict| is true. |onc_object| and the resulting repaired object of the
30 scoped_ptr<base::DictionaryValue> onc_object,
43 original_object_ = onc_object.Pass();
204 const base::DictionaryValue* onc_object = NULL; local
205 CHECK(dict->GetDictionary(name, &onc_object));
206 return make_scoped_ptr(onc_object->DeepCopy());
onc_normalizer.cc 26 const base::DictionaryValue& onc_object) {
30 MapObject(*object_signature, onc_object, &error);
37 const base::DictionaryValue& onc_object,
40 Mapper::MapObject(signature, onc_object, error);
  /external/chromium_org/chromeos/network/
network_ui_data.cc 157 void TranslateCertificatePattern(const base::DictionaryValue& onc_object,
160 bool success = pattern.CopyFromDictionary(onc_object);
193 const base::DictionaryValue& onc_object,
196 TranslateCertificatePattern(onc_object, ui_data);
198 TranslateEAP(onc_object, ui_data);
200 TranslateIPsec(onc_object, ui_data);
202 TranslateOpenVPN(onc_object, ui_data);
205 for (base::DictionaryValue::Iterator it(onc_object); !it.IsAtEnd();
managed_network_configuration_handler.cc 118 // onc::FieldIsCredential) of |onc_object|.
121 base::DictionaryValue* onc_object) {
122 base::DictionaryValue::Iterator it(*onc_object);
128 onc_object->GetWithoutPathExpansion(field_name, &value);
150 onc_object->RemoveWithoutPathExpansion(field_name, NULL);
    [all...]
  /external/chromium_org/chromeos/tools/onc_validator/
onc_validator.cc 119 scoped_ptr<base::DictionaryValue> onc_object = ReadDictionary(args[1]); local
121 if (!onc_object)
151 validator.ValidateAndRepairObject(signature, *onc_object, &result);

Completed in 203 milliseconds