Home
last modified time | relevance | path

Searched refs:key_value (Results 1 – 7 of 7) sorted by relevance

/system/update_engine/payload_generator/
Dpayload_properties_unittest.cc137 string key_value; in TEST_F() local
139 &key_value)); in TEST_F()
140 EXPECT_EQ(kKeyValueProperties, key_value) << "Key Value contents:\n" in TEST_F()
141 << key_value; in TEST_F()
/system/bt/btif/include/
Dbtif_storage.h267 uint8_t* key_value,
276 Octet16* key_value);
/system/update_engine/common/
Dsubprocess.cc52 for (const auto& key_value : env) { in SetupChild() local
53 setenv(key_value.first.c_str(), key_value.second.c_str(), 0); in SetupChild()
Dsubprocess_unittest.cc95 for (const string& key_value : brillo::string_utils::Split(output, "\n")) { in ExpectedEnvVars() local
97 brillo::string_utils::SplitAtFirst(key_value, "=", true); in ExpectedEnvVars()
/system/core/init/
Dfirst_stage_mount.cpp434 std::string key_value; in PreloadAvbKeys() local
435 if (!ReadFileToString(path, &key_value)) { in PreloadAvbKeys()
438 key_blobs.emplace_back(std::move(key_value)); in PreloadAvbKeys()
/system/bt/btif/src/
Dbtif_storage.cc1091 uint8_t* key_value, in btif_storage_get_ble_bonding_key() argument
1118 btif_config_get_bin(remote_bd_addr.ToString(), name, key_value, &length); in btif_storage_get_ble_bonding_key()
1190 Octet16* key_value) { in btif_storage_get_ble_local_key() argument
1208 size_t length = key_value->size(); in btif_storage_get_ble_local_key()
1209 int ret = btif_config_get_bin("Adapter", name, key_value->data(), &length); in btif_storage_get_ble_local_key()
/system/core/adb/
Dadb.cpp275 std::vector<std::string> key_value = android::base::Split(prop, "="); in parse_banner() local
276 if (key_value.size() != 2) continue; in parse_banner()
278 const std::string& key = key_value[0]; in parse_banner()
279 const std::string& value = key_value[1]; in parse_banner()