/external/libmojo/mojo/public/cpp/bindings/tests/ |
D | interface_ptr_unittest.cc | 62 bool encountered_error() const { return calculator_.encountered_error(); } in encountered_error() function in mojo::test::__anon865c61480111::MathCalculatorUI 323 EXPECT_FALSE(calculator_ui.encountered_error()); in TEST_F() 326 EXPECT_FALSE(calculator_ui.encountered_error()); in TEST_F() 334 EXPECT_FALSE(calculator_ui.encountered_error()); in TEST_F() 339 EXPECT_TRUE(calculator_ui.encountered_error()); in TEST_F() 346 bool encountered_error = false; in TEST_F() local 349 base::Bind(&SetFlagAndRunClosure, &encountered_error, in TEST_F() 358 EXPECT_FALSE(calculator_ui.encountered_error()); in TEST_F() 361 EXPECT_FALSE(calculator_ui.encountered_error()); in TEST_F() 367 EXPECT_FALSE(calculator_ui.encountered_error()); in TEST_F() [all …]
|
D | binding_unittest.cc | 98 bool encountered_error = false; in TEST_F() local 104 SetFlagAndRunClosure(&encountered_error, run_loop.QuitClosure())); in TEST_F() 114 EXPECT_FALSE(encountered_error); in TEST_F() 119 EXPECT_TRUE(encountered_error); in TEST_F() 321 bool encountered_error = false; in TEST_F() local 327 SetFlagAndRunClosure(&encountered_error, run_loop.QuitClosure())); in TEST_F() 337 EXPECT_FALSE(encountered_error); in TEST_F() 342 EXPECT_TRUE(encountered_error); in TEST_F()
|
D | versioning_apptest.cc | 87 EXPECT_FALSE(database_.encountered_error()); in TEST_F() 97 EXPECT_TRUE(database_.encountered_error()); in TEST_F() 118 EXPECT_TRUE(database_.encountered_error()); in TEST_F()
|
D | router_unittest.cc | 152 EXPECT_TRUE(router0.encountered_error()); in TEST_F() 153 EXPECT_TRUE(router1.encountered_error()); in TEST_F() 275 EXPECT_TRUE(router0.encountered_error()); in TEST_F() 276 EXPECT_TRUE(router1.encountered_error()); in TEST_F()
|
D | multiplex_router_unittest.cc | 181 EXPECT_TRUE(client0.encountered_error()); in TEST_F() 182 EXPECT_TRUE(client1.encountered_error()); in TEST_F() 301 EXPECT_TRUE(client0.encountered_error()); in TEST_F() 302 EXPECT_TRUE(client1.encountered_error()); in TEST_F()
|
D | connector_unittest.cc | 281 EXPECT_FALSE(connector0.encountered_error()); in TEST_F() 288 EXPECT_FALSE(connector0.encountered_error()); in TEST_F() 295 EXPECT_TRUE(connector0.encountered_error()); in TEST_F() 493 EXPECT_TRUE(connector0.encountered_error()); in TEST_F() 494 EXPECT_TRUE(connector1.encountered_error()); in TEST_F()
|
D | sync_method_unittest.cc | 604 EXPECT_FALSE(ptr.encountered_error()); in TYPED_TEST() 630 EXPECT_FALSE(ptr.encountered_error()); in TYPED_TEST() 645 EXPECT_TRUE(ptr.encountered_error()); in TYPED_TEST()
|
D | binding_callback_unittest.cc | 237 EXPECT_TRUE(interface_ptr_.encountered_error()); in TEST_F()
|
/external/libmojo/mojo/public/cpp/bindings/lib/ |
D | interface_ptr_state.h | 120 bool encountered_error() const { in encountered_error() function 121 return router_ ? router_->encountered_error() : false; in encountered_error() 272 bool encountered_error() const { in encountered_error() function 273 return endpoint_client_ ? endpoint_client_->encountered_error() : false; in encountered_error()
|
D | associated_interface_ptr_state.h | 108 bool encountered_error() const { in encountered_error() function 109 return endpoint_client_ ? endpoint_client_->encountered_error() : false; in encountered_error()
|
D | router.cc | 27 bool is_valid = router && !router->encountered_error() && router->is_valid(); in DCheckIfInvalid() 76 return router_ && !router_->encountered_error() && router_->is_valid(); in IsValid() 248 if (connector_.encountered_error() && !encountered_error_) in HandleQueuedMessages()
|
D | interface_endpoint_client.cc | 30 bool is_valid = client && !client->encountered_error(); in DCheckIfInvalid() 86 return endpoint_client_ && !endpoint_client_->encountered_error(); in IsValid()
|
D | router.h | 50 bool encountered_error() const { in encountered_error() function
|
/external/libmojo/mojo/public/cpp/bindings/ |
D | interface_ptr.h | 132 bool encountered_error() const { return internal_state_.encountered_error(); } in encountered_error() function
|
D | associated_interface_ptr.h | 119 bool encountered_error() const { return internal_state_.encountered_error(); } in encountered_error() function
|
D | connector.h | 76 bool encountered_error() const { in encountered_error() function
|
D | interface_endpoint_client.h | 52 bool encountered_error() const { in encountered_error() function
|