Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/tests/
DbinderSafeInterfaceTest.cpp245 virtual status_t logicalNot(bool a, bool* notA) const = 0;
283 status_t logicalNot(bool a, bool* notA) const override { in logicalNot()
285 return callRemote<decltype(&ISafeInterfaceTest::logicalNot)>(Tag::LogicalNot, a, notA); in logicalNot()
397 status_t logicalNot(bool a, bool* notA) const override { in logicalNot()
399 *notA = !a; in logicalNot()
648 bool notA = true; in TEST_F() local
649 status_t result = mSafeInterfaceTest->logicalNot(a, &notA); in TEST_F()
651 ASSERT_EQ(!a, notA); in TEST_F()