Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a472419d authored by Martin Brabham's avatar Martin Brabham
Browse files

Floss: DisconnectAllAcls Topshim Test API

Bug: 228987097
Test: mma -j $(nproc)
Test: ./build.py
Tag: #floss
Change-Id: I6d90aa94564cd7ad4870e36dc3b35e205bf7b030
parent fb722821
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ service AdapterService {
  rpc ClearEventFilter(google.protobuf.Empty) returns (google.protobuf.Empty) {}
  rpc ClearEventMask(google.protobuf.Empty) returns (google.protobuf.Empty) {}
  rpc ClearFilterAcceptList(google.protobuf.Empty) returns (google.protobuf.Empty) {}
  rpc DisconnectAllAcls(google.protobuf.Empty) returns (google.protobuf.Empty) {}
}

enum EventType {
+3 −0
Original line number Diff line number Diff line
@@ -71,6 +71,9 @@ class AdapterAutomationHelper():
    async def clear_filter_accept_list(self):
        await self.adapter_stub.ClearFilterAcceptList(empty_proto.Empty())

    async def disconnect_all_acls(self):
        await self.adapter_stub.DisconnectAllAcls(empty_proto.Empty())


class A2dpAutomationHelper():
    """Invoke gRPC on topshim for A2DP testing"""