Home
last modified time | relevance | path

Searched refs:tx_time (Results 1 – 20 of 20) sorted by relevance

/system/bt/gd/hci/acl_manager/
Dle_connection_management_callbacks.h36 …virtual void OnDataLengthChange(uint16_t tx_octets, uint16_t tx_time, uint16_t rx_octets, uint16_t…
Dle_acl_connection.cc56 …void OnDataLengthChange(uint16_t tx_octets, uint16_t tx_time, uint16_t rx_octets, uint16_t rx_time… in OnDataLengthChange() argument
57 SAVE_OR_CALL(OnDataLengthChange, tx_octets, tx_time, rx_octets, rx_time) in OnDataLengthChange()
/system/bt/gd/l2cap/le/
Dlink_property_listener.h73 …hci::AddressWithType remote, uint16_t tx_octets, uint16_t tx_time, uint16_t rx_octets, uint16_t rx… in OnDataLengthChange() argument
/system/bt/gd/l2cap/le/internal/
Dlink.cc90 void Link::OnDataLengthChange(uint16_t tx_octets, uint16_t tx_time, uint16_t rx_octets, uint16_t rx… in OnDataLengthChange() argument
91 …LOG_INFO("tx_octets %hx tx_time %hx rx_octets %hx rx_time %hx", tx_octets, tx_time, rx_octets, rx_… in OnDataLengthChange()
Dlink.h85 …void OnDataLengthChange(uint16_t tx_octets, uint16_t tx_time, uint16_t rx_octets, uint16_t rx_time…
/system/bt/main/shim/
Dacl_legacy_interface.h115 void (*on_data_length_change)(uint16_t tx_octets, uint16_t tx_time,
Dacl.cc625 void OnDataLengthChange(uint16_t tx_octets, uint16_t tx_time, in OnDataLengthChange() argument
627 TRY_POSTING_ON_MAIN(interface_.on_data_length_change, tx_octets, tx_time, in OnDataLengthChange()
Dl2c_api.cc601 uint16_t tx_time, uint16_t rx_octets, in OnDataLengthChange()
/system/bt/gd/hci/facade/
Dle_acl_manager_facade.cc277 …void OnDataLengthChange(uint16_t tx_octets, uint16_t tx_time, uint16_t rx_octets, uint16_t rx_time… in OnDataLengthChange() argument
279 …"tx_octets: 0x%hx, tx_time: 0x%hx, rx_octets 0x%hx, rx_time 0x%hx", tx_octets, tx_time, rx_octets,… in OnDataLengthChange()
/system/bt/stack/btm/
Dbtm_ble.cc663 uint16_t tx_time = BTM_BLE_DATA_TX_TIME_MAX_LEGACY; in BTM_SetBleDataLength() local
667 tx_time = BTM_BLE_DATA_TX_TIME_MAX; in BTM_SetBleDataLength()
677 btsnd_hcic_ble_set_data_length(handle, tx_pdu_length, tx_time); in BTM_SetBleDataLength()
691 tx_time = std::min<uint16_t>( in BTM_SetBleDataLength()
692 tx_time, controller_get_interface()->get_ble_maximum_tx_time()); in BTM_SetBleDataLength()
694 btsnd_hcic_ble_set_data_length(hci_handle, tx_pdu_length, tx_time); in BTM_SetBleDataLength()
/system/bt/stack/include/
Dbtm_ble_api_types.h485 typedef void(tBTM_BLE_ENERGY_INFO_CBACK)(tBTM_BLE_TX_TIME_MS tx_time,
Dhcimsgs.h628 uint16_t tx_time);
/system/bt/include/hardware/
Dbluetooth.h150 uint64_t tx_time; /* in ms */ member
/system/bt/test/mock/
Dmock_hcic_hciblecmds.cc189 uint16_t tx_time) { in btsnd_hcic_ble_set_data_length() argument
/system/bt/bta/include/
Dbta_api.h481 typedef void(tBTA_BLE_ENERGY_INFO_CBACK)(tBTM_BLE_TX_TIME_MS tx_time,
/system/bt/btif/src/
Dbtif_dm.cc1793 static void bta_energy_info_cb(tBTM_BLE_TX_TIME_MS tx_time, in bta_energy_info_cb() argument
1802 status, ctrl_state, tx_time, rx_time, idle_time, energy_used); in bta_energy_info_cb()
1808 energy_info.tx_time = tx_time; in bta_energy_info_cb()
/system/bt/stack/hcic/
Dhciblecmds.cc745 uint16_t tx_time) { in btsnd_hcic_ble_set_data_length() argument
757 UINT16_TO_STREAM(pp, tx_time); in btsnd_hcic_ble_set_data_length()
/system/bt/bta/dm/
Dbta_dm_act.cc3728 static void bta_ble_energy_info_cmpl(tBTM_BLE_TX_TIME_MS tx_time, in bta_ble_energy_info_cmpl() argument
3739 bta_dm_cb.p_energy_info_cback(tx_time, rx_time, idle_time, energy_used, in bta_ble_energy_info_cmpl()
/system/bt/gd/hci/
Dhci_packets.pdl3271 tx_time : 16, // microseconds used to transmit a single PDU 0x0148 to 0x4290
3286 tx_time : 16, // microseconds used to transmit a single PDU 0x0148 to 0x4290
3291 tx_time : 16, // microseconds used to transmit a single PDU 0x0148 to 0x4290
Dacl_manager_test.cc670 …MOCK_METHOD4(OnDataLengthChange, void(uint16_t tx_octets, uint16_t tx_time, uint16_t rx_octets, ui…