blob: 4e9ce8b0d7717f3ecfad50a21995d8d99c380ea8 [file] [log] [blame]
Chris Phoenixd5d3ea12016-05-05 16:49:43 -07001version 1.0;
2package android.hardware.tests;
3
4@hal_type("GPS")
5interface ISampleGpsHalServiceWithVtsCallFlowAnnotation {
6 @param(name="mode", normal={1, 2, 3})
7 @next_calls({"stop"})
8 @entry
9 start(int32_t mode) generates (int32_t _retcode);
10
11 @next_calls({"cleanup"})
12 stop() generates (int32_t _retcode);
13
14 @next_calls({"cleanup"})
15 @exit
16 cleanup();
17};