/system/bt/gd/facade/ |
D | grpc_root_server.cc | 54 namespace facade { namespace 60 class RootFacadeService : public ::bluetooth::facade::RootFacade::Service { 66 const ::bluetooth::facade::StartStackRequest* request, in StartStack() 67 ::bluetooth::facade::StartStackResponse* response) override { in StartStack() 81 modules.add<::bluetooth::facade::ReadOnlyPropertyServerModule>(); in StartStack() 82 modules.add<::bluetooth::hci::facade::HciLayerFacadeModule>(); in StartStack() 85 modules.add<::bluetooth::facade::ReadOnlyPropertyServerModule>(); in StartStack() 86 modules.add<::bluetooth::hci::facade::HciLayerFacadeModule>(); in StartStack() 87 modules.add<::bluetooth::hci::facade::AclManagerFacadeModule>(); in StartStack() 88 modules.add<::bluetooth::hci::facade::ControllerFacadeModule>(); in StartStack() [all …]
|
D | rootservice.proto | 3 package bluetooth.facade; 6 import "facade/common.proto"; 33 rpc ReadLocalAddress(google.protobuf.Empty) returns (facade.BluetoothAddress) {}
|
D | read_only_property_server.cc | 22 namespace facade { namespace 30 ::bluetooth::facade::BluetoothAddress* response) override { in ReadLocalAddress()
|
/system/bt/gd/ |
D | Android.bp | 196 "facade/facade_main.cc", 197 "facade/grpc_root_server.cc", 198 "facade/read_only_property_server.cc", 532 "facade/common.proto", 533 "facade/rootservice.proto", 534 "hal/facade.proto", 535 "hci/facade/facade.proto", 536 "hci/facade/acl_manager_facade.proto", 537 "hci/facade/controller_facade.proto", 538 "hci/facade/le_acl_manager_facade.proto", [all …]
|
/system/bt/gd/grpc/ |
D | grpc_module.cc | 44 for (const auto& facade : facades_) { in StartServer() local 45 builder.RegisterService(facade->GetService()); in StartServer() 53 for (const auto& facade : facades_) { in StartServer() local 54 facade->OnServerStarted(); in StartServer() 64 for (const auto& facade : facades_) { in StopServer() local 65 facade->OnServerStopped(); in StopServer() 71 void GrpcModule::Register(GrpcFacadeModule* facade) { in Register() argument 74 facades_.push_back(facade); in Register() 77 void GrpcModule::Unregister(GrpcFacadeModule* facade) { in Unregister() argument 81 if (*it == facade) { in Unregister()
|
D | grpc_module.h | 38 void Register(GrpcFacadeModule* facade); 40 void Unregister(GrpcFacadeModule* facade);
|
/system/bt/gd/hci/ |
D | Android.bp | 44 "facade/facade.cc", 45 "facade/acl_manager_facade.cc", 46 "facade/controller_facade.cc", 47 "facade/le_acl_manager_facade.cc", 48 "facade/le_advertising_manager_facade.cc", 49 "facade/le_initiator_address_facade.cc", 50 "facade/le_scanning_manager_facade.cc",
|
/system/bt/gd/security/ |
D | facade.proto | 6 import "facade/common.proto"; 7 import "l2cap/classic/facade.proto"; 8 import "hci/facade/le_initiator_address_facade.proto"; 11 rpc CreateBond(facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {} 12 rpc CreateBondLe(facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {} 13 rpc CancelBond(facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {} 14 rpc RemoveBond(facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {} 32 facade.BluetoothAddressWithType address = 1; 48 facade.BluetoothAddressWithType peer = 2; 64 facade.BluetoothAddressWithType address = 5; [all …]
|
D | facade.cc | 49 …::grpc::Status CreateBond(::grpc::ServerContext* context, const facade::BluetoothAddressWithType* … in CreateBond() 58 …::grpc::Status CreateBondLe(::grpc::ServerContext* context, const facade::BluetoothAddressWithType… in CreateBondLe() 67 …::grpc::Status CancelBond(::grpc::ServerContext* context, const facade::BluetoothAddressWithType* … in CancelBond() 76 …::grpc::Status RemoveBond(::grpc::ServerContext* context, const facade::BluetoothAddressWithType* … in RemoveBond() 271 …display_yes_no.mutable_peer()->set_type(static_cast<facade::BluetoothAddressTypeEnum>(peer.GetAddr… in DisplayPairingPrompt() 282 …display_with_value.mutable_peer()->set_type(static_cast<facade::BluetoothAddressTypeEnum>(peer.Get… in DisplayConfirmValue() 293 …display_yes_no.mutable_peer()->set_type(static_cast<facade::BluetoothAddressTypeEnum>(peer.GetAddr… in DisplayYesNoDialog() 303 …display_passkey.mutable_peer()->set_type(static_cast<facade::BluetoothAddressTypeEnum>(peer.GetAdd… in DisplayPasskey() 315 static_cast<facade::BluetoothAddressTypeEnum>(peer.GetAddressType())); in DisplayEnterPasskeyDialog() 325 …display_cancel.mutable_peer()->set_type(static_cast<facade::BluetoothAddressTypeEnum>(peer.GetAddr… in Cancel() [all …]
|
/system/bt/gd/hci/facade/ |
D | le_initiator_address_facade.proto | 6 import "facade/common.proto"; 10 …rpc GetCurrentInitiatorAddress(google.protobuf.Empty) returns (bluetooth.facade.BluetoothAddressWi… 11 …rpc GetAnotherAddress(google.protobuf.Empty) returns (bluetooth.facade.BluetoothAddressWithType) {} 24 facade.BluetoothAddressWithType address_with_type = 2;
|
D | le_initiator_address_facade.cc | 39 namespace facade { namespace 77 ::bluetooth::facade::BluetoothAddressWithType* response) override { in GetCurrentInitiatorAddress() 79 auto bluetooth_address = new ::bluetooth::facade::BluetoothAddress(); in GetCurrentInitiatorAddress() 81 …response->set_type(static_cast<::bluetooth::facade::BluetoothAddressTypeEnum>(current.GetAddressTy… in GetCurrentInitiatorAddress() 89 ::bluetooth::facade::BluetoothAddressWithType* response) override { in GetAnotherAddress() 91 auto bluetooth_address = new ::bluetooth::facade::BluetoothAddress(); in GetAnotherAddress() 93 …response->set_type(static_cast<::bluetooth::facade::BluetoothAddressTypeEnum>(another.GetAddressTy… in GetAnotherAddress()
|
D | le_advertising_manager_facade.proto | 3 package bluetooth.hci.facade; 6 import "facade/common.proto"; 42 bluetooth.facade.BluetoothAddressTypeEnum address_type = 7; 43 bluetooth.facade.BluetoothPeerAddressTypeEnum peer_address_type = 8; 44 bluetooth.facade.BluetoothAddress peer_address = 9;
|
D | le_acl_manager_facade.proto | 6 import "facade/common.proto"; 9 …rpc CreateConnection(bluetooth.facade.BluetoothAddressWithType) returns (stream LeConnectionEvent)… 10 rpc CancelConnection(bluetooth.facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {}
|
/system/bt/gd/shim/cert/ |
D | shim_test.py | 24 from facade import common_pb2 as common 25 from facade import rootservice_pb2 as facade_rootservice 27 from shim.facade import facade_pb2 as shim_facade
|
/system/bt/gd/hci/cert/ |
D | le_scanning_manager_test.py | 24 from facade import rootservice_pb2 as facade_rootservice 25 from hci.facade import facade_pb2 as hci_facade 26 from hci.facade import le_scanning_manager_facade_pb2 as le_scanning_facade 27 from hci.facade import le_advertising_manager_facade_pb2 as le_advertising_facade 28 from hci.facade import le_initiator_address_facade_pb2 as le_initiator_address_facade 30 from facade import common_pb2 as common
|
D | le_scanning_with_security_test.py | 21 from hci.facade import facade_pb2 as hci_facade 22 from hci.facade import le_advertising_manager_facade_pb2 as le_advertising_facade 23 from hci.facade import le_initiator_address_facade_pb2 as le_initiator_address_facade 25 from facade import common_pb2 as common
|
D | le_advertising_manager_test.py | 24 from facade import rootservice_pb2 as facade_rootservice 25 from hci.facade import facade_pb2 as hci_facade 26 from hci.facade import \ 29 from facade import common_pb2 as common
|
D | controller_test.py | 22 from facade import rootservice_pb2 as facade_rootservice 23 from hci.facade import controller_facade_pb2 as controller_facade
|
/system/bt/gd/l2cap/le/ |
D | facade.proto | 6 import "facade/common.proto"; 34 facade.BluetoothAddressWithType remote = 1; 43 facade.BluetoothAddressWithType remote = 1; 62 facade.BluetoothAddressWithType remote = 1; 73 facade.BluetoothAddressWithType remote = 1;
|
/system/bt/gd/l2cap/classic/ |
D | facade.proto | 6 import "facade/common.proto"; 32 facade.BluetoothAddress remote = 1; 36 facade.BluetoothAddress remote = 1; 47 facade.BluetoothAddress remote = 1; 91 facade.BluetoothAddress remote = 1;
|
/system/bt/gd/shim/ |
D | Android.bp | 22 "facade/facade.cc",
|
/system/bt/gd/neighbor/ |
D | Android.bp | 24 "facade/facade.cc",
|
/system/bt/gd/l2cap/le/cert/ |
D | dual_l2cap_test.py | 21 from facade import common_pb2 as common 23 from hci.facade import le_acl_manager_facade_pb2 as le_acl_manager_facade 24 from hci.facade import le_advertising_manager_facade_pb2 as le_advertising_facade 25 from hci.facade import le_initiator_address_facade_pb2 as le_initiator_address_facade 30 from neighbor.facade import facade_pb2 as neighbor_facade
|
/system/bt/gd/cert/ |
D | py_le_security.py | 26 from facade import common_pb2 as common 28 from hci.facade import facade_pb2 as hci_facade
|
/system/bt/gd/neighbor/cert/ |
D | py_neighbor.py | 26 from hci.facade import facade_pb2 as hci_facade 27 from neighbor.facade import facade_pb2 as neighbor_facade
|