android.hardware.tests.foo@1.0: add oneway methods

b/30843534: oneway methods seem broken

Change-Id: I3e152d6bd70da60648157269a9465921afa661b3
Signed-off-by: Iliyan Malchev <malchev@google.com>
This commit is contained in:
Iliyan Malchev
2016-08-13 23:05:56 -07:00
parent 68c05d6a17
commit e96606a7df
2 changed files with 7 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ interface IFoo {
doSomethingElse(int32_t[15] param) generates (int32_t[32] something);
doStuffAndReturnAString() generates (string something);
mapThisVector(vec<int32_t> param) generates (vec<int32_t> something);
callMe(IFooCallback cb);
oneway callMe(IFooCallback cb);
useAnEnum(SomeEnum zzz) generates (SomeEnum sleepy);
haveAGooberVec(vec<Goober> param);

View File

@@ -1,5 +1,10 @@
package android.hardware.tests.foo@1.0;
//import IFoo;
interface IFooCallback {
heyItsMe(IFooCallback cb);
//heyItsMe(IFoo cb);
heyItsYou(IFooCallback cb);
heyItsYouIsntIt(IFooCallback cb) generates (uint8_t yesOrNo);
oneway heyItsTheMeaningOfLife(uint8_t tmol);
};