Home
last modified time | relevance | path

Searched refs:facade (Results 1 – 25 of 71) sorted by relevance

123

/system/bt/gd/facade/
Dgrpc_root_server.cc54 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 …]
Drootservice.proto3 package bluetooth.facade;
6 import "facade/common.proto";
33 rpc ReadLocalAddress(google.protobuf.Empty) returns (facade.BluetoothAddress) {}
Dread_only_property_server.cc22 namespace facade { namespace
30 ::bluetooth::facade::BluetoothAddress* response) override { in ReadLocalAddress()
/system/bt/gd/
DAndroid.bp196 "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/
Dgrpc_module.cc44 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()
Dgrpc_module.h38 void Register(GrpcFacadeModule* facade);
40 void Unregister(GrpcFacadeModule* facade);
/system/bt/gd/hci/
DAndroid.bp44 "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/
Dfacade.proto6 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 …]
Dfacade.cc49 …::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/
Dle_initiator_address_facade.proto6 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;
Dle_initiator_address_facade.cc39 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()
Dle_advertising_manager_facade.proto3 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;
Dle_acl_manager_facade.proto6 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/
Dshim_test.py24 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/
Dle_scanning_manager_test.py24 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
Dle_scanning_with_security_test.py21 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
Dle_advertising_manager_test.py24 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
Dcontroller_test.py22 from facade import rootservice_pb2 as facade_rootservice
23 from hci.facade import controller_facade_pb2 as controller_facade
/system/bt/gd/l2cap/le/
Dfacade.proto6 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/
Dfacade.proto6 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/
DAndroid.bp22 "facade/facade.cc",
/system/bt/gd/neighbor/
DAndroid.bp24 "facade/facade.cc",
/system/bt/gd/l2cap/le/cert/
Ddual_l2cap_test.py21 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/
Dpy_le_security.py26 from facade import common_pb2 as common
28 from hci.facade import facade_pb2 as hci_facade
/system/bt/gd/neighbor/cert/
Dpy_neighbor.py26 from hci.facade import facade_pb2 as hci_facade
27 from neighbor.facade import facade_pb2 as neighbor_facade

123