Home
last modified time | relevance | path

Searched refs:upstart_ (Results 1 – 4 of 4) sorted by relevance

/system/connectivity/shill/upstart/
Dupstart_unittest.cc61 : upstart_(&control_), in UpstartTest()
66 Upstart upstart_; member in shill::UpstartTest
72 upstart_.NotifyDisconnected(); in TEST_F()
77 upstart_.NotifyConnected(); in TEST_F()
/system/connectivity/shill/
Dmanager_unittest.cc129 upstart_(new NiceMock<MockUpstart>(control_interface())) { in ManagerTest()
192 manager()->upstart_.reset(upstart_); in ManagerTest()
516 MockUpstart* upstart_; member in shill::ManagerTest
3500 EXPECT_CALL(*upstart_, NotifyDisconnected()); in TEST_F()
3501 EXPECT_CALL(*upstart_, NotifyConnected()).Times(0); in TEST_F()
3504 Mock::VerifyAndClearExpectations(upstart_); in TEST_F()
3513 EXPECT_CALL(*upstart_, NotifyDisconnected()).Times(0); in TEST_F()
3514 EXPECT_CALL(*upstart_, NotifyConnected()); in TEST_F()
3534 Mock::VerifyAndClearExpectations(upstart_); in TEST_F()
3541 EXPECT_CALL(*upstart_, NotifyDisconnected()); in TEST_F()
[all …]
Dmanager.cc268 upstart_.reset(new Upstart(control_interface_)); in Start()
2116 upstart_->NotifyConnected(); in RefreshConnectionState()
2119 upstart_->NotifyDisconnected(); in RefreshConnectionState()
2121 upstart_->NotifyDisconnected(); in RefreshConnectionState()
Dmanager.h836 std::unique_ptr<Upstart> upstart_; variable