Lines Matching refs:is_command
220 void rfc_send_pn (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN is_command, UINT16 mtu, UINT8 cl, UINT8 k) in rfc_send_pn() argument
228 *p_data++ = RFCOMM_EA | RFCOMM_I_CR(is_command) | RFCOMM_MX_PN; in rfc_send_pn()
237 if (is_command) in rfc_send_pn()
262 void rfc_send_fcon (tRFC_MCB *p_mcb, BOOLEAN is_command) in rfc_send_fcon() argument
270 *p_data++ = RFCOMM_EA | RFCOMM_I_CR(is_command) | RFCOMM_MX_FCON; in rfc_send_fcon()
287 void rfc_send_fcoff (tRFC_MCB *p_mcb, BOOLEAN is_command) in rfc_send_fcoff() argument
295 *p_data++ = RFCOMM_EA | RFCOMM_I_CR(is_command) | RFCOMM_MX_FCOFF; in rfc_send_fcoff()
312 void rfc_send_msc (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN is_command, in rfc_send_msc() argument
332 *p_data++ = RFCOMM_EA | RFCOMM_I_CR(is_command) | RFCOMM_MX_MSC; in rfc_send_msc()
363 void rfc_send_rls (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN is_command, UINT8 status) in rfc_send_rls() argument
371 *p_data++ = RFCOMM_EA | RFCOMM_I_CR(is_command) | RFCOMM_MX_RLS; in rfc_send_rls()
420 void rfc_send_rpn (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN is_command, in rfc_send_rpn() argument
429 *p_data++ = RFCOMM_EA | RFCOMM_I_CR(is_command) | RFCOMM_MX_RPN; in rfc_send_rpn()
470 void rfc_send_test (tRFC_MCB *p_mcb, BOOLEAN is_command, BT_HDR *p_buf) in rfc_send_test() argument
495 *p_data++ = RFCOMM_EA | RFCOMM_I_CR(is_command) | RFCOMM_MX_TEST; in rfc_send_test()
671 BOOLEAN is_command; in rfc_process_mx_message() local
686 is_command = p_rx_frame->cr; in rfc_process_mx_message()
733 rfc_process_pn (p_mcb, is_command, p_rx_frame); in rfc_process_mx_message()
746 if (is_command) in rfc_process_mx_message()
758 rfc_process_fcon (p_mcb, is_command); in rfc_process_mx_message()
767 rfc_process_fcoff (p_mcb, is_command); in rfc_process_mx_message()
797 rfc_process_msc (p_mcb, is_command, p_rx_frame); in rfc_process_mx_message()
801 if ((length != RFCOMM_MX_NSC_LEN) || !is_command) in rfc_process_mx_message()
845 rfc_process_rpn (p_mcb, is_command, p_rx_frame->u.rpn.is_request, p_rx_frame); in rfc_process_mx_message()
867 rfc_process_rls (p_mcb, is_command, p_rx_frame); in rfc_process_mx_message()
873 if (is_command) in rfc_process_mx_message()