Searched defs:encountered_error (Results 1 - 9 of 9) sorted by relevance

/external/libmojo/mojo/public/cpp/bindings/
H A Dconnector.h76 bool encountered_error() const { function in class:mojo::Connector
H A Dinterface_endpoint_client.h52 bool encountered_error() const { function in class:mojo::InterfaceEndpointClient
H A Dinterface_ptr.h132 bool encountered_error() const { return internal_state_.encountered_error(); } function in class:mojo::InterfacePtr
H A Dassociated_interface_ptr.h119 bool encountered_error() const { return internal_state_.encountered_error(); } function in class:mojo::AssociatedInterfacePtr
/external/libmojo/mojo/public/cpp/bindings/lib/
H A Dassociated_interface_ptr_state.h108 bool encountered_error() const { function in class:mojo::internal::AssociatedInterfacePtrState
109 return endpoint_client_ ? endpoint_client_->encountered_error() : false;
H A Dinterface_ptr_state.h120 bool encountered_error() const { function in class:mojo::internal::InterfacePtrState
121 return router_ ? router_->encountered_error() : false;
272 bool encountered_error() const { function in class:mojo::internal::InterfacePtrState
273 return endpoint_client_ ? endpoint_client_->encountered_error() : false;
H A Drouter.h50 bool encountered_error() const { function in class:mojo::internal::Router
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Dbinding_unittest.cc98 bool encountered_error = false; local
104 SetFlagAndRunClosure(&encountered_error, run_loop.QuitClosure()));
114 EXPECT_FALSE(encountered_error);
119 EXPECT_TRUE(encountered_error);
321 bool encountered_error = false; local
327 SetFlagAndRunClosure(&encountered_error, run_loop.QuitClosure()));
337 EXPECT_FALSE(encountered_error);
342 EXPECT_TRUE(encountered_error);
H A Dinterface_ptr_unittest.cc62 bool encountered_error() const { return calculator_.encountered_error(); } function in class:mojo::test::__anon11050::MathCalculatorUI
323 EXPECT_FALSE(calculator_ui.encountered_error());
326 EXPECT_FALSE(calculator_ui.encountered_error());
334 EXPECT_FALSE(calculator_ui.encountered_error());
339 EXPECT_TRUE(calculator_ui.encountered_error());
346 bool encountered_error = false; local
349 base::Bind(&SetFlagAndRunClosure, &encountered_error,
358 EXPECT_FALSE(calculator_ui.encountered_error());
361 EXPECT_FALSE(calculator_ui.encountered_error());
[all...]

Completed in 84 milliseconds