Home
last modified time | relevance | path

Searched refs:key_value_pair (Results 1 – 3 of 3) sorted by relevance

/system/connectivity/shill/
Dkey_value_store.cc411 for (const auto& key_value_pair : in_store.properties_) { in ConvertToVariantDictionary() local
412 if (key_value_pair.second.IsTypeCompatible<KeyValueStore>()) { in ConvertToVariantDictionary()
417 key_value_pair.second.Get<KeyValueStore>(), &dict); in ConvertToVariantDictionary()
418 out_dict->emplace(key_value_pair.first, dict); in ConvertToVariantDictionary()
420 out_dict->insert(key_value_pair); in ConvertToVariantDictionary()
428 for (const auto& key_value_pair : in_dict) { in ConvertFromVariantDictionary() local
429 if (key_value_pair.second.IsTypeCompatible<brillo::VariantDictionary>()) { in ConvertFromVariantDictionary()
434 key_value_pair.second.Get<brillo::VariantDictionary>(), &store); in ConvertFromVariantDictionary()
435 out_store->properties_.emplace(key_value_pair.first, store); in ConvertFromVariantDictionary()
437 out_store->properties_.insert(key_value_pair); in ConvertFromVariantDictionary()
/system/update_engine/common/
Dsubprocess_unittest.cc92 auto key_value_pair = brillo::string_utils::SplitAtFirst( in ExpectedEnvVars() local
94 EXPECT_NE(allowed_envs.end(), allowed_envs.find(key_value_pair.first)); in ExpectedEnvVars()
/system/update_engine/
Dupdate_attempter_android.cc124 for (const string& key_value_pair : key_value_pair_headers) { in ApplyPayload() local
128 key_value_pair, "=", &key, &value, false)) { in ApplyPayload()
130 error, FROM_HERE, "Passed invalid header: " + key_value_pair); in ApplyPayload()