HomeSort by relevance Sort by last modified time
    Searched refs:encountered_error (Results 1 - 15 of 15) sorted by null

  /external/libmojo/mojo/public/cpp/bindings/tests/
versioning_apptest.cc 87 EXPECT_FALSE(database_.encountered_error());
97 EXPECT_TRUE(database_.encountered_error());
118 EXPECT_TRUE(database_.encountered_error());
binding_unittest.cc 98 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);
interface_ptr_unittest.cc 62 bool encountered_error() const { return calculator_.encountered_error(); } function in class:mojo::test::__anon25200::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...]
multiplex_router_unittest.cc 181 EXPECT_TRUE(client0.encountered_error());
182 EXPECT_TRUE(client1.encountered_error());
301 EXPECT_TRUE(client0.encountered_error());
302 EXPECT_TRUE(client1.encountered_error());
router_unittest.cc 152 EXPECT_TRUE(router0.encountered_error());
153 EXPECT_TRUE(router1.encountered_error());
275 EXPECT_TRUE(router0.encountered_error());
276 EXPECT_TRUE(router1.encountered_error());
connector_unittest.cc 281 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());
sync_method_unittest.cc 604 EXPECT_FALSE(ptr.encountered_error());
630 EXPECT_FALSE(ptr.encountered_error());
645 EXPECT_TRUE(ptr.encountered_error());
binding_callback_unittest.cc 237 EXPECT_TRUE(interface_ptr_.encountered_error());
  /external/libmojo/mojo/public/cpp/bindings/
interface_ptr.h 149 bool encountered_error() const { return internal_state_.encountered_error(); } function in class:mojo::InterfacePtr
associated_interface_ptr.h 132 bool encountered_error() const { return internal_state_.encountered_error(); } function in class:mojo::AssociatedInterfacePtr
connector.h 80 bool encountered_error() const { function in class:mojo::Connector
interface_endpoint_client.h 68 bool encountered_error() const { function in class:mojo::InterfaceEndpointClient
  /external/libmojo/mojo/public/cpp/bindings/lib/
associated_interface_ptr_state.h 106 bool encountered_error() const { function in class:mojo::internal::AssociatedInterfacePtrState
107 return endpoint_client_ ? endpoint_client_->encountered_error() : false;
interface_ptr_state.h 124 bool encountered_error() const { function in class:mojo::internal::InterfacePtrState
125 return endpoint_client_ ? endpoint_client_->encountered_error() : false;
interface_endpoint_client.cc 32 bool is_valid = client && !client->encountered_error();
88 return endpoint_client_ && !endpoint_client_->encountered_error();

Completed in 638 milliseconds