blob: 4e9ce8b0d7717f3ecfad50a21995d8d99c380ea8 [file] [log] [blame]
version 1.0;
package android.hardware.tests;
@hal_type("GPS")
interface ISampleGpsHalServiceWithVtsCallFlowAnnotation {
@param(name="mode", normal={1, 2, 3})
@next_calls({"stop"})
@entry
start(int32_t mode) generates (int32_t _retcode);
@next_calls({"cleanup"})
stop() generates (int32_t _retcode);
@next_calls({"cleanup"})
@exit
cleanup();
};