Lines Matching refs:dlci

70     p_mcb->port_inx[p_port->dlci] = p_port->inx;
77 RFCOMM_ParNegReq (p_mcb, p_port->dlci, p_port->mtu);
114 RFCOMM_ControlReq (p_mcb, p_port->dlci, &p_port->local_ctrl);
135 RFCOMM_PortNegReq (p_mcb, p_port->dlci, &p_port->user_port_pars);
184 RFCOMM_DlcReleaseReq (p_mcb, p_port->dlci);
215 RFCOMM_ParNegReq (p_mcb, p_port->dlci, p_port->mtu);
292 void PORT_ParNegInd (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT8 cl, UINT8 k)
294 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
298 RFCOMM_TRACE_EVENT2 ("PORT_ParNegInd dlci:%d mtu:%d", dlci, mtu);
303 p_port = port_find_dlci_port (dlci);
307 rfc_send_dm(p_mcb, dlci, FALSE);
314 p_mcb->port_inx[dlci] = p_port->inx;
368 RFCOMM_ParNegRsp (p_mcb, dlci, p_port->mtu, our_cl, our_k);
383 void PORT_ParNegCnf (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT8 cl, UINT8 k)
385 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
387 RFCOMM_TRACE_EVENT4 ("PORT_ParNegCnf dlci:%d mtu:%d cl: %d k: %d", dlci, mtu, cl, k);
399 rfc_send_disc (p_mcb, p_port->dlci);
427 RFCOMM_DlcEstablishReq (p_mcb, p_port->dlci, p_port->mtu);
440 ** dlci. The block should be allocated allocated before
444 void PORT_DlcEstablishInd (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu)
446 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
448 RFCOMM_TRACE_EVENT2 ("PORT_DlcEstablishInd dlci:%d mtu:%d", dlci, mtu);
453 p_port = port_find_dlci_port (dlci);
456 RFCOMM_DlcEstablishRsp (p_mcb, dlci, 0, RFCOMM_ERROR);
459 p_mcb->port_inx[dlci] = p_port->inx;
469 RFCOMM_DlcEstablishRsp (p_mcb, dlci, p_port->mtu, RFCOMM_SUCCESS);
493 void PORT_DlcEstablishCnf (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT16 result)
495 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
497 RFCOMM_TRACE_EVENT3 ("PORT_DlcEstablishCnf dlci:%d mtu:%d result:%d", dlci, mtu, result);
527 RFCOMM_PortNegReq (p_port->rfc.p_mcb, p_port->dlci, NULL);
529 RFCOMM_ControlReq (p_port->rfc.p_mcb, p_port->dlci, &p_port->local_ctrl);
544 void PORT_PortNegInd (tRFC_MCB *p_mcb, UINT8 dlci, tPORT_STATE *p_pars,
547 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
554 p_port = port_find_dlci_port (dlci);
557 RFCOMM_PortNegRsp (p_mcb, dlci, p_pars, 0);
560 p_mcb->port_inx[dlci] = p_port->inx;
565 RFCOMM_PortNegRsp (p_mcb, dlci, p_pars, param_mask);
577 void PORT_PortNegCnf (tRFC_MCB *p_mcb, UINT8 dlci, tPORT_STATE *p_pars, UINT16 result)
579 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
593 RFCOMM_DlcReleaseReq (p_mcb, p_port->dlci);
601 RFCOMM_ControlReq (p_port->rfc.p_mcb, p_port->dlci, &p_port->local_ctrl);
618 void PORT_ControlInd (tRFC_MCB *p_mcb, UINT8 dlci, tPORT_CTRL *p_pars)
620 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
636 RFCOMM_ControlReq (p_port->rfc.p_mcb, p_port->dlci, &p_port->local_ctrl);
677 void PORT_ControlCnf (tRFC_MCB *p_mcb, UINT8 dlci, tPORT_CTRL *p_pars)
679 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
714 void PORT_LineStatusInd (tRFC_MCB *p_mcb, UINT8 dlci, UINT8 line_status)
716 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
748 void PORT_DlcReleaseInd (tRFC_MCB *p_mcb, UINT8 dlci)
750 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
821 void PORT_DataInd (tRFC_MCB *p_mcb, UINT8 dlci, BT_HDR *p_buf)
823 tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci);
865 RFCOMM_LineStatusReq (p_mcb, dlci, LINE_STATUS_OVERRUN);
921 void PORT_FlowInd (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN enable_data)
929 if (dlci == 0)
935 if ((p_port = port_find_mcb_dlci_port (p_mcb, dlci)) == NULL)
944 if (dlci == 0)
968 if (dlci != 0)
1003 RFCOMM_DataReq (p_port->rfc.p_mcb, p_port->dlci, p_buf);
1052 p_mcb->port_inx[p_port->dlci] = 0;
1062 p_port->dlci &= 0xfe;