Home | History | Annotate | Download | only in mcap

Lines Matching full:channel

33 /* INT initiates the L2CAP channel */
57 UINT16 peer_mtu; /* Transport channel L2CAP MTU of the peer */
78 /* control channel states */
89 /* control channel events */
98 MCA_CCB_DL_OPEN_EVT, /* data channel open. */
99 MCA_CCB_LL_OPEN_EVT, /* Lower layer open. This event is sent when the lower layer channel is open. */
100 MCA_CCB_LL_CLOSE_EVT, /* Lower layer close. This event is sent when the lower layer channel is closed. */
102 MCA_CCB_RSP_TOUT_EVT /* time out for waiting the message response on the control channel */
118 /* data channel states */
122 MCA_DCB_OPENING_ST, /* create/reconnect sequence is successful, waiting for data channel connection */
129 /* data channel events */
132 MCA_DCB_API_CLOSE_EVT, /* This event is sent when the application wants to disconnect the data channel.*/
134 MCA_DCB_TC_OPEN_EVT, /* Transport Channel open. This event is sent when the channel is open.*/
135 MCA_DCB_TC_CLOSE_EVT, /* Transport Channel close.*/
136 MCA_DCB_TC_CONG_EVT, /* Transport Channel congestion status.*/
143 /* "states" used in transport channel table */
150 #define MCA_TC_ST_OPEN 6 /* Channel opened */
163 #define MCA_CTRL_TCID 0 /* to identify control channel by tMCA_TC_TBL.tcid */
165 /* transport channel table */
168 UINT16 my_mtu; /* Our MTU for this channel */
170 UINT8 tcid; /* transport channel id (0, for control channel. (MDEP ID + 1) for data channel) */
172 UINT8 state; /* transport channel state */
193 MCA_CCB_STAT_PENDING, /* waiting for data channel */
199 /* control channel control block */
212 UINT16 ctrl_vpsm; /* The virtual PSM that peer is listening for control channel */
213 UINT16 data_vpsm; /* The virtual PSM that peer is listening for data channel. */
214 UINT16 lcid; /* L2CAP lcid for this control channel */
216 BOOLEAN cong; /* Whether control channel is congested */
229 /* data channel control block */
242 BT_HDR *p_data; /* data packet held due to L2CAP channel congestion */
244 const tMCA_CHNL_CFG *p_chnl_cfg; /* cfg params for L2CAP channel */
245 UINT16 mdl_id; /* the MDL ID for this data channel */
248 BOOLEAN cong; /* Whether data channel is congested */
257 tMCA_CCB ccb[MCA_NUM_CCBS]; /* control channel control blocks */
258 tMCA_DCB dcb[MCA_NUM_DCBS]; /* data channel control blocks */