blob: ac27e32351997b9a7a999dfdffbf97656beac466 [file] [log] [blame]
Kathan Shuklad25dde72019-12-02 17:31:22 -08001syntax = "proto2";
2
3package android.automotive.computepipe.proto;
4
5message StartGraph {
Kathan Shuklaee3e3782019-12-03 14:07:12 -08006 // No member fields yet, as StartGraph() does not take any arguments.
Kathan Shuklad25dde72019-12-02 17:31:22 -08007}
8
9message StopGraph {
Kathan Shuklaee3e3782019-12-03 14:07:12 -080010 // No member fields yet, as StopGraph() does not take any arguments.
11}
12
13message ApplyConfigs {
14 // No member fields yet, as ApplyConfigs() does not take any arguments.
15}
16
Kathan Shukla624a1b82020-01-13 12:53:21 -080017message ResetConfigs {
18 // No member fields yet, as ResetConfigs() does not take any arguments.
19}
20
Kathan Shuklaee3e3782019-12-03 14:07:12 -080021message DeathNotification {
22 // No member fields yet.
Kathan Shuklad25dde72019-12-02 17:31:22 -080023}
24
Kathan Shuklabf7a01e2020-03-20 07:15:47 -070025message StartPipeProfile {
26 // No member fields yet.
27}
28
29message StopPipeProfile {
30 // No member fields yet.
31}
32
33message ReleaseDebugger {
34 // No member fields yet.
35}
36
37message ReadDebugData {
38 // No member fields yet.
39}
40
Kathan Shuklad25dde72019-12-02 17:31:22 -080041message ControlCommand {
42 optional StartGraph start_graph = 1;
43 optional StopGraph stop_graph = 2;
Kathan Shuklaee3e3782019-12-03 14:07:12 -080044 optional ApplyConfigs apply_configs = 3;
45 optional DeathNotification death_notification = 4;
Kathan Shukla624a1b82020-01-13 12:53:21 -080046 optional ResetConfigs reset_configs = 5;
Kathan Shuklabf7a01e2020-03-20 07:15:47 -070047 optional StartPipeProfile start_pipe_profile = 6;
48 optional StopPipeProfile stop_pipe_profile = 7;
49 optional ReleaseDebugger release_debugger = 8;
50 optional ReadDebugData read_debug_data = 9;
Kathan Shuklad25dde72019-12-02 17:31:22 -080051}