Home
last modified time | relevance | path

Searched refs:adv_handle (Results 1 – 23 of 23) sorted by relevance

/packages/modules/Bluetooth/system/tools/scripts/
Ddump_le_audio.py359 def parse_big_codec_information(adv_handle, packet): argument
365 broadcast_map[adv_handle].num_of_bis[subgroup] = num_of_bis
393 broadcast_map[adv_handle].bis_index_list.append(bis_index)
409 broadcast_map[adv_handle].bis[bis_index].sampling_frequencies = sampling_frequencies
410 broadcast_map[adv_handle].bis[bis_index].frame_duration = frame_duration
411 broadcast_map[adv_handle].bis[bis_index].octets_per_frame = octets_per_frame
412 broadcast_map[adv_handle].bis[bis_index].channel_allocation = channel_allocation
507 adv_handle, packet = unpack_data(packet, 1, False)
508 big_adv_map[big_handle] = adv_handle
544 adv_handle = big_adv_map[big_handle]
[all …]
/packages/modules/Bluetooth/system/stack/test/common/
Dmock_hcic_layer.cc81 void btsnd_hcic_create_big(uint8_t big_handle, uint8_t adv_handle, in btsnd_hcic_create_big() argument
88 .adv_handle = adv_handle, in btsnd_hcic_create_big()
/packages/modules/Bluetooth/system/stack/btm/
Dble_scanner_hci_interface.cc152 uint16_t service_data, uint8_t adv_handle, in PeriodicAdvSetInfoTransfer() argument
162 acl_handle, service_data, adv_handle, in PeriodicAdvSetInfoTransfer()
260 uint16_t service_data, uint8_t adv_handle, in PeriodicAdvSetInfoTransfer() argument
270 acl_handle, service_data, adv_handle, in PeriodicAdvSetInfoTransfer()
Dbtm_ble_scanner.cc73 uint16_t service_data, uint8_t adv_handle, in PeriodicAdvSetInfoTransfer() argument
76 adv_handle, command_complete); in PeriodicAdvSetInfoTransfer()
Dbtm_iso_impl.h780 big_id, big_params.adv_handle, big_params.num_bis, big_params.sdu_itv, in create_big()
/packages/modules/Bluetooth/system/test/mock/
Dmock_stack_hcic_hciblecmds.cc152 uint16_t conn_handle, uint16_t service_data, uint8_t adv_handle, in btsnd_hcic_ble_periodic_advertising_set_info_transfer() argument
157 conn_handle, service_data, adv_handle, std::move(cb)); in btsnd_hcic_ble_periodic_advertising_set_info_transfer()
304 void btsnd_hcic_create_big(uint8_t big_handle, uint8_t adv_handle, in btsnd_hcic_create_big() argument
312 big_handle, adv_handle, num_bis, sdu_itv, max_sdu_size, transport_latency, in btsnd_hcic_create_big()
Dmock_stack_hcic_hciblecmds.h182 uint8_t adv_handle, in operator()
184 body(conn_handle, service_data, adv_handle, std::move(cb)); in operator()
533 std::function<void(uint8_t big_handle, uint8_t adv_handle, uint8_t num_bis,
544 void operator()(uint8_t big_handle, uint8_t adv_handle, uint8_t num_bis, in operator()
549 body(big_handle, adv_handle, num_bis, sdu_itv, max_sdu_size, in operator()
/packages/modules/Bluetooth/system/stack/include/
Dble_scanner.h60 uint8_t adv_handle,
Dhcimsgs.h404 void btsnd_hcic_create_big(uint8_t big_handle, uint8_t adv_handle,
458 uint16_t conn_handle, uint16_t service_data, uint8_t adv_handle,
Dbtm_iso_api_types.h135 uint8_t adv_handle; member
/packages/modules/Bluetooth/system/stack/hcic/
Dhciblecmds.cc530 void btsnd_hcic_create_big(uint8_t big_handle, uint8_t adv_handle, in btsnd_hcic_create_big() argument
547 UINT8_TO_STREAM(pp, adv_handle); in btsnd_hcic_create_big()
742 uint16_t conn_handle, uint16_t service_data, uint8_t adv_handle, in btsnd_hcic_ble_periodic_advertising_set_info_transfer() argument
749 UINT8_TO_STREAM(pp, adv_handle); in btsnd_hcic_ble_periodic_advertising_set_info_transfer()
/packages/modules/Bluetooth/system/gd/hci/
Dle_scanning_manager.h103 uint8_t adv_handle,
Dle_periodic_sync_manager.h177 …const Address& address, uint16_t service_data, uint8_t adv_handle, int pa_source, uint16_t connect… in SyncSetInfo() argument
186 …::LePeriodicAdvertisingSetInfoTransferBuilder::Create(connection_handle, service_data, adv_handle), in SyncSetInfo()
Dle_scanning_manager.cc1342 uint8_t adv_handle, in transfer_set_info()
1356 …periodic_sync_manager_.SyncSetInfo(address, service_data, adv_handle, pa_source, connection_handle… in transfer_set_info()
1872 uint8_t adv_handle, in TransferSetInfo() argument
1875 pimpl_.get(), &impl::transfer_set_info, address, handle, service_data, adv_handle, pa_source); in TransferSetInfo()
/packages/modules/Bluetooth/system/gd/rust/topshim/gatt/
Dgatt_ble_scanner_shim.h163 void TransferSetInfo(RawAddress addr, uint16_t service_data, uint8_t adv_handle);
Dgatt_ble_scanner_shim.cc343 void BleScannerIntf::TransferSetInfo(RawAddress addr, uint16_t service_data, uint8_t adv_handle) { in TransferSetInfo() argument
344 scanner_intf_->TransferSetInfo(addr, service_data, adv_handle, 0 /* place holder */); in TransferSetInfo()
/packages/modules/Bluetooth/system/include/hardware/
Dble_scanner.h222 uint8_t adv_handle, int pa_source) = 0;
/packages/modules/Bluetooth/system/main/shim/
Dble_scanner_interface_impl.h98 uint8_t adv_handle, int pa_source) override;
Dle_scanning_manager.cc472 uint8_t adv_handle, in TransferSetInfo() argument
486 adv_handle, pa_source); in TransferSetInfo()
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dgatt.rs218 adv_handle: u8, in TransferSetInfo()
1614 pub fn transfer_set_info(&mut self, addr: RawAddress, service_data: u16, adv_handle: u8) { in transfer_set_info()
1615 mutcxxcall!(self, TransferSetInfo, addr, service_data, adv_handle); in transfer_set_info()
/packages/modules/Bluetooth/system/bta/le_audio/broadcaster/
Dstate_machine.cc395 .adv_handle = GetAdvertisingSid(), in CreateBig()
/packages/modules/Bluetooth/system/stack/test/
Dbtm_iso_test.cc391 .adv_handle = 0x00,
512 return ((x.adv_handle == y.adv_handle) && (x.num_bis == y.num_bis) && in operator ==()
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_gatt.cpp2525 jint service_data, jint adv_handle) { in transferSetInfoNative() argument
2527 sScanner->TransferSetInfo(str2addr(env, addr), service_data, adv_handle, in transferSetInfoNative()