Lines Matching refs:data_len
786 void l2cu_send_peer_config_rej (tL2C_CCB *p_ccb, UINT8 *p_data, UINT16 data_len, UINT16 rej_len) in l2cu_send_peer_config_rej() argument
793 L2CAP_TRACE_DEBUG("l2cu_send_peer_config_rej: data_len=%d, rej_len=%d", data_len, rej_len); in l2cu_send_peer_config_rej()
848 p_data_end = p_data + data_len; in l2cu_send_peer_config_rej()
866 if ((cfg_len + L2CAP_CFG_OPTION_OVERHEAD) <= data_len) in l2cu_send_peer_config_rej()
1000 void l2cu_send_peer_echo_req (tL2C_LCB *p_lcb, UINT8 *p_data, UINT16 data_len) in l2cu_send_peer_echo_req() argument
1008 …if ((p_buf = l2cu_build_header(p_lcb, (UINT16) (L2CAP_ECHO_REQ_LEN + data_len), L2CAP_CMD_ECHO_REQ… in l2cu_send_peer_echo_req()
1016 if (data_len) in l2cu_send_peer_echo_req()
1018 ARRAY_TO_STREAM (p, p_data, data_len); in l2cu_send_peer_echo_req()
1035 void l2cu_send_peer_echo_rsp (tL2C_LCB *p_lcb, UINT8 id, UINT8 *p_data, UINT16 data_len) in l2cu_send_peer_echo_rsp() argument
1064 if (data_len > maxlen) in l2cu_send_peer_echo_rsp()
1065 data_len = 0; in l2cu_send_peer_echo_rsp()
1067 …if ((p_buf = l2cu_build_header (p_lcb, (UINT16)(L2CAP_ECHO_RSP_LEN + data_len), L2CAP_CMD_ECHO_RSP… in l2cu_send_peer_echo_rsp()
1076 if (data_len) in l2cu_send_peer_echo_rsp()
1078 ARRAY_TO_STREAM (p, p_data, data_len); in l2cu_send_peer_echo_rsp()