/system/bt/gd/rust/shim/src/ |
D | bridge.rs | 12 type Controller; typedef 20 fn get_controller(stack: &mut Stack) -> Box<Controller>; in get_controller() argument 33 fn controller_supports_simple_pairing(c: &Controller) -> bool; in controller_supports_simple_pairing() 34 fn controller_supports_secure_connections(c: &Controller) -> bool; in controller_supports_secure_connections() 35 fn controller_supports_simultaneous_le_bredr(c: &Controller) -> bool; in controller_supports_simultaneous_le_bredr() 36 fn controller_supports_interlaced_inquiry_scan(c: &Controller) -> bool; in controller_supports_interlaced_inquiry_scan() 37 fn controller_supports_rssi_with_inquiry_results(c: &Controller) -> bool; in controller_supports_rssi_with_inquiry_results() 38 fn controller_supports_extended_inquiry_response(c: &Controller) -> bool; in controller_supports_extended_inquiry_response() 39 fn controller_supports_role_switch(c: &Controller) -> bool; in controller_supports_role_switch() 40 fn controller_supports_three_slot_packets(c: &Controller) -> bool; in controller_supports_three_slot_packets() [all …]
|
D | controller.rs | 10 pub struct Controller(pub Arc<ControllerExports>); struct 11 impl Deref for Controller { implementation 22 pub fn [<controller_supports_ $id>](c: &Controller) -> bool { 66 pub fn [<controller_supports_ $id>](c: &Controller) -> bool { 96 pub fn [<controller_supports_ $id>](c: &Controller) -> bool { 115 pub fn [<controller_get_ $id>](c: &Controller) -> $type { 139 pub fn controller_get_le_maximum_tx_data_length(c: &Controller) -> u16 { in controller_get_le_maximum_tx_data_length() 143 pub fn controller_get_le_maximum_tx_time(c: &Controller) -> u16 { in controller_get_le_maximum_tx_time() 147 pub fn controller_get_address(c: &Controller) -> String { in controller_get_address()
|
D | stack.rs | 3 use crate::controller::Controller; 69 pub fn get_controller(stack: &mut Stack) -> Box<Controller> { in get_controller() argument 73 Box::new(Controller(stack.get_blocking::<Arc<ControllerExports>>())) in get_controller()
|
/system/bt/gd/hci/ |
D | controller.cc | 32 struct Controller::impl { 33 impl(Controller& module) : module_(module) {} in impl() 40 …EventCode::NUMBER_OF_COMPLETED_PACKETS, handler->BindOn(this, &Controller::impl::NumberOfCompleted… in Start() 51 …handler->BindOnceOn(this, &Controller::impl::write_secure_connections_host_support_complete_handle… in Start() 54 … handler->BindOnceOn(this, &Controller::impl::read_local_name_complete_handler)); in Start() 56 … handler->BindOnceOn(this, &Controller::impl::read_local_version_information_complete_handler)); in Start() 58 … handler->BindOnceOn(this, &Controller::impl::read_local_supported_commands_complete_handler)); in Start() 64 … handler->BindOnceOn(this, &Controller::impl::read_local_extended_features_complete_handler, in Start() 69 … handler->BindOnceOn(this, &Controller::impl::read_buffer_size_complete_handler)); in Start() 74 handler->BindOnceOn(this, &Controller::impl::le_read_buffer_size_v2_handler)); in Start() [all …]
|
D | vendor_specific_event_manager.cc | 33 void start(os::Handler* handler, hci::HciLayer* hci_layer, hci::Controller* controller) { in start() 95 hci::Controller* controller_; 106 list->add<hci::Controller>(); in ListDependencies() 110 pimpl_->start(GetHandler(), GetDependency<hci::HciLayer>(), GetDependency<hci::Controller>()); in Start()
|
D | controller.h | 28 class Controller : public Module { 30 Controller(); 31 virtual ~Controller(); 32 DISALLOW_COPY_AND_ASSIGN(Controller);
|
D | acl_manager.cc | 60 controller_ = acl_manager_.GetDependency<Controller>(); in Start() 118 Controller* controller_ = nullptr; 284 list->add<Controller>(); in ListDependencies()
|
/system/bt/gd/facade/ |
D | read_only_property_server.cc | 26 ReadOnlyPropertyService(hci::Controller* controller) : controller_(controller) {} in ReadOnlyPropertyService() 37 hci::Controller* controller_; 42 list->add<hci::Controller>(); in ListDependencies() 46 service_ = std::make_unique<ReadOnlyPropertyService>(GetDependency<hci::Controller>()); in Start()
|
/system/bt/gd/iso/ |
D | iso_module.cc | 34 impl(os::Handler* iso_handler, hci::HciLayer* hci_layer, hci::Controller* controller) in impl() 39 hci::Controller* controller_; 46 list->add<hci::Controller>(); in ListDependencies() 50 …:make_unique<impl>(GetHandler(), GetDependency<hci::HciLayer>(), GetDependency<hci::Controller>()); in Start()
|
/system/bt/gd/hci/facade/ |
D | controller_facade.cc | 41 …ControllerFacadeService(Controller* controller, ::bluetooth::os::Handler*) : controller_(controlle… in ControllerFacadeService() 64 Controller* controller_; 69 list->add<Controller>(); in ListDependencies() 74 service_ = new ControllerFacadeService(GetDependency<Controller>(), GetHandler()); in Start()
|
D | facade.cc | 38 …HciFacadeService(HciLayer* hci_layer, Controller* controller, ::bluetooth::os::Handler* facade_han… in HciFacadeService() 216 Controller* controller_; 229 list->add<Controller>(); in ListDependencies() 234 …service_ = new HciFacadeService(GetDependency<HciLayer>(), GetDependency<Controller>(), GetHandler… in Start()
|
/system/bt/gd/security/ |
D | security_module.cc | 47 hci::Controller* controller, in impl() 72 hci::Controller* controller_; 98 list->add<hci::Controller>(); in ListDependencies() 110 GetDependency<hci::Controller>(), in Start()
|
/system/bt/main/shim/ |
D | stack.h | 63 ::rust::Box<rust::Controller>* GetRustController() { in GetRustController() 79 ::rust::Box<rust::Controller>* rust_controller_ = nullptr;
|
D | entry.h | 49 class Controller; variable 80 bluetooth::hci::Controller* GetController();
|
D | entry.cc | 49 hci::Controller* GetController() { in GetController() 52 ->GetInstance<hci::Controller>(); in GetController()
|
D | stack.cc | 86 rust_controller_ = new ::rust::Box<rust::Controller>( in StartEverything() 105 modules.add<hci::Controller>(); in StartEverything()
|
/system/bt/gd/hci/acl_manager/ |
D | round_robin_scheduler.h | 35 …os::Handler* handler, Controller* controller, common::BidiQueueEnd<AclBuilder, AclView>* hci_queue… 64 Controller* controller_ = nullptr;
|
/system/bt/gd/iso/internal/ |
D | iso_manager_impl.h | 42 …explicit IsoManagerImpl(os::Handler* iso_handler, hci::HciLayer* hci_layer, hci::Controller* contr… 111 hci::Controller* controller_ __attribute__((unused));
|
/system/bt/doc/ |
D | supported_features.md | 14 AVCTP | 1.4 | Controller, Target
|
D | directory_layout.md | 19 * hci - *Host Controller Interface* - Communication protocol with Bluetooth chip.
|
/system/bt/test/mock/ |
D | mock_main_shim_entry.cc | 56 hci::Controller* GetController() { return hci::testing::mock_controller_; } in GetController()
|
/system/update_engine/payload_consumer/ |
D | postinstall_runner_action.h | 146 std::unique_ptr<base::FileDescriptorWatcher::Controller> progress_controller_;
|
/system/update_engine/common/ |
D | subprocess.h | 131 std::unique_ptr<base::FileDescriptorWatcher::Controller> stdout_controller;
|
D | subprocess_unittest.cc | 87 unique_ptr<base::FileDescriptorWatcher::Controller> watcher_; 274 [](unique_ptr<base::FileDescriptorWatcher::Controller>* watcher, in TEST_F()
|
/system/core/libprocessgroup/profiles/ |
D | task_profiles.proto | 31 string controller = 2 [json_name = "Controller"];
|