Searched refs:rfc_calc_fcs (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/packages/modules/Bluetooth/system/stack/rfcomm/ |
D | rfc_int.h | 191 uint8_t rfc_calc_fcs(uint16_t len, uint8_t* p); 193 #define RFCOMM_SABME_FCS(p_data, cr, dlci) rfc_calc_fcs(3, p_data) 194 #define RFCOMM_UA_FCS(p_data, cr, dlci) rfc_calc_fcs(3, p_data) 195 #define RFCOMM_DM_FCS(p_data, cr, dlci) rfc_calc_fcs(3, p_data) 196 #define RFCOMM_DISC_FCS(p_data, cr, dlci) rfc_calc_fcs(3, p_data) 197 #define RFCOMM_UIH_FCS(p_data, dlci) rfc_calc_fcs(2, p_data)
|
D | rfc_utils.cc | 84 uint8_t rfc_calc_fcs(uint16_t len, uint8_t* p) { in rfc_calc_fcs() function
|
/aosp_15_r20/packages/modules/Bluetooth/system/stack/test/rfcomm/ |
D | stack_rfcomm_test_utils.cc | 135 result.push_back(rfc_calc_fcs(2, result.data())); in CreateRfcommPacket() 137 result.push_back(rfc_calc_fcs(static_cast<uint16_t>(result.size()), result.data())); in CreateRfcommPacket()
|