Home
last modified time | relevance | path

Searched refs:tx_pdu_length (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/system/stack/btm/
Dbtm_ble_sec.cc575 uint16_t tx_pdu_length) { in BTM_SetBleDataLength() argument
582 log::info("bd_addr:{}, tx_pdu_length:{}", bd_addr, tx_pdu_length); in BTM_SetBleDataLength()
590 if (tx_pdu_length > BTM_BLE_DATA_SIZE_MAX) in BTM_SetBleDataLength()
591 tx_pdu_length = BTM_BLE_DATA_SIZE_MAX; in BTM_SetBleDataLength()
592 else if (tx_pdu_length < BTM_BLE_DATA_SIZE_MIN) in BTM_SetBleDataLength()
593 tx_pdu_length = BTM_BLE_DATA_SIZE_MIN; in BTM_SetBleDataLength()
595 if (p_dev_rec->get_suggested_tx_octets() >= tx_pdu_length) { in BTM_SetBleDataLength()
597 p_dev_rec->get_suggested_tx_octets(), tx_pdu_length); in BTM_SetBleDataLength()
621 tx_pdu_length = in BTM_SetBleDataLength()
622 std::min<uint16_t>(tx_pdu_length, bluetooth::shim::GetController() in BTM_SetBleDataLength()
[all …]
/packages/modules/Bluetooth/system/test/mock/
Dmock_stack_btm_ble.h378 std::function<tBTM_STATUS(const RawAddress& bd_addr, uint16_t tx_pdu_length)>
382 tBTM_STATUS operator()(const RawAddress& bd_addr, uint16_t tx_pdu_length) { in operator()
383 return body(bd_addr, tx_pdu_length); in operator()
Dmock_stack_btm_ble.cc243 uint16_t tx_pdu_length) { in BTM_SetBleDataLength() argument
246 tx_pdu_length); in BTM_SetBleDataLength()
/packages/modules/Bluetooth/system/stack/include/
Dbtm_ble_api.h330 uint16_t tx_pdu_length);
Dbtm_client_interface.h116 uint16_t tx_pdu_length);