/packages/modules/Bluetooth/system/blueberry/facade/hci/ |
D | controller_facade.proto | 9 rpc GetMacAddress(google.protobuf.Empty) returns (blueberry.facade.BluetoothAddress) {} 10 rpc WriteLocalName(NameMsg) returns (google.protobuf.Empty) {} 11 rpc GetLocalName(google.protobuf.Empty) returns (NameMsg) {} 13 rpc GetLeNumberOfSupportedAdvertisingSets(google.protobuf.Empty) returns (SingleValueMsg) {} 14 rpc SupportsSimplePairing(google.protobuf.Empty) returns (SupportedMsg) {} 15 rpc SupportsSecureConnections(google.protobuf.Empty) returns (SupportedMsg) {} 16 rpc SupportsSimultaneousLeBrEdr(google.protobuf.Empty) returns (SupportedMsg) {} 17 rpc SupportsInterlacedInquiryScan(google.protobuf.Empty) returns (SupportedMsg) {} 18 rpc SupportsRssiWithInquiryResults(google.protobuf.Empty) returns (SupportedMsg) {} 19 rpc SupportsExtendedInquiryResponse(google.protobuf.Empty) returns (SupportedMsg) {} [all …]
|
D | le_advertising_manager_facade.proto | 11 rpc EnableAdvertiser(EnableAdvertiserRequest) returns (google.protobuf.Empty) {} 12 rpc SetData(SetDataRequest) returns (google.protobuf.Empty) {} 13 rpc SetParameters(SetParametersRequest) returns (google.protobuf.Empty) {} 14 rpc SetPeriodicParameters(SetPeriodicParametersRequest) returns (google.protobuf.Empty) {} 15 rpc SetPeriodicData(SetPeriodicDataRequest) returns (google.protobuf.Empty) {} 16 rpc EnablePeriodicAdvertising(EnablePeriodicAdvertisingRequest) returns (google.protobuf.Empty) {} 17 rpc GetOwnAddress(GetOwnAddressRequest) returns (google.protobuf.Empty) {} 18 …rpc GetNumberOfAdvertisingInstances(google.protobuf.Empty) returns (GetNumberOfAdvertisingInstance… 19 rpc RemoveAdvertiser(RemoveAdvertiserRequest) returns (google.protobuf.Empty) {} 20 rpc FetchCallbackEvents(google.protobuf.Empty) returns (stream AdvertisingCallbackMsg) {} [all …]
|
D | acl_manager_facade.proto | 9 rpc CancelConnection(ConnectionMsg) returns (google.protobuf.Empty) {} 10 rpc Disconnect(HandleMsg) returns (google.protobuf.Empty) {} 11 rpc WriteDefaultLinkPolicySettings(PolicyMsg) returns (google.protobuf.Empty) {} 12 rpc AuthenticationRequested(HandleMsg) returns (google.protobuf.Empty) {} 13 rpc ConnectionCommand(ConnectionCommandMsg) returns (google.protobuf.Empty) {} 14 rpc SwitchRole(RoleMsg) returns (google.protobuf.Empty) {} 15 rpc SendAclData(AclData) returns (google.protobuf.Empty) {} 17 rpc FetchIncomingConnection(google.protobuf.Empty) returns (stream ConnectionEvent) {}
|
D | hci_facade.proto | 9 rpc SendCommand(blueberry.facade.Data) returns (google.protobuf.Empty) {} 11 rpc RequestEvent(EventRequest) returns (google.protobuf.Empty) {} 12 rpc StreamEvents(google.protobuf.Empty) returns (stream blueberry.facade.Data) {} 14 rpc RequestLeSubevent(EventRequest) returns (google.protobuf.Empty) {} 15 rpc StreamLeSubevents(google.protobuf.Empty) returns (stream blueberry.facade.Data) {} 17 rpc SendAcl(blueberry.facade.Data) returns (google.protobuf.Empty) {} 18 rpc StreamAcl(google.protobuf.Empty) returns (stream blueberry.facade.Data) {}
|
D | le_acl_manager_facade.proto | 10 rpc CancelConnection(blueberry.facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {} 11 rpc Disconnect(LeHandleMsg) returns (google.protobuf.Empty) {} 12 rpc ConnectionCommand(LeConnectionCommandMsg) returns (google.protobuf.Empty) {} 13 rpc SendAclData(LeAclData) returns (google.protobuf.Empty) {} 15 rpc FetchIncomingConnection(google.protobuf.Empty) returns (stream LeConnectionEvent) {} 16 rpc AddDeviceToResolvingList(IrkMsg) returns (google.protobuf.Empty) {} 19 returns (google.protobuf.Empty) {}
|
D | le_scanning_manager_facade.proto | 8 rpc RegisterScanner(RegisterScannerRequest) returns (google.protobuf.Empty) {} 9 rpc Unregister(UnregisterRequest) returns (google.protobuf.Empty) {} 10 rpc Scan(ScanRequest) returns (google.protobuf.Empty) {} 11 rpc SetScanParameters(SetScanParametersRequest) returns (google.protobuf.Empty) {} 12 rpc FetchCallbackEvents(google.protobuf.Empty) returns (stream ScanningCallbackMsg) {} 13 rpc FetchAdvertisingReports(google.protobuf.Empty) returns (stream AdvertisingReportMsg) {}
|
/packages/modules/Bluetooth/system/gd/rust/stack/src/hci/ |
D | controller_facade.rs | 9 use bt_facade_proto::empty::Empty; 46 _req: Empty, in get_mac_address() argument 57 fn write_local_name(&mut self, ctx: RpcContext<'_>, req: NameMsg, sink: UnarySink<Empty>) { in write_local_name() argument 63 sink.success(Empty::default()).await.unwrap(); in write_local_name() 67 fn get_local_name(&mut self, ctx: RpcContext<'_>, _req: Empty, sink: UnarySink<NameMsg>) { in get_local_name() argument 98 _: Empty, in get_le_number_of_supported_advertising_sets() argument 109 fn supports_simple_pairing(&mut self, _: RpcContext<'_>, _: Empty, _: UnarySink<SupportedMsg>) { in supports_simple_pairing() argument 116 _: Empty, in supports_secure_connections() argument 125 _: Empty, in supports_simultaneous_le_br_edr() argument 134 _: Empty, in supports_interlaced_inquiry_scan() argument [all …]
|
D | facade.rs | 8 use bt_facade_proto::empty::Empty; 92 fn send_command(&mut self, ctx: RpcContext<'_>, mut data: Data, sink: UnarySink<Empty>) { in send_command() argument 97 sink.success(Empty::default()).await.unwrap(); in send_command() 103 fn request_event(&mut self, ctx: RpcContext<'_>, req: EventRequest, sink: UnarySink<Empty>) { in request_event() argument 107 sink.success(Empty::default()).await.unwrap(); in request_event() 115 sink: UnarySink<Empty>, in request_le_subevent() argument 120 sink.success(Empty::default()).await.unwrap(); in request_le_subevent() 124 fn send_acl(&mut self, ctx: RpcContext<'_>, mut packet: Data, sink: UnarySink<Empty>) { in send_acl() argument 128 sink.success(Empty::default()).await.unwrap(); in send_acl() 132 fn stream_events(&mut self, ctx: RpcContext<'_>, _req: Empty, sink: ServerStreamingSink<Data>) { in stream_events() argument [all …]
|
/packages/modules/Bluetooth/android/pandora/server/src/com/android/pandora/ |
D | MediaPlayer.kt | 22 import com.google.protobuf.Empty 42 override fun play(request: Empty, responseObserver: StreamObserver<Empty>) { in play() 43 grpcUnary<Empty>(scope, responseObserver) { in play() 45 Empty.getDefaultInstance() in play() 49 override fun stop(request: Empty, responseObserver: StreamObserver<Empty>) { in stop() 50 grpcUnary<Empty>(scope, responseObserver) { in stop() 52 Empty.getDefaultInstance() in stop() 56 override fun pause(request: Empty, responseObserver: StreamObserver<Empty>) { in pause() 57 grpcUnary<Empty>(scope, responseObserver) { in pause() 59 Empty.getDefaultInstance() in pause() [all …]
|
D | AndroidInternal.kt | 21 import com.google.protobuf.Empty 68 …setAccessPermission(request: SetAccessPermissionRequest, responseObserver: StreamObserver<Empty>) { in setAccessPermission() 69 grpcUnary<Empty>(scope, responseObserver) { in setAccessPermission() 77 Empty.getDefaultInstance() in setAccessPermission() 81 override fun sendSMS(request: Empty, responseObserver: StreamObserver<Empty>) { in sendSMS() 82 grpcUnary<Empty>(scope, responseObserver) { in sendSMS() 89 Empty.getDefaultInstance() in sendSMS() 93 override fun acceptIncomingFile(request: Empty, responseObserver: StreamObserver<Empty>) { in acceptIncomingFile() 94 grpcUnary<Empty>(scope, responseObserver) { in acceptIncomingFile() 97 Empty.getDefaultInstance() in acceptIncomingFile()
|
D | Host.kt | 43 import com.google.protobuf.Empty 129 override fun factoryReset(request: Empty, responseObserver: StreamObserver<Empty>) { in factoryReset() 130 grpcUnary<Empty>(scope, responseObserver, 30) { in factoryReset() 145 Empty.getDefaultInstance() in factoryReset() 149 override fun reset(request: Empty, responseObserver: StreamObserver<Empty>) { in reset() 150 grpcUnary<Empty>(scope, responseObserver) { in reset() 155 Empty.getDefaultInstance() in reset() 160 request: Empty, in readLocalAddress() 289 GetConnectionResponse.newBuilder().setPeerNotFound(Empty.getDefaultInstance()).build() in getConnection() 294 override fun disconnect(request: DisconnectRequest, responseObserver: StreamObserver<Empty>) { in disconnect() [all …]
|
D | Hfp.kt | 36 import com.google.protobuf.Empty 90 override fun enableSlc(request: EnableSlcRequest, responseObserver: StreamObserver<Empty>) { in enableSlc() 91 grpcUnary<Empty>(scope, responseObserver) { in enableSlc() 96 Empty.getDefaultInstance() in enableSlc() 100 override fun disableSlc(request: DisableSlcRequest, responseObserver: StreamObserver<Empty>) { in disableSlc() 101 grpcUnary<Empty>(scope, responseObserver) { in disableSlc() 106 Empty.getDefaultInstance() in disableSlc() 112 responseObserver: StreamObserver<Empty>, in setBatteryLevel() 114 grpcUnary<Empty>(scope, responseObserver) { in setBatteryLevel() 117 Empty.getDefaultInstance() in setBatteryLevel()
|
/packages/modules/Bluetooth/pandora/interfaces/pandora_experimental/ |
D | mediaplayer.proto | 11 rpc Play(google.protobuf.Empty) returns (google.protobuf.Empty); 12 rpc Stop(google.protobuf.Empty) returns (google.protobuf.Empty); 13 rpc Pause(google.protobuf.Empty) returns (google.protobuf.Empty); 14 rpc Rewind(google.protobuf.Empty) returns (google.protobuf.Empty); 15 rpc FastForward(google.protobuf.Empty) returns (google.protobuf.Empty); 16 rpc Forward(google.protobuf.Empty) returns (google.protobuf.Empty); 17 rpc Backward(google.protobuf.Empty) returns (google.protobuf.Empty); 18 rpc SetLargeMetadata(google.protobuf.Empty) returns (google.protobuf.Empty);
|
D | security.proto | 60 rpc DeleteBond(DeleteBondRequest) returns (google.protobuf.Empty); 145 google.protobuf.Empty just_works = 3; 152 google.protobuf.Empty passkey_entry_request = 5; 159 google.protobuf.Empty pin_code_request = 7; 204 google.protobuf.Empty success = 1; 206 google.protobuf.Empty not_reached = 2; 208 google.protobuf.Empty connection_died = 3; 210 google.protobuf.Empty pairing_failure = 4; 212 google.protobuf.Empty authentication_failure = 5; 214 google.protobuf.Empty encryption_failure = 6; [all …]
|
D | host.proto | 35 rpc FactoryReset(google.protobuf.Empty) returns (google.protobuf.Empty); 38 rpc Reset(google.protobuf.Empty) returns (google.protobuf.Empty); 41 rpc ReadLocalAddress(google.protobuf.Empty) returns (ReadLocalAddressResponse); 68 rpc Disconnect(DisconnectRequest) returns (google.protobuf.Empty); 70 rpc WaitDisconnection(WaitDisconnectionRequest) returns (google.protobuf.Empty); 75 rpc StopAdvertising(StopAdvertisingRequest) returns (google.protobuf.Empty); 81 rpc Inquiry(google.protobuf.Empty) returns (stream InquiryResponse); 83 rpc SetDiscoverabilityMode(SetDiscoverabilityModeRequest) returns (google.protobuf.Empty); 85 rpc SetConnectabilityMode(SetConnectabilityModeRequest) returns (google.protobuf.Empty); 213 google.protobuf.Empty peer_not_found = 2; [all …]
|
/packages/modules/Bluetooth/system/blueberry/facade/security/ |
D | facade.proto | 11 rpc CreateBond(blueberry.facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {} 12 rpc CreateBondOutOfBand(OobDataBondMessage) returns (google.protobuf.Empty) {} 13 rpc GetOutOfBandData(google.protobuf.Empty) returns (google.protobuf.Empty) {} 14 rpc FetchGetOutOfBandDataEvents(google.protobuf.Empty) returns (stream OobDataBondMessage) {} 15 rpc CreateBondLe(blueberry.facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {} 16 rpc CancelBond(blueberry.facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {} 17 rpc RemoveBond(blueberry.facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {} 18 rpc SetIoCapability(IoCapabilityMessage) returns (google.protobuf.Empty) {} 19 …SetAuthenticationRequirements(AuthenticationRequirementsMessage) returns (google.protobuf.Empty) {} 20 rpc SetLeIoCapability(LeIoCapabilityMessage) returns (google.protobuf.Empty) {} [all …]
|
/packages/modules/Bluetooth/system/blueberry/facade/l2cap/classic/ |
D | facade.proto | 9 rpc FetchConnectionComplete(google.protobuf.Empty) returns (stream ConnectionCompleteEvent) { 12 rpc FetchConnectionClose(google.protobuf.Empty) returns (stream ConnectionCloseEvent) { 15 rpc OpenChannel(OpenChannelRequest) returns (google.protobuf.Empty) {} 16 rpc CloseChannel(CloseChannelRequest) returns (google.protobuf.Empty) {} 17 rpc FetchL2capData(google.protobuf.Empty) returns (stream L2capPacket) {} 18 rpc SetDynamicChannel(SetEnableDynamicChannelRequest) returns (google.protobuf.Empty) {} 19 rpc SendDynamicChannelPacket(DynamicChannelPacket) returns (google.protobuf.Empty) {} 20 rpc SetTrafficPaused(SetTrafficPausedRequest) returns (google.protobuf.Empty) {} 21 rpc GetChannelQueueDepth(google.protobuf.Empty) returns (GetChannelQueueDepthResponse) { 25 …InitiateConnectionForSecurity(blueberry.facade.BluetoothAddress) returns (google.protobuf.Empty) {} [all …]
|
/packages/modules/Bluetooth/system/gd/rust/stack/src/hal/ |
D | facade.rs | 7 use bt_facade_proto::empty::Empty; 59 fn send_command(&mut self, ctx: RpcContext<'_>, mut data: Data, sink: UnarySink<Empty>) { in send_command() argument 63 sink.success(Empty::default()).await.unwrap(); in send_command() 67 fn send_acl(&mut self, ctx: RpcContext<'_>, mut data: Data, sink: UnarySink<Empty>) { in send_acl() argument 71 sink.success(Empty::default()).await.unwrap(); in send_acl() 75 fn send_sco(&mut self, ctx: RpcContext<'_>, mut data: Data, sink: UnarySink<Empty>) { in send_sco() argument 79 sink.success(Empty::default()).await.unwrap(); in send_sco() 83 fn send_iso(&mut self, ctx: RpcContext<'_>, mut data: Data, sink: UnarySink<Empty>) { in send_iso() argument 87 sink.success(Empty::default()).await.unwrap(); in send_iso() 91 fn stream_events(&mut self, ctx: RpcContext<'_>, _: Empty, sink: ServerStreamingSink<Data>) { in stream_events() argument [all …]
|
/packages/modules/Bluetooth/system/blueberry/facade/hal/ |
D | hal_facade.proto | 9 rpc SendCommand(blueberry.facade.Data) returns (google.protobuf.Empty) {} 10 rpc StreamEvents(google.protobuf.Empty) returns (stream blueberry.facade.Data) {} 12 rpc SendAcl(blueberry.facade.Data) returns (google.protobuf.Empty) {} 13 rpc StreamAcl(google.protobuf.Empty) returns (stream blueberry.facade.Data) {} 15 rpc SendSco(blueberry.facade.Data) returns (google.protobuf.Empty) {} 16 rpc StreamSco(google.protobuf.Empty) returns (stream blueberry.facade.Data) {} 18 rpc SendIso(blueberry.facade.Data) returns (google.protobuf.Empty) {} 19 rpc StreamIso(google.protobuf.Empty) returns (stream blueberry.facade.Data) {}
|
/packages/modules/Bluetooth/system/gd/rust/stack/src/link/acl/classic/ |
D | facade.rs | 35 _sink: UnarySink<Empty>, in cancel_connection() argument 40 fn disconnect(&mut self, _ctx: RpcContext<'_>, mut _data: HandleMsg, _sink: UnarySink<Empty>) { in disconnect() argument 44 fn disconnect(&mut self, _ctx: RpcContext<'_>, mut _data: PolicyMsg, _sink: UnarySink<Empty>) { in disconnect() argument 52 _sink: UnarySink<Empty>, in authentication_requested() argument 61 _sink: UnarySink<Empty>, in connection_command() argument 66 fn switch_role(&mut self, _ctx: RpcContext<'_>, mut _data: RoleMsg, _sink: UnarySink<Empty>) { in switch_role() argument 70 fn send_acl_data(&mut self, _ctx: RpcContext<'_>, mut _data: AclData, _sink: UnarySink<Empty>) { in send_acl_data() argument 86 mut _data: Empty, in fetch_incoming_connection() argument
|
/packages/modules/Bluetooth/system/blueberry/facade/l2cap/le/ |
D | facade.proto | 9 rpc FetchL2capData(google.protobuf.Empty) returns (stream L2capPacket) {} 12 rpc CloseDynamicChannel(CloseDynamicChannelRequest) returns (google.protobuf.Empty) {} 13 rpc SetDynamicChannel(SetEnableDynamicChannelRequest) returns (google.protobuf.Empty) {} 14 rpc SendDynamicChannelPacket(DynamicChannelPacket) returns (google.protobuf.Empty) {} 15 rpc SetFixedChannel(SetEnableFixedChannelRequest) returns (google.protobuf.Empty) {} 16 rpc SendFixedChannelPacket(FixedChannelPacket) returns (google.protobuf.Empty) {} 17 rpc SendConnectionParameterUpdate(ConnectionParameter) returns (google.protobuf.Empty) {}
|
/packages/modules/Bluetooth/system/gd/security/ |
D | facade.cc | 108 ::google::protobuf::Empty* response) override { in CreateBond() 117 …::grpc::ServerContext* context, const OobDataBondMessage* request, ::google::protobuf::Empty* resp… in CreateBondOutOfBand() 142 const ::google::protobuf::Empty* request, in GetOutOfBandData() 143 ::google::protobuf::Empty* response) override { in GetOutOfBandData() 151 const ::google::protobuf::Empty* request, in FetchGetOutOfBandDataEvents() 159 ::google::protobuf::Empty* response) override { in CreateBondLe() 170 ::google::protobuf::Empty* response) override { in CancelBond() 181 ::google::protobuf::Empty* response) override { in RemoveBond() 189 …::grpc::Status FetchUiEvents(::grpc::ServerContext* context, const ::google::protobuf::Empty* requ… in FetchUiEvents() 195 ::google::protobuf::Empty* response) override { in SendUiCallback() [all …]
|
/packages/modules/Bluetooth/system/blueberry/facade/neighbor/ |
D | facade.proto | 8 rpc SetConnectability(EnableMsg) returns (google.protobuf.Empty) {} 9 rpc SetDiscoverability(DiscoverabilitiyMsg) returns (google.protobuf.Empty) {} 13 rpc ReadRemoteName(RemoteNameRequestMsg) returns (google.protobuf.Empty) {} 14 rpc GetRemoteNameEvents(google.protobuf.Empty) returns (stream RemoteNameResponseMsg) {} 16 rpc EnableInquiryScan(EnableMsg) returns (google.protobuf.Empty) {} 17 rpc EnablePageScan(EnableMsg) returns (google.protobuf.Empty) {}
|
/packages/modules/Bluetooth/system/gd/l2cap/classic/ |
D | facade.cc | 53 …s FetchConnectionComplete(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, in FetchConnectionComplete() 58 …atus FetchConnectionClose(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, in FetchConnectionClose() 64 ::google::protobuf::Empty* response) override { in SendDynamicChannelPacket() 78 ::google::protobuf::Empty* response) override { in OpenChannel() 91 ::google::protobuf::Empty* response) override { in CloseChannel() 100 …::grpc::Status FetchL2capData(::grpc::ServerContext* context, const ::google::protobuf::Empty* req… in FetchL2capData() 108 google::protobuf::Empty* response) override { in SetDynamicChannel() 116 ::google::protobuf::Empty* response) override { in SetTrafficPaused() 129 …atus GetChannelQueueDepth(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, in GetChannelQueueDepth() 139 ::google::protobuf::Empty* response) override { in InitiateConnectionForSecurity() [all …]
|
/packages/modules/Bluetooth/system/gd/hal/ |
D | facade.cc | 47 ::google::protobuf::Empty* response) override { in SendCommand() 61 ::google::protobuf::Empty* response) override { in SendAcl() 70 ::google::protobuf::Empty* response) override { in SendSco() 78 const ::google::protobuf::Empty* request, in StreamEvents() 85 const ::google::protobuf::Empty* request, in StreamAcl() 92 const ::google::protobuf::Empty* request, in StreamSco() 99 const ::google::protobuf::Empty* request, in StreamIso()
|