Home
last modified time | relevance | path

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

/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
DHidlTestJava.java1265 IBase.Foo[] fooOutput = new IBase.Foo[2]; in someMethodWithFooArrays() local
1266 fooOutput[0] = fooInput[1]; in someMethodWithFooArrays()
1267 fooOutput[1] = fooInput[0]; in someMethodWithFooArrays()
1269 return fooOutput; in someMethodWithFooArrays()
1276 ArrayList<IBase.Foo> fooOutput = new ArrayList<IBase.Foo>(); in someMethodWithFooVectors() local
1277 fooOutput.add(fooInput.get(1)); in someMethodWithFooVectors()
1278 fooOutput.add(fooInput.get(0)); in someMethodWithFooVectors()
1280 return fooOutput; in someMethodWithFooVectors()