Home
last modified time | relevance | path

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

/hardware/libhardware/modules/camera/3_4/metadata/
Dmetadata_test.cpp171 EXPECT_CALL(*component1_, SupportsRequestValues(_)).WillOnce(Return(true)); in TEST_F()
172 EXPECT_CALL(*component2_, SupportsRequestValues(_)).WillOnce(Return(true)); in TEST_F()
184 EXPECT_CALL(*component1_, SupportsRequestValues(_)) in TEST_F()
187 EXPECT_CALL(*component2_, SupportsRequestValues(_)).WillOnce(Return(false)); in TEST_F()
200 EXPECT_CALL(*component1_, SupportsRequestValues(_)).Times(0); in TEST_F()
201 EXPECT_CALL(*component2_, SupportsRequestValues(_)).Times(0); in TEST_F()
Dcontrol_test.cpp273 EXPECT_EQ(control_->SupportsRequestValues(metadata), true); in TEST_F()
283 EXPECT_EQ(control_->SupportsRequestValues(metadata), true); in TEST_F()
295 EXPECT_EQ(control_->SupportsRequestValues(metadata), true); in TEST_F()
306 EXPECT_EQ(control_->SupportsRequestValues(metadata), false); in TEST_F()
319 EXPECT_EQ(control_->SupportsRequestValues(metadata), false); in TEST_F()
328 EXPECT_EQ(control_->SupportsRequestValues(metadata), false); in TEST_F()
340 EXPECT_EQ(control_->SupportsRequestValues(metadata), false); in TEST_F()
346 EXPECT_EQ(control_->SupportsRequestValues(metadata), true); in TEST_F()
Dstate.h44 virtual bool SupportsRequestValues(
82 bool State<T>::SupportsRequestValues( in SupportsRequestValues() function
Dpartial_metadata_interface_mock.h38 MOCK_CONST_METHOD1(SupportsRequestValues,
Dpartial_metadata_interface.h52 virtual bool SupportsRequestValues(
Dcontrol.h49 virtual bool SupportsRequestValues(
137 bool Control<T>::SupportsRequestValues( in SupportsRequestValues() function
Dstate_test.cpp107 EXPECT_TRUE(state_->SupportsRequestValues(metadata)); in TEST_F()
Dproperty_test.cpp146 EXPECT_EQ(property.SupportsRequestValues(metadata), true); in TEST_F()
Dmetadata.cpp118 bool valid_request = component->SupportsRequestValues(metadata); in IsValidRequest()