Searched refs:swi (Results 1 – 2 of 2) sorted by relevance
1216 IBaz.StructWithInterface swi = new IBaz.StructWithInterface(); in client() local1217 swi.iface = IServiceManager.getService(); in client()1218 swi.number = 12345678; in client()1219 IBaz.StructWithInterface swi_back = baz.haveSomeStructWithInterface(swi); in client()1222 ExpectTrue(HidlSupport.interfacesEqual(swi.iface, swi_back.iface)); in client()1523 public StructWithInterface haveSomeStructWithInterface(StructWithInterface swi) { in haveSomeStructWithInterface() argument1524 return swi; in haveSomeStructWithInterface()
1634 IBaz::StructWithInterface swi; in TEST_F() local1635 swi.number = 42; in TEST_F()1636 swi.array = testArray; in TEST_F()1637 swi.oneString = testString; in TEST_F()1638 swi.vectorOfStrings = testStrings; in TEST_F()1639 swi.iface = baz; in TEST_F()1641 EXPECT_OK(baz->haveSomeStructWithInterface(swi, [&](const IBaz::StructWithInterface& swiBack) { in TEST_F()1650 EXPECT_TRUE(interfacesEqual(swi.iface, swiBack.iface)); in TEST_F()