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

  /external/chromium_org/chromeos/network/onc/
onc_translation_tables.h 22 const char* onc_value; member in struct:chromeos::onc::StringTranslationEntry
47 const std::string& onc_value,
53 std::string* onc_value);
onc_mapper.cc 21 const base::Value& onc_value,
24 switch (onc_value.GetType()) {
27 onc_value.GetAsDictionary(&dict);
33 onc_value.GetAsList(&list);
38 result_value = MapPrimitive(signature, onc_value, error);
91 const base::Value& onc_value,
101 return MapValue(*field_signature->value_signature, onc_value, error);
137 const base::Value& onc_value,
139 return MapValue(signature, onc_value, error);
onc_mapper.h 43 // Calls |MapObject|, |MapArray| and |MapPrimitive| according to |onc_value|'s
47 const base::Value& onc_value,
78 // Maps the value |onc_value| of field |field_name| according to its field
81 // found in |object_signature|. Otherwise returns the mapping of |onc_value|.
85 const base::Value& onc_value,
103 const base::Value& onc_value,
onc_validator.h 100 // Compare |onc_value|s type with |onc_type| and validate/repair according to
103 const base::Value& onc_value,
119 const base::Value& onc_value,
133 const base::Value& onc_value,
onc_translation_tables.cc 296 const std::string& onc_value,
298 for (int i = 0; table[i].onc_value != NULL; ++i) {
299 if (onc_value != table[i].onc_value)
304 LOG(ERROR) << "Value '" << onc_value << "' cannot be translated to Shill";
310 std::string* onc_value) {
314 *onc_value = table[i].onc_value;
onc_translator_onc_to_shill.cc 238 const std::string& onc_value,
242 if (TranslateStringToShill(table, onc_value, &shill_value)) {
250 LOG(ERROR) << "Value '" << onc_value
onc_validator.cc 83 const base::Value& onc_value,
85 if (onc_value.GetType() != signature.onc_type) {
86 LOG(ERROR) << MessageHeader() << "Found value '" << onc_value
87 << "' of type '" << ValueTypeToString(onc_value.GetType())
95 Mapper::MapValue(signature, onc_value, error);
151 const base::Value& onc_value,
157 field_name, object_signature, onc_value, &current_field_unknown, error);
195 const base::Value& onc_value,
200 Mapper::MapEntry(index, signature, onc_value, error);
onc_translator_shill_to_onc.cc 399 std::string onc_value; local
400 if (TranslateStringToONC(table, shill_value, &onc_value)) {
401 onc_object_->SetStringWithoutPathExpansion(onc_field_name, onc_value);
onc_utils.cc 262 const base::Value& onc_value,
268 return Mapper::MapField(field_name, object_signature, onc_value,

Completed in 331 milliseconds