Home
last modified time | relevance | path

Searched refs:StringForConnectionType (Results 1 – 5 of 5) sorted by relevance

/aosp12/system/update_engine/cros/
H A Dconnection_manager_unittest.cc38 using chromeos_update_engine::connection_utils::StringForConnectionType;
234 allowed_set.insert(StringForConnectionType(ConnectionType::kCellular)); in TEST_F()
253 allowed_set.insert(StringForConnectionType(ConnectionType::kCellular)); in TEST_F()
306 allowed_set.insert(StringForConnectionType(ConnectionType::kEthernet)); in TEST_F()
307 allowed_set.insert(StringForConnectionType(ConnectionType::kWifi)); in TEST_F()
342 StringForConnectionType(ConnectionType::kEthernet)); in TEST_F()
344 StringForConnectionType(ConnectionType::kWifi)); in TEST_F()
346 StringForConnectionType(ConnectionType::kCellular)); in TEST_F()
347 EXPECT_STREQ("Unknown", StringForConnectionType(ConnectionType::kUnknown)); in TEST_F()
349 StringForConnectionType(static_cast<ConnectionType>(999999))); in TEST_F()
H A Domaha_request_action.cc1673 << connection_utils::StringForConnectionType(type) in IsUpdateAllowedOverCurrentConnection()
/aosp12/system/update_engine/update_manager/
H A Dboxed_value.cc37 using chromeos_update_engine::connection_utils::StringForConnectionType;
103 return StringForConnectionType(*val);
115 ret += StringForConnectionType(type);
/aosp12/system/update_engine/common/
H A Dconnection_utils.h45 const char* StringForConnectionType(ConnectionType type);
H A Dconnection_utils.cc54 const char* StringForConnectionType(ConnectionType type) { in StringForConnectionType() function