Home
last modified time | relevance | path

Searched refs:GetAndClearRecordedStateChanges (Results 1 – 9 of 9) sorted by relevance

/external/libweave/src/states/
Dstate_change_queue_unittest.cc26 EXPECT_TRUE(queue_->GetAndClearRecordedStateChanges().empty()); in TEST_F()
33 auto changes = queue_->GetAndClearRecordedStateChanges(); in TEST_F()
37 EXPECT_TRUE(queue_->GetAndClearRecordedStateChanges().empty()); in TEST_F()
51 auto changes = queue_->GetAndClearRecordedStateChanges(); in TEST_F()
57 EXPECT_TRUE(queue_->GetAndClearRecordedStateChanges().empty()); in TEST_F()
77 auto changes = queue_->GetAndClearRecordedStateChanges(); in TEST_F()
106 auto changes = queue_->GetAndClearRecordedStateChanges(); in TEST_F()
Dstate_change_queue.h37 std::vector<StateChange> GetAndClearRecordedStateChanges();
Dstate_change_queue.cc43 std::vector<StateChange> StateChangeQueue::GetAndClearRecordedStateChanges() { in GetAndClearRecordedStateChanges() function in weave::StateChangeQueue
/external/libweave/src/
Dcomponent_manager.h185 virtual StateSnapshot GetAndClearRecordedStateChanges() = 0;
Dmock_component_manager.h119 StateSnapshot GetAndClearRecordedStateChanges() override { in GetAndClearRecordedStateChanges() function
Dcomponent_manager_impl.h149 StateSnapshot GetAndClearRecordedStateChanges() override;
Dcomponent_manager_impl.cc453 ComponentManagerImpl::GetAndClearRecordedStateChanges() { in GetAndClearRecordedStateChanges() function in weave::ComponentManagerImpl
457 auto changes = pair.second->GetAndClearRecordedStateChanges(); in GetAndClearRecordedStateChanges()
Dcomponent_manager_unittest.cc1210 auto snapshot = manager_.GetAndClearRecordedStateChanges(); in TEST_F()
1235 auto snapshot2 = manager_.GetAndClearRecordedStateChanges(); in TEST_F()
Ddevice_registration_info.cc1167 auto snapshot = component_manager_->GetAndClearRecordedStateChanges(); in PublishStateUpdates()