Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/tests/
DbinderSafeInterfaceTest.cpp251 virtual status_t logicalNot(bool a, bool* notA) const = 0;
289 status_t logicalNot(bool a, bool* notA) const override { in logicalNot()
291 return callRemote<decltype(&ISafeInterfaceTest::logicalNot)>(Tag::LogicalNot, a, notA); in logicalNot()
404 status_t logicalNot(bool a, bool* notA) const override { in logicalNot()
406 *notA = !a; in logicalNot()
630 bool notA = true; in TEST_F() local
631 status_t result = mSafeInterfaceTest->logicalNot(a, &notA); in TEST_F()
633 ASSERT_EQ(!a, notA); in TEST_F()