Home
last modified time | relevance | path

Searched refs:data_path_dir (Results 1 – 17 of 17) sorted by relevance

/packages/modules/Bluetooth/system/stack/test/common/
Dmock_hcic_layer.h46 uint16_t iso_handle, uint8_t data_path_dir, uint8_t data_path_id,
53 uint16_t iso_handle, uint8_t data_path_dir,
91 (uint16_t iso_handle, uint8_t data_path_dir, uint8_t data_path_id,
99 (uint16_t iso_handle, uint8_t data_path_dir,
Dmock_hcic_layer.cc59 uint16_t iso_handle, uint8_t data_path_dir, uint8_t data_path_id, in btsnd_hcic_setup_iso_data_path() argument
64 hcic_interface->SetupIsoDataPath(iso_handle, data_path_dir, data_path_id, in btsnd_hcic_setup_iso_data_path()
71 uint16_t iso_handle, uint8_t data_path_dir, in btsnd_hcic_remove_iso_data_path() argument
73 hcic_interface->RemoveIsoDataPath(iso_handle, data_path_dir, std::move(cb)); in btsnd_hcic_remove_iso_data_path()
/packages/modules/Bluetooth/system/stack/test/
Dbtm_iso_test.cc289 .WillByDefault([](uint16_t iso_handle, uint8_t data_path_dir, in InitIsoManager()
356 .data_path_dir = bluetooth::hci::iso_manager::kIsoDataPathDirectionOut,
1549 path_params.data_path_dir = in TEST_F()
1558 path_params.data_path_dir = in TEST_F()
1565 path_params.data_path_dir = in TEST_F()
1640 path_params.data_path_dir = in TEST_F()
1664 path_params.data_path_dir = in TEST_F()
1702 path_params.data_path_dir = in TEST_F()
1713 path_params.data_path_dir); in TEST_F()
1717 path_params.data_path_dir = in TEST_F()
[all …]
/packages/modules/Bluetooth/system/bta/le_audio/
Dmock_iso_manager.cc87 void IsoManager::RemoveIsoDataPath(uint16_t iso_handle, uint8_t data_path_dir) { in RemoveIsoDataPath() argument
89 pimpl_->RemoveIsoDataPath(iso_handle, data_path_dir); in RemoveIsoDataPath()
Dmock_iso_manager.h58 (uint16_t iso_handle, uint8_t data_path_dir));
Dstate_machine.cc1548 .data_path_dir = in PrepareDataPath()
1563 "direction: " + loghex(param.data_path_dir)); in PrepareDataPath()
Dstate_machine_test.cc2085 uint8_t data_path_dir) { in TEST_F() argument
2087 if (data_path_dir == in TEST_F()
2091 } else if (data_path_dir == bluetooth::hci::iso_manager:: in TEST_F()
/packages/modules/Bluetooth/system/stack/btm/
Dbtm_iso.cc96 void IsoManager::RemoveIsoDataPath(uint16_t iso_handle, uint8_t data_path_dir) { in RemoveIsoDataPath() argument
97 pimpl_->iso_impl_->remove_iso_data_path(iso_handle, data_path_dir); in RemoveIsoDataPath()
Dbtm_iso_impl.h377 conn_handle, path_params.data_path_dir, path_params.data_path_id, in setup_iso_data_path()
387 conn_handle, path_params.data_path_dir, path_params.data_path_id, in setup_iso_data_path()
427 void remove_iso_data_path(uint16_t iso_handle, uint8_t data_path_dir) { in remove_iso_data_path()
435 iso_handle, data_path_dir, in remove_iso_data_path()
440 data_path_dir)); in remove_iso_data_path()
/packages/modules/Bluetooth/system/test/mock/
Dmock_stack_hcic_hciblecmds.h874 body{[](uint16_t iso_handle, uint8_t data_path_dir,
876 void operator()(uint16_t iso_handle, uint8_t data_path_dir, in operator()
878 body(iso_handle, data_path_dir, std::move(cb)); in operator()
927 body{[](uint16_t iso_handle, uint8_t data_path_dir, uint8_t data_path_id,
932 void operator()(uint16_t iso_handle, uint8_t data_path_dir, in operator()
937 body(iso_handle, data_path_dir, data_path_id, codec_id_format, in operator()
Dmock_stack_hcic_hciblecmds.cc479 uint16_t iso_handle, uint8_t data_path_dir, in btsnd_hcic_remove_iso_data_path() argument
483 iso_handle, data_path_dir, std::move(cb)); in btsnd_hcic_remove_iso_data_path()
500 uint16_t iso_handle, uint8_t data_path_dir, uint8_t data_path_id, in btsnd_hcic_setup_iso_data_path() argument
507 iso_handle, data_path_dir, data_path_id, codec_id_format, in btsnd_hcic_setup_iso_data_path()
Dmock_stack_btm_iso.cc30 void IsoManager::RemoveIsoDataPath(uint16_t iso_handle, uint8_t data_path_dir) { in RemoveIsoDataPath() argument
/packages/modules/Bluetooth/system/stack/include/
Dbtm_iso_api.h155 virtual void RemoveIsoDataPath(uint16_t conn_handle, uint8_t data_path_dir);
Dhcimsgs.h495 uint16_t iso_handle, uint8_t data_path_dir, uint8_t data_path_id,
502 uint16_t iso_handle, uint8_t data_path_dir,
Dbtm_iso_api_types.h170 uint8_t data_path_dir; member
/packages/modules/Bluetooth/system/stack/hcic/
Dhciblecmds.cc909 uint16_t iso_handle, uint8_t data_path_dir, uint8_t data_path_id, in btsnd_hcic_setup_iso_data_path() argument
919 UINT8_TO_STREAM(pp, data_path_dir); in btsnd_hcic_setup_iso_data_path()
933 uint16_t iso_handle, uint8_t data_path_dir, in btsnd_hcic_remove_iso_data_path() argument
940 UINT8_TO_STREAM(pp, data_path_dir); in btsnd_hcic_remove_iso_data_path()
/packages/modules/Bluetooth/system/bta/le_audio/broadcaster/
Dstate_machine.cc524 .data_path_dir = bluetooth::hci::iso_manager::kIsoDataPathDirectionIn, in TriggerIsoDatapathSetup()