Home
last modified time | relevance | path

Searched defs:impl (Results 1 – 25 of 82) sorted by relevance

1234

/packages/modules/Bluetooth/system/gd/l2cap/internal/
Denhanced_retransmission_mode_channel_data_controller.cc41 struct ErtmController::impl { struct in bluetooth::l2cap::internal::ErtmController
42 impl(ErtmController* controller, os::Handler* handler) in impl() argument
45 ErtmController* controller_;
46 os::Handler* handler_;
49 static constexpr uint8_t kMaxTxWin = 64;
52 static constexpr bool kSendSrej = false;
56 enum class TxState {
60 TxState tx_state_ = TxState::XMIT;
62 enum class RxState {
67 RxState rx_state_ = RxState::RECV;
[all …]
/packages/modules/Bluetooth/system/gd/security/
Dsecurity_module.cc40 struct SecurityModule::impl { struct in bluetooth::security::SecurityModule
41 impl( in impl() argument
66 os::Handler* security_handler_;
67 l2cap::classic::L2capClassicModule* l2cap_classic_module_;
68 l2cap::le::L2capLeModule* l2cap_le_module_;
69 channel::SecurityManagerChannel* security_manager_channel_;
70 hci::HciLayer* hci_layer_;
71 hci::AclManager* acl_manager_;
72 hci::Controller* controller_;
73 storage::StorageModule* storage_module_;
[all …]
/packages/modules/Bluetooth/system/gd/hci/
Dcontroller.cc34 struct Controller::impl { struct in bluetooth::hci::Controller
35 impl(Controller& module) : module_(module) {} in impl() argument
37 void Start(hci::HciLayer* hci) { in Start()
169 void Stop() { in Stop()
176 void NumberOfCompletedPackets(EventView event) { in NumberOfCompletedPackets()
193 void register_completed_acl_packets_callback(CompletedAclPacketsCallback callback) { in register_completed_acl_packets_callback()
198 void unregister_completed_acl_packets_callback() { in unregister_completed_acl_packets_callback()
203 void register_completed_monitor_acl_packets_callback(CompletedAclPacketsCallback callback) { in register_completed_monitor_acl_packets_callback()
208 void unregister_completed_monitor_acl_packets_callback() { in unregister_completed_monitor_acl_packets_callback()
213 void register_monitor_completed_acl_packets_callback(CompletedAclPacketsCallback callback) { in register_monitor_completed_acl_packets_callback()
[all …]
Dvendor_specific_event_manager.cc28 struct VendorSpecificEventManager::impl { struct in bluetooth::hci::VendorSpecificEventManager
29 impl(Module* module) : module_(module){}; in impl() argument
31 ~impl() {} in ~impl()
33 void start(os::Handler* handler, hci::HciLayer* hci_layer, hci::Controller* controller) { in start()
42 void stop() {} in stop()
44 …r_event(VseSubeventCode event, common::ContextualCallback<void(VendorSpecificEventView)> handler) { in register_event()
53 void unregister_event(VseSubeventCode event) { in unregister_event()
57 bool check_event_supported(VseSubeventCode event) { in check_event_supported()
81 void on_vendor_specific_event(EventView event_view) { in on_vendor_specific_event()
92 Module* module_;
[all …]
Dle_advertising_manager.cc97 struct LeAdvertisingManager::impl : public bluetooth::hci::LeAddressManagerCallback { struct in bluetooth::hci::LeAdvertisingManager
98 impl(Module* module) : module_(module), le_advertising_interface_(nullptr), num_instances_(0) {} in impl() function
100 ~impl() { in ~impl()
107 void start( in start()
152 size_t GetNumberOfAdvertisingInstances() const { in GetNumberOfAdvertisingInstances()
156 AdvertisingApiType get_advertising_api_type() const { in get_advertising_api_type()
160 void register_advertising_callback(AdvertisingCallback* advertising_callback) { in register_advertising_callback()
164 void multi_advertising_state_change(hci::VendorSpecificEventView event) { in multi_advertising_state_change()
191 void handle_event(LeMetaEventView event) { in handle_event()
204 void handle_scan_request(LeScanRequestReceivedView event_view) { in handle_scan_request()
[all …]
Dle_scanning_manager.cc225 struct LeScanningManager::impl : public LeAddressManagerCallback { struct in bluetooth::hci::LeScanningManager
226 impl(Module* module) : module_(module), le_scanning_interface_(nullptr) {} in impl() argument
228 ~impl() { in ~impl()
234 void start( in start()
288 void stop() { in stop()
303 void handle_scan_results(LeMetaEventView event) { in handle_scan_results()
337 struct ExtendedEventTypeOptions {
347 void transform_to_extended_event_type(uint16_t* extended_event_type, ExtendedEventTypeOptions o) { in transform_to_extended_event_type()
355 void handle_advertising_report(LeAdvertisingReportView event_view) { in handle_advertising_report()
406 void handle_directed_advertising_report(LeDirectedAdvertisingReportView event_view) { in handle_directed_advertising_report()
[all …]
Dhci_layer.cc94 struct HciLayer::impl { struct in bluetooth::hci::HciLayer
95 impl(hal::HciHal* hal, HciLayer& module) : hal_(hal), module_(module) { in impl() function
99 ~impl() { in ~impl()
112 void drop(EventView event) { in drop()
116 void on_outbound_acl_ready() { in on_outbound_acl_ready()
124 void on_outbound_sco_ready() { in on_outbound_sco_ready()
132 void on_outbound_iso_ready() { in on_outbound_iso_ready()
141 …_command(unique_ptr<CommandBuilder> command, ContextualOnceCallback<void(TResponse)> on_response) { in enqueue_command()
146 void on_command_status(EventView event) { in on_command_status()
161 void on_command_complete(EventView event) { in on_command_complete()
[all …]
Dacl_manager.cc55 struct AclManager::impl { struct in bluetooth::hci::AclManager
56 impl(const AclManager& acl_manager) : acl_manager_(acl_manager) {} in impl() function
58 void Start() { in Start()
76 void Stop() { in Stop()
96 void dequeue_and_route_acl_packet_to_connection() { in dequeue_and_route_acl_packet_to_connection()
117 const AclManager& acl_manager_;
119 classic_impl* classic_impl_ = nullptr;
120 le_impl* le_impl_ = nullptr;
121 os::Handler* handler_ = nullptr;
122 Controller* controller_ = nullptr;
[all …]
/packages/modules/Bluetooth/system/gd/iso/
Diso_module.cc33 struct IsoModule::impl { struct in bluetooth::iso::IsoModule
34 impl(os::Handler* iso_handler, hci::HciLayer* hci_layer, hci::Controller* controller) in impl() function
37 os::Handler* iso_handler_;
38 hci::HciLayer* hci_layer_;
39 hci::Controller* controller_;
41 internal::IsoManagerImpl iso_manager_impl{iso_handler_, hci_layer_, controller_};
/packages/modules/Bluetooth/system/gd/l2cap/le/
Dl2cap_le_module.cc52 struct L2capLeModule::impl { struct in bluetooth::l2cap::le::L2capLeModule
53 impl(os::Handler* l2cap_handler, hci::AclManager* acl_manager) in impl() function
57 os::Handler* l2cap_handler_;
58 hci::AclManager* acl_manager_;
59 l2cap::internal::ParameterProvider parameter_provider_;
60 internal::FixedChannelServiceManagerImpl fixed_channel_service_manager_impl_{l2cap_handler_};
61 internal::DynamicChannelServiceManagerImpl dynamic_channel_service_manager_impl_{l2cap_handler_};
62 internal::LinkManager link_manager_{l2cap_handler_,
/packages/modules/Bluetooth/system/gd/btaa/android/
Dactivity_attribution.cc94 struct ActivityAttribution::impl { struct in bluetooth::activity_attribution::ActivityAttribution
95 impl(ActivityAttribution* module) { in impl() argument
134 ~impl() { in ~impl()
139 void on_hci_packet(hal::HciPacket packet, hal::SnoopLogger::PacketType type, uint16_t length) { in on_hci_packet()
143 void on_wakelock_acquired() { in on_wakelock_acquired()
147 void on_wakelock_released() { in on_wakelock_released()
156 void on_wakeup() { in on_wakeup()
160 void register_callback(ActivityAttributionCallback* callback) { in register_callback()
164 …ity_attribution_info(int uid, const std::string& package_name, const std::string& device_address) { in notify_activity_attribution_info()
168 void Dump( in Dump()
[all …]
/packages/modules/Bluetooth/system/stack/eatt/
Deatt.cc30 struct EattExtension::impl { struct in bluetooth::eatt::EattExtension
34 void Start() { in Start()
57 void Stop() { in Stop()
66 bool IsRunning() { return eatt_impl_ ? true : false; } in IsRunning()
68 static eatt_impl* GetImplInstance(void) { in GetImplInstance()
73 static void eatt_connect_ind(const RawAddress& bda, in eatt_connect_ind()
82 static void eatt_connect_cfm(const RawAddress& bda, uint16_t lcid, in eatt_connect_cfm()
89 static void eatt_reconfig_completed(const RawAddress& bda, uint16_t lcid, in eatt_reconfig_completed()
98 static void eatt_collision_ind(const RawAddress& bd_addr) { in eatt_collision_ind()
103 static void eatt_error_cb(uint16_t lcid, uint16_t reason) { in eatt_error_cb()
[all …]
/packages/modules/Bluetooth/system/bta/le_audio/
Dcontent_control_id_keeper.cc79 struct ContentControlIdKeeper::impl { struct in le_audio::ContentControlIdKeeper
80 impl(const ContentControlIdKeeper& ccid_keeper) : ccid_keeper_(ccid_keeper) {} in impl() function
82 void Start() { in Start()
87 void Stop() { in Stop()
92 bool IsRunning() { return ccid_keeper_impl_ ? true : false; } in IsRunning()
94 const ContentControlIdKeeper& ccid_keeper_;
95 std::unique_ptr<ccid_keeper> ccid_keeper_impl_;
/packages/modules/Bluetooth/system/gd/l2cap/classic/
Dl2cap_classic_module.cc45 struct L2capClassicModule::impl { struct in bluetooth::l2cap::classic::L2capClassicModule
46 impl(os::Handler* l2cap_handler, hci::AclManager* acl_manager) in impl() function
51 os::Handler* l2cap_handler_;
52 hci::AclManager* acl_manager_;
53 l2cap::internal::ParameterProvider parameter_provider_;
54 internal::FixedChannelServiceManagerImpl fixed_channel_service_manager_impl_{l2cap_handler_};
55 internal::DynamicChannelServiceManagerImpl dynamic_channel_service_manager_impl_{l2cap_handler_};
56 …rnal::LinkManager link_manager_{l2cap_handler_, acl_manager_, &fixed_channel_service_manager_impl_,
58 std::unique_ptr<internal::DumpsysHelper> dumpsys_helper_;
60 struct SecurityInterfaceImpl : public SecurityInterface {
[all …]
/packages/modules/Bluetooth/system/gd/att/
Datt_module.cc46 struct AttModule::impl { struct in bluetooth::att::AttModule
47 impl( in impl() function
65 os::Handler* att_handler_;
66 l2cap::le::L2capLeModule* l2cap_le_module_;
67 l2cap::classic::L2capClassicModule* l2cap_classic_module_;
/packages/modules/Bluetooth/system/gd/neighbor/
Dpage.cc33 struct PageModule::impl { struct in bluetooth::neighbor::PageModule
47 PageModule& module_;
49 ScanParameters scan_parameters_;
50 hci::PageScanType scan_type_;
51 PageTimeout timeout_;
55 hci::HciLayer* hci_layer_;
56 os::Handler* handler_;
61 neighbor::PageModule::impl::impl(neighbor::PageModule& module) : module_(module) {} in impl() function in bluetooth::neighbor::neighbor::PageModule::impl
Ddiscoverability.cc36 struct DiscoverabilityModule::impl { struct in bluetooth::neighbor::DiscoverabilityModule
48 uint8_t num_supported_iac_;
49 std::vector<hci::Lap> laps_;
53 hci::HciLayer* hci_layer_;
54 neighbor::ScanModule* scan_module_;
55 os::Handler* handler_;
57 DiscoverabilityModule& module_;
64 neighbor::DiscoverabilityModule::impl::impl(neighbor::DiscoverabilityModule& module) : module_(modu… in impl() function in bluetooth::neighbor::neighbor::DiscoverabilityModule::impl
Dinquiry.cc35 struct InquiryModule::impl { struct in bluetooth::neighbor::InquiryModule
64 InquiryCallbacks inquiry_callbacks_;
66 InquiryModule& module_;
68 bool active_general_one_shot_{false};
69 bool active_limited_one_shot_{false};
70 bool active_general_periodic_{false};
71 bool active_limited_periodic_{false};
73 ScanParameters inquiry_scan_;
74 hci::InquiryMode inquiry_mode_;
75 hci::InquiryScanType inquiry_scan_type_;
[all …]
Dscan.cc31 struct ScanModule::impl { struct in bluetooth::neighbor::ScanModule
44 ScanModule& module_;
46 bool inquiry_scan_enabled_;
47 bool page_scan_enabled_;
54 hci::HciLayer* hci_layer_;
55 os::Handler* handler_;
60 neighbor::ScanModule::impl::impl(neighbor::ScanModule& module) in impl() function in bluetooth::neighbor::neighbor::ScanModule::impl
Dname_db.cc40 struct NameDbModule::impl { struct in bluetooth::neighbor::NameDbModule
52 std::unordered_map<hci::Address, std::list<PendingRemoteNameRead>> address_to_pending_read_map_;
53 std::unordered_map<hci::Address, RemoteName> address_to_name_map_;
57 neighbor::NameModule* name_module_;
59 const NameDbModule& module_;
60 os::Handler* handler_;
65 neighbor::NameDbModule::impl::impl(const neighbor::NameDbModule& module) : module_(module) {} in impl() function in bluetooth::neighbor::neighbor::NameDbModule::impl
Dconnectability.cc32 struct ConnectabilityModule::impl { struct in bluetooth::neighbor::ConnectabilityModule
43 ConnectabilityModule& module_;
45 neighbor::ScanModule* scan_module_;
51 neighbor::ConnectabilityModule::impl::impl(neighbor::ConnectabilityModule& module) : module_(module… in impl() function in bluetooth::neighbor::neighbor::ConnectabilityModule::impl
Dname.cc46 struct NameModule::impl { struct in bluetooth::neighbor::NameModule
62 const NameModule& module_;
71 std::unordered_map<hci::Address, std::unique_ptr<ReadCallbackHandler>> read_callback_handler_map_;
72 …::unordered_map<hci::Address, std::unique_ptr<CancelCallbackHandler>> cancel_callback_handler_map_;
74 hci::HciLayer* hci_layer_;
75 os::Handler* handler_;
80 neighbor::NameModule::impl::impl(const neighbor::NameModule& module) : module_(module) {} in impl() function in bluetooth::neighbor::neighbor::NameModule::impl
/packages/modules/Bluetooth/system/stack/btm/
Dbtm_iso.cc31 struct IsoManager::impl { struct in bluetooth::hci::IsoManager
32 impl(const IsoManager& iso_manager) : iso_manager_(iso_manager) {} in impl() function
34 void Start() { in Start()
39 void Stop() { in Stop()
44 void Dump(int fd) { in Dump()
48 bool IsRunning() { return iso_impl_ ? true : false; } in IsRunning()
50 const IsoManager& iso_manager_;
51 std::unique_ptr<iso_impl> iso_impl_;
/packages/apps/TV/src/com/android/tv/modules/
DTvApplicationModule.java116 abstract DvrDataManager providesDvrDataManager(DvrDataManagerImpl impl); in providesDvrDataManager()
120 abstract WritableDvrDataManager providesWritableDvrDataManager(DvrDataManagerImpl impl); in providesWritableDvrDataManager()
124 abstract EpgFetcher epgFetcher(EpgFetcherImpl impl); in epgFetcher()
135 TvOptionsRowAdapterFactory impl); in tvOptionsRowAdapterFactory()
138 abstract MenuRowFactory.Factory menuRowFactoryFactory(MenuRowFactoryFactory impl); in menuRowFactoryFactory()
/packages/modules/Bluetooth/system/gd/btaa/linux/
Dactivity_attribution.cc25 struct ActivityAttribution::impl { struct in bluetooth::activity_attribution::ActivityAttribution
26 impl(ActivityAttribution* module) {} in impl() function
28 void on_hci_packet(hal::HciPacket packet, hal::SnoopLogger::PacketType type, uint16_t length) {} in on_hci_packet()
30 void register_callback(ActivityAttributionCallback* callback) {} in register_callback()

1234