/aosp12/system/bt/gd/l2cap/internal/ |
H A D | enhanced_retransmission_mode_channel_data_controller.cc | 42 impl(ErtmController* controller, os::Handler* handler) in impl() argument 46 os::Handler* handler_; 56 enum class TxState { 62 enum class RxState { 71 uint8_t tx_seq_ = 0; 74 uint8_t req_seq_ = 0; 86 int retry_count_ = 0; 94 int frames_sent_ = 0; 481 bool rnr_sent() { in rnr_sent() 686 void send_srej() { in send_srej() [all …]
|
/aosp12/system/bt/gd/security/ |
H A D | security_module.cc | 40 struct SecurityModule::impl { struct in bluetooth::security::SecurityModule 41 impl( in impl() function 66 os::Handler* security_handler_; 68 l2cap::le::L2capLeModule* l2cap_le_module_; 70 hci::HciLayer* hci_layer_; 71 hci::AclManager* acl_manager_; 72 hci::Controller* controller_; 73 storage::StorageModule* storage_module_; 74 L2capSecurityModuleInterface l2cap_security_interface_; 75 neighbor::NameDbModule* name_db_module_; [all …]
|
/aosp12/system/bt/gd/hci/ |
H A D | controller.cc | 32 struct Controller::impl { struct in bluetooth::hci::Controller 33 impl(Controller& module) : module_(module) {} in impl() argument 35 void Start(hci::HciLayer* hci) { in Start() 141 void Stop() { in Stop() 474 void reset() { in reset() 814 Controller& module_; 816 HciLayer* hci_; 825 uint16_t acl_buffers_ = 0; 827 uint16_t sco_buffers_ = 0; 828 Address mac_address_; [all …]
|
H A D | vendor_specific_event_manager.cc | 28 struct VendorSpecificEventManager::impl { struct in bluetooth::hci::VendorSpecificEventManager 29 impl(Module* module) : module_(module){}; in impl() argument 31 ~impl() {} in ~impl() 42 void stop() {} in stop() 53 void unregister_event(VseSubeventCode event) { in unregister_event() 57 bool check_event_supported(VseSubeventCode event) { in check_event_supported() 92 Module* module_; 93 os::Handler* module_handler_; 94 hci::HciLayer* hci_layer_; 95 hci::Controller* controller_; [all …]
|
H A D | le_advertising_manager.cc | 90 ~impl() { in ~impl() 217 void create_advertiser( in create_advertiser() 643 void send_data_fragment( in send_data_fragment() 673 void enable_advertiser( in enable_advertiser() 809 void OnPause() override { in OnPause() 856 void OnResume() override { in OnResume() 907 Module* module_; 909 hci::HciLayer* hci_layer_; 918 bool paused = false; 920 std::mutex id_mutex_; [all …]
|
H A D | le_scanning_manager.cc | 200 impl(Module* module) : module_(module), le_scanning_interface_(nullptr) {} in impl() function 202 ~impl() { in ~impl() 208 void start( in start() 248 void stop() { in stop() 471 void configure_scan() { in configure_scan() 546 void scan(bool start) { in scan() 559 void start_scan() { in start_scan() 587 void stop_scan() { in stop_scan() 1200 void ack_pause() { in ack_pause() 1214 Module* module_; [all …]
|
H A D | hci_layer.cc | 94 struct HciLayer::impl { struct in bluetooth::hci::HciLayer 95 impl(hal::HciHal* hal, HciLayer& module) : hal_(hal), module_(module) { in impl() argument 99 ~impl() { in ~impl() 111 void drop(EventView event) { in drop() 115 void on_outbound_acl_ready() { in on_outbound_acl_ready() 123 void on_outbound_iso_ready() { in on_outbound_iso_ready() 210 void send_next_command() { in send_next_command() 264 void unregister_le_meta_event() { in unregister_le_meta_event() 335 hal::HciHal* hal_; 336 HciLayer& module_; [all …]
|
H A D | acl_manager.cc | 54 struct AclManager::impl { struct in bluetooth::hci::AclManager 55 impl(const AclManager& acl_manager) : acl_manager_(acl_manager) {} in impl() argument 57 void Start() { in Start() 72 void Stop() { in Stop() 113 const AclManager& acl_manager_; 115 classic_impl* classic_impl_ = nullptr; 116 le_impl* le_impl_ = nullptr; 117 os::Handler* handler_ = nullptr; 118 Controller* controller_ = nullptr; 119 HciLayer* hci_layer_ = nullptr; [all …]
|
/aosp12/system/bt/gd/iso/ |
H A D | iso_module.cc | 33 struct IsoModule::impl { struct in bluetooth::iso::IsoModule 34 impl(os::Handler* iso_handler, hci::HciLayer* hci_layer, hci::Controller* controller) in impl() argument 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_};
|
/aosp12/hardware/interfaces/boot/1.1/default/boot_control/ |
H A D | legacy_boot_control.cpp | 30 BootControl impl; member 36 auto& impl = reinterpret_cast<boot_control_private_t*>(module)->impl; in BootControl_init() local 41 auto& impl = reinterpret_cast<boot_control_private_t*>(module)->impl; in BootControl_getNumberSlots() local 46 auto& impl = reinterpret_cast<boot_control_private_t*>(module)->impl; in BootControl_getCurrentSlot() local 51 auto& impl = reinterpret_cast<boot_control_private_t*>(module)->impl; in BootControl_markBootSuccessful() local 56 auto& impl = reinterpret_cast<boot_control_private_t*>(module)->impl; in BootControl_setActiveBootSlot() local 61 auto& impl = reinterpret_cast<boot_control_private_t*>(module)->impl; in BootControl_setSlotAsUnbootable() local 66 auto& impl = reinterpret_cast<boot_control_private_t*>(module)->impl; in BootControl_isSlotBootable() local 71 auto& impl = reinterpret_cast<boot_control_private_t*>(module)->impl; in BootControl_isSlotMarkedSuccessful() local 76 auto& impl = reinterpret_cast<boot_control_private_t*>(module)->impl; in BootControl_getSuffix() local
|
/aosp12/system/bt/gd/l2cap/le/ |
H A D | l2cap_le_module.cc | 52 struct L2capLeModule::impl { struct in bluetooth::l2cap::le::L2capLeModule 53 impl(os::Handler* l2cap_handler, hci::AclManager* acl_manager) in impl() argument 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_,
|
/aosp12/system/bt/gd/btaa/android/ |
H A D | activity_attribution.cc | 80 struct ActivityAttribution::impl { struct in bluetooth::activity_attribution::ActivityAttribution 81 impl(ActivityAttribution* module) { in impl() function 110 void on_wakelock_acquired() { in on_wakelock_acquired() 114 void on_wakelock_released() { in on_wakelock_released() 123 void on_wakeup() { in on_wakeup() 127 void register_callback(ActivityAttributionCallback* callback) { in register_callback() 131 void Dump( in Dump() 136 ActivityAttributionCallback* callback_; 137 AttributionProcessor attribution_processor_; 138 HciProcessor hci_processor_; [all …]
|
/aosp12/system/bt/stack/eatt/ |
H A D | eatt.cc | 26 struct EattExtension::impl { struct in bluetooth::eatt::EattExtension 30 void Start() { in Start() 52 void Stop() { in Stop() 61 bool IsRunning() { return eatt_impl_ ? true : false; } in IsRunning() 63 static eatt_impl* GetImplInstance(void) { in GetImplInstance() 68 static void eatt_connect_ind(const RawAddress& bda, in eatt_connect_ind() 77 static void eatt_connect_cfm(const RawAddress& bda, uint16_t lcid, in eatt_connect_cfm() 93 static void eatt_error_cb(uint16_t lcid, uint16_t reason) { in eatt_error_cb() 104 static void eatt_data_ind(uint16_t lcid, BT_HDR* data_p) { in eatt_data_ind() 109 std::unique_ptr<eatt_impl> eatt_impl_; [all …]
|
/aosp12/system/bt/gd/l2cap/classic/ |
H A D | l2cap_classic_module.cc | 45 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 {
|
/aosp12/system/bt/gd/att/ |
H A D | att_module.cc | 46 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_;
|
/aosp12/system/bt/gd/neighbor/ |
H A D | discoverability.cc | 36 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
|
H A D | page.cc | 33 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
|
H A D | inquiry.cc | 35 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}; 73 ScanParameters inquiry_scan_; 74 hci::InquiryMode inquiry_mode_; 76 int8_t inquiry_response_tx_power_; 92 hci::HciLayer* hci_layer_; [all …]
|
H A D | scan.cc | 31 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
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/plugins/ |
H A D | VersionInfoTest.java | 53 VersionInfo impl = new VersionInfo().addClass(OverlayImpl.class); in testSingleProvides() local 60 VersionInfo impl = new VersionInfo().addClass(OverlayImplIncorrectVersion.class); in testIncorrectVersion() local 68 VersionInfo impl = new VersionInfo(); in testMissingRequired() local 76 VersionInfo impl = new VersionInfo().addClass(QSImplNoDeps.class); in testMissingDependencies() local 84 VersionInfo impl = new VersionInfo().addClass(QSImpl.class); in testHasDependencies() local
|
/aosp12/system/bt/gd/btaa/linux/ |
H A D | activity_attribution.cc | 25 struct ActivityAttribution::impl { struct in bluetooth::activity_attribution::ActivityAttribution 26 impl(ActivityAttribution* module) {} in impl() argument 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()
|
/aosp12/frameworks/libs/net/common/testutils/hostdevice/com/android/testutils/ |
H A D | PacketFilter.kt | 54 private val impl = OffsetFilter(ETHER_TYPE_OFFSET, 0x08, 0x00 /* IPv4 */).and( regex 63 private val impl = OffsetFilter(IPV4_DST_OFFSET, *dst.address) regex 71 private val impl = OffsetFilter(ETHER_TYPE_OFFSET, 0x08, 0x06 /* ARP */) regex 80 private val impl = IPv4UdpFilter() regex
|
/aosp12/packages/apps/TV/src/com/android/tv/modules/ |
H A D | TvApplicationModule.java | 116 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()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/util/settings/ |
H A D | SettingsUtilModule.java | 30 SecureSettings bindsSecureSettings(SecureSettingsImpl impl); in bindsSecureSettings() 34 SystemSettings bindsSystemSettings(SystemSettingsImpl impl); in bindsSystemSettings() 38 GlobalSettings bindsGlobalSettings(GlobalSettingsImpl impl); in bindsGlobalSettings()
|
/aosp12/system/bt/stack/btm/ |
H A D | btm_iso.cc | 31 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 bool IsRunning() { return iso_impl_ ? true : false; } in IsRunning() 46 const IsoManager& iso_manager_; 47 std::unique_ptr<iso_impl> iso_impl_;
|