Searched refs:is_command (Results 1 – 4 of 4) sorted by relevance
/hal_espressif-latest/components/bt/host/bluedroid/stack/rfcomm/ |
D | rfc_ts_frames.c | 235 void rfc_send_pn (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN is_command, UINT16 mtu, UINT8 cl, UINT8 k) in rfc_send_pn() argument 247 *p_data++ = RFCOMM_EA | RFCOMM_I_CR(is_command) | RFCOMM_MX_PN; in rfc_send_pn() 256 if (is_command) { in rfc_send_pn() 282 void rfc_send_fcon (tRFC_MCB *p_mcb, BOOLEAN is_command) in rfc_send_fcon() argument 294 *p_data++ = RFCOMM_EA | RFCOMM_I_CR(is_command) | RFCOMM_MX_FCON; in rfc_send_fcon() 311 void rfc_send_fcoff (tRFC_MCB *p_mcb, BOOLEAN is_command) in rfc_send_fcoff() argument 323 *p_data++ = RFCOMM_EA | RFCOMM_I_CR(is_command) | RFCOMM_MX_FCOFF; in rfc_send_fcoff() 340 void rfc_send_msc (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN is_command, in rfc_send_msc() argument 365 *p_data++ = RFCOMM_EA | RFCOMM_I_CR(is_command) | RFCOMM_MX_MSC; in rfc_send_msc() 395 void rfc_send_rls (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN is_command, UINT8 status) in rfc_send_rls() argument [all …]
|
D | rfc_port_fsm.c | 525 void rfc_process_pn (tRFC_MCB *p_mcb, BOOLEAN is_command, MX_FRAME *p_frame) in rfc_process_pn() argument 530 if (is_command) { in rfc_process_pn() 565 void rfc_process_rpn (tRFC_MCB *p_mcb, BOOLEAN is_command, in rfc_process_rpn() argument 573 if (is_command) { in rfc_process_rpn() 583 if (is_command && is_request) { in rfc_process_rpn() 594 if (is_command) { in rfc_process_rpn() 672 void rfc_process_msc (tRFC_MCB *p_mcb, BOOLEAN is_command, MX_FRAME *p_frame) in rfc_process_msc() argument 710 if (is_command) { in rfc_process_msc() 748 void rfc_process_rls (tRFC_MCB *p_mcb, BOOLEAN is_command, MX_FRAME *p_frame) in rfc_process_rls() argument 752 if (is_command) { in rfc_process_rls() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/rfcomm/include/ |
D | rfc_int.h | 282 extern void rfc_process_pn (tRFC_MCB *p_rfc_mcb, BOOLEAN is_command, MX_FRAME *p_frame); 283 extern void rfc_process_msc (tRFC_MCB *p_rfc_mcb, BOOLEAN is_command, MX_FRAME *p_frame); 284 extern void rfc_process_rpn (tRFC_MCB *p_rfc_mcb, BOOLEAN is_command, BOOLEAN is_request, MX_FRAME … 285 extern void rfc_process_rls (tRFC_MCB *p_rfc_mcb, BOOLEAN is_command, MX_FRAME *p_frame); 288 extern void rfc_process_fcon (tRFC_MCB *p_rfc_mcb, BOOLEAN is_command); 289 extern void rfc_process_fcoff (tRFC_MCB *p_rfc_mcb, BOOLEAN is_command); 322 extern void rfc_send_pn (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN is_command, UINT16 mtu, 324 extern void rfc_send_test (tRFC_MCB *p_rfc_mcb, BOOLEAN is_command, BT_HDR *p_buf); 325 extern void rfc_send_msc (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN is_command, 327 extern void rfc_send_rls (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN is_command, UINT8 status); [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/ |
D | rfcdefs.h | 106 #define RFCOMM_CR(initiator, is_command) \ argument 107 (( ( (initiator) && (is_command)) \ 108 || (!(initiator) && !(is_command))) << 1) 110 #define RFCOMM_I_CR(is_command) ((is_command) ? 0x02 : 0x00) argument
|