Lines Matching refs:p_cfg
58 static void rfc_mx_conf_ind(tRFC_MCB* p_mcb, tL2CAP_CFG_INFO* p_cfg);
59 static void rfc_mx_conf_cnf(tRFC_MCB* p_mcb, tL2CAP_CFG_INFO* p_cfg);
585 static void rfc_mx_conf_cnf(tRFC_MCB* p_mcb, tL2CAP_CFG_INFO* p_cfg) { in rfc_mx_conf_cnf() argument
586 RFCOMM_TRACE_EVENT("rfc_mx_conf_cnf p_cfg:%08x result:%d ", p_cfg, in rfc_mx_conf_cnf()
587 (p_cfg) ? p_cfg->result : 0); in rfc_mx_conf_cnf()
589 if (p_cfg->result != L2CAP_CFG_OK) { in rfc_mx_conf_cnf()
595 PORT_StartCnf(p_mcb, p_cfg->result); in rfc_mx_conf_cnf()
626 static void rfc_mx_conf_ind(tRFC_MCB* p_mcb, tL2CAP_CFG_INFO* p_cfg) { in rfc_mx_conf_ind() argument
629 if (p_cfg->mtu_present) { in rfc_mx_conf_ind()
630 p_mcb->peer_l2cap_mtu = p_cfg->mtu - RFCOMM_MIN_OFFSET - 1; in rfc_mx_conf_ind()
635 p_cfg->mtu_present = false; in rfc_mx_conf_ind()
636 p_cfg->flush_to_present = false; in rfc_mx_conf_ind()
637 p_cfg->qos_present = false; in rfc_mx_conf_ind()
639 p_cfg->result = L2CAP_CFG_OK; in rfc_mx_conf_ind()
641 L2CA_ConfigRsp(p_mcb->lcid, p_cfg); in rfc_mx_conf_ind()