Searched refs:rfc_calc_fcs (Results 1 – 3 of 3) sorted by relevance
/aosp12/system/bt/stack/rfcomm/ |
H A D | rfc_int.h | 275 extern uint8_t rfc_calc_fcs(uint16_t len, uint8_t* p); 277 #define RFCOMM_SABME_FCS(p_data, cr, dlci) rfc_calc_fcs(3, p_data) 278 #define RFCOMM_UA_FCS(p_data, cr, dlci) rfc_calc_fcs(3, p_data) 279 #define RFCOMM_DM_FCS(p_data, cr, dlci) rfc_calc_fcs(3, p_data) 280 #define RFCOMM_DISC_FCS(p_data, cr, dlci) rfc_calc_fcs(3, p_data) 281 #define RFCOMM_UIH_FCS(p_data, dlci) rfc_calc_fcs(2, p_data)
|
H A D | rfc_utils.cc | 87 uint8_t rfc_calc_fcs(uint16_t len, uint8_t* p) { in rfc_calc_fcs() function
|
/aosp12/system/bt/stack/test/rfcomm/ |
H A D | stack_rfcomm_test_utils.cc | 134 result.push_back(rfc_calc_fcs(2, result.data())); in CreateRfcommPacket() 137 rfc_calc_fcs(static_cast<uint16_t>(result.size()), result.data())); in CreateRfcommPacket()
|