blob: 4e9ce8b0d7717f3ecfad50a21995d8d99c380ea8 [file] [log] [blame]
Keun Soo Yim023f4042016-05-05 21:26:34 -07001version 1.0;
2package android.hardware.tests;
3
Keun Soo Yime02575b2016-05-06 08:23:08 -07004@hal_type("GPS")
Keun Soo Yim023f4042016-05-05 21:26:34 -07005interface 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
Keun Soo Yime02575b2016-05-06 08:23:08 -070016 cleanup();
17};