Searched refs:bPlusOne (Results 1 – 1 of 1) sorted by relevance
/frameworks/native/libs/binder/tests/ |
D | binderSafeInterfaceTest.cpp | 273 int32_t* bPlusOne) const = 0; 370 status_t increment(int32_t a, int32_t* aPlusOne, int32_t b, int32_t* bPlusOne) const override { in increment() 374 return callRemote<Signature>(Tag::IncrementTwo, a, aPlusOne, b, bPlusOne); in increment() 495 status_t increment(int32_t a, int32_t* aPlusOne, int32_t b, int32_t* bPlusOne) const override { in increment() 498 *bPlusOne = b + 1; in increment() 820 int32_t bPlusOne = 0; in TEST_F() local 821 status_t result = mSafeInterfaceTest->increment(1, &aPlusOne, 2, &bPlusOne); in TEST_F() 824 ASSERT_EQ(b + 1, bPlusOne); in TEST_F()
|