Searched refs:encountered_error (Results 1 - 17 of 17) sorted by relevance

/external/libmojo/mojo/public/cpp/bindings/tests/
H A Dversioning_apptest.cc87 EXPECT_FALSE(database_.encountered_error());
97 EXPECT_TRUE(database_.encountered_error());
118 EXPECT_TRUE(database_.encountered_error());
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...]
H A Dmultiplex_router_unittest.cc181 EXPECT_TRUE(client0.encountered_error());
182 EXPECT_TRUE(client1.encountered_error());
301 EXPECT_TRUE(client0.encountered_error());
302 EXPECT_TRUE(client1.encountered_error());
H A Drouter_unittest.cc152 EXPECT_TRUE(router0.encountered_error());
153 EXPECT_TRUE(router1.encountered_error());
275 EXPECT_TRUE(router0.encountered_error());
276 EXPECT_TRUE(router1.encountered_error());
H A Dconnector_unittest.cc281 EXPECT_FALSE(connector0.encountered_error());
288 EXPECT_FALSE(connector0.encountered_error());
295 EXPECT_TRUE(connector0.encountered_error());
493 EXPECT_TRUE(connector0.encountered_error());
494 EXPECT_TRUE(connector1.encountered_error());
H A Dsync_method_unittest.cc604 EXPECT_FALSE(ptr.encountered_error());
630 EXPECT_FALSE(ptr.encountered_error());
645 EXPECT_TRUE(ptr.encountered_error());
H A Dbinding_callback_unittest.cc237 EXPECT_TRUE(interface_ptr_.encountered_error());
/external/libmojo/mojo/public/cpp/bindings/
H A Dassociated_interface_ptr.h119 bool encountered_error() const { return internal_state_.encountered_error(); } function in class:mojo::AssociatedInterfacePtr
H A Dinterface_ptr.h132 bool encountered_error() const { return internal_state_.encountered_error(); } function in class:mojo::InterfacePtr
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
/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.cc27 bool is_valid = router && !router->encountered_error() && router->is_valid();
76 return router_ && !router_->encountered_error() && router_->is_valid();
248 if (connector_.encountered_error() && !encountered_error_)
H A Drouter.h50 bool encountered_error() const { function in class:mojo::internal::Router
H A Dinterface_endpoint_client.cc30 bool is_valid = client && !client->encountered_error();
86 return endpoint_client_ && !endpoint_client_->encountered_error();

Completed in 177 milliseconds