Home
last modified time | relevance | path

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

/aosp12/bionic/libc/arch-arm/bionic/
H A D_exit_with_stack_teardown.S34 swi #0
39 swi #0
H A D__restore.S53 swi #0
63 swi #0
H A Dvfork.S45 swi #0
H A Dsyscall.S44 swi #0
H A D__bionic_clone.S50 swi #0
/aosp12/hardware/interfaces/tests/baz/1.0/
H A DIBaz.hal126 haveSomeStructWithInterface(StructWithInterface swi) generates(StructWithInterface swi);
/aosp12/hardware/interfaces/tests/baz/1.0/default/
H A DBaz.cpp410 Return<void> Baz::haveSomeStructWithInterface(const StructWithInterface& swi, in haveSomeStructWithInterface() argument
412 _hidl_cb(swi); in haveSomeStructWithInterface()
H A DBaz.h97 Return<void> haveSomeStructWithInterface(const StructWithInterface& swi,
/aosp12/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
H A DHidlTestJava.java1216 IBaz.StructWithInterface swi = new IBaz.StructWithInterface(); in client() local
1217 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() argument
1524 return swi; in haveSomeStructWithInterface()
/aosp12/system/tools/hidl/test/hidl_test/
H A Dhidl_test_client.cpp1634 IBaz::StructWithInterface swi; in TEST_F() local
1635 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()