Home
last modified time | relevance | path

Searched refs:IsUpdateAllowedOver (Results 1 – 8 of 8) sorted by relevance

/system/update_engine/cros/
Dconnection_manager_unittest.cc218 EXPECT_TRUE(cmut_.IsUpdateAllowedOver(ConnectionType::kEthernet, in TEST_F()
223 EXPECT_TRUE(cmut_.IsUpdateAllowedOver(ConnectionType::kWifi, in TEST_F()
240 EXPECT_TRUE(cmut_.IsUpdateAllowedOver(ConnectionType::kCellular, in TEST_F()
259 EXPECT_TRUE(cmut_.IsUpdateAllowedOver(ConnectionType::kEthernet, in TEST_F()
261 EXPECT_TRUE(cmut_.IsUpdateAllowedOver(ConnectionType::kEthernet, in TEST_F()
263 EXPECT_TRUE(cmut_.IsUpdateAllowedOver(ConnectionType::kCellular, in TEST_F()
265 EXPECT_TRUE(cmut_.IsUpdateAllowedOver(ConnectionType::kWifi, in TEST_F()
270 EXPECT_TRUE(cmut_.IsUpdateAllowedOver(ConnectionType::kEthernet, in TEST_F()
272 EXPECT_TRUE(cmut_.IsUpdateAllowedOver(ConnectionType::kWifi, in TEST_F()
281 EXPECT_TRUE(cmut_.IsUpdateAllowedOver(ConnectionType::kCellular, in TEST_F()
[all …]
Dmock_connection_manager.h37 MOCK_CONST_METHOD2(IsUpdateAllowedOver,
Dconnection_manager_interface.h44 virtual bool IsUpdateAllowedOver(ConnectionType type,
Dconnection_manager.h44 bool IsUpdateAllowedOver(ConnectionType type,
Dconnection_manager.cc53 bool ConnectionManager::IsUpdateAllowedOver( in IsUpdateAllowedOver() function in chromeos_update_engine::ConnectionManager
Dcommon_service.cc339 *out_allowed = connection_manager->IsUpdateAllowedOver( in GetUpdateOverCellularPermission()
Domaha_request_action_unittest.cc839 EXPECT_CALL(mock_cm, IsUpdateAllowedOver(ConnectionType::kEthernet, _)) in TEST_F()
863 EXPECT_CALL(mock_cm, IsUpdateAllowedOver(ConnectionType::kCellular, _)) in TEST_F()
885 EXPECT_CALL(mock_cm, IsUpdateAllowedOver(ConnectionType::kCellular, _)) in TEST_F()
911 EXPECT_CALL(mock_cm, IsUpdateAllowedOver(ConnectionType::kCellular, _)) in TEST_F()
943 EXPECT_CALL(mock_cm, IsUpdateAllowedOver(ConnectionType::kCellular, _)) in TEST_F()
976 EXPECT_CALL(mock_cm, IsUpdateAllowedOver(ConnectionType::kCellular, _)) in TEST_F()
Domaha_request_action.cc1647 bool is_allowed = connection_manager->IsUpdateAllowedOver(type, tethering); in IsUpdateAllowedOverCurrentConnection()