Home
last modified time | relevance | path

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

/device/google/cuttlefish/host/libs/config/
Dtouchpad.cpp39 const std::vector<std::string> keyvalue = android::base::Split(pair, "="); in ParseTouchpadConfig() local
40 CF_EXPECT_EQ(keyvalue.size(), 2, in ParseTouchpadConfig()
42 const std::string& prop_key = keyvalue[0]; in ParseTouchpadConfig()
43 const std::string& prop_val = keyvalue[1]; in ParseTouchpadConfig()
Ddisplay.cpp50 const std::vector<std::string> keyvalue = android::base::Split(pair, "="); in ParseDisplayConfig() local
51 CF_EXPECT_EQ(keyvalue.size(), 2, in ParseDisplayConfig()
53 const std::string& prop_key = keyvalue[0]; in ParseDisplayConfig()
54 const std::string& prop_val = keyvalue[1]; in ParseDisplayConfig()
/device/google/cuttlefish/host/commands/kernel_log_monitor/
Dkernel_log_server.cc163 const auto& keyvalue = android::base::Split(field, "="); in HandleIncomingMessage() local
164 if (keyvalue.size() != 2) { in HandleIncomingMessage()
168 metadata[keyvalue[0]] = keyvalue[1]; in HandleIncomingMessage()