Searched refs:bPlusOne (Results 1 – 1 of 1) sorted by relevance
/frameworks/native/libs/binder/tests/ |
D | binderSafeInterfaceTest.cpp | 267 int32_t* bPlusOne) const = 0; 363 status_t increment(int32_t a, int32_t* aPlusOne, int32_t b, int32_t* bPlusOne) const override { in increment() 367 return callRemote<Signature>(Tag::IncrementTwo, a, aPlusOne, b, bPlusOne); in increment() 489 status_t increment(int32_t a, int32_t* aPlusOne, int32_t b, int32_t* bPlusOne) const override { in increment() 492 *bPlusOne = b + 1; in increment() 836 int32_t bPlusOne = 0; in TEST_F() local 837 status_t result = mSafeInterfaceTest->increment(1, &aPlusOne, 2, &bPlusOne); in TEST_F() 840 ASSERT_EQ(b + 1, bPlusOne); in TEST_F()
|