Lines Matching full:handle
225 void AVDT_AbortReq(UINT8 handle)
229 tAVDT_SCB *p_scb = avdt_scb_by_hdl(handle);
288 UINT16 AVDT_RemoveStream(UINT8 handle)
294 if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
496 UINT16 AVDT_DelayReport(UINT8 handle, UINT8 seid, UINT16 delay)
502 /* map handle to scb */
503 if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
526 ** application via the control callback function for this handle.
531 UINT16 AVDT_OpenReq(UINT8 handle, BD_ADDR bd_addr, UINT8 seid, tAVDT_CFG *p_cfg)
543 /* map handle to scb */
544 else if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
563 evt.msg.config_cmd.int_seid = handle;
582 UINT16 AVDT_ConfigRsp(UINT8 handle, UINT8 label, UINT8 error_code, UINT8 category)
589 /* map handle to scb */
590 if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
594 /* handle special case when this function is called but peer has not send
741 ** control callback function for this handle.
747 UINT16 AVDT_CloseReq(UINT8 handle)
752 /* map handle to scb */
753 if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
776 ** application via the control callback function for this handle.
782 UINT16 AVDT_ReconfigReq(UINT8 handle, tAVDT_CFG *p_cfg)
788 /* map handle to scb */
789 if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
817 UINT16 AVDT_ReconfigRsp(UINT8 handle, UINT8 label, UINT8 error_code, UINT8 category)
823 /* map handle to scb */
824 if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
847 ** for this handle. (Please note that AVDTP security procedures
854 UINT16 AVDT_SecurityReq(UINT8 handle, UINT8 *p_data, UINT16 len)
860 /* map handle to scb */
861 if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
889 UINT16 AVDT_SecurityRsp(UINT8 handle, UINT8 label, UINT8 error_code,
896 /* map handle to scb */
897 if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
949 UINT16 AVDT_WriteReqOpt(UINT8 handle, BT_HDR *p_pkt, UINT32 time_stamp, UINT8 m_pt, tAVDT_DATA_OPT_MASK opt)
955 /* map handle to scb */
956 if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
1008 UINT16 AVDT_WriteReq(UINT8 handle, BT_HDR *p_pkt, UINT32 time_stamp, UINT8 m_pt)
1010 return AVDT_WriteReqOpt(handle, p_pkt, time_stamp, m_pt, AVDT_DATA_OPT_NONE);
1098 ** Description Get the L2CAP CID used by the handle.
1103 UINT16 AVDT_GetL2CapChannel(UINT8 handle)
1110 /* map handle to scb */
1111 if (((p_scb = avdt_scb_by_hdl(handle)) != NULL)
1127 ** Description Get the L2CAP CID used by the signal channel of the given handle.
1132 UINT16 AVDT_GetSignalChannel(UINT8 handle, BD_ADDR bd_addr)
1139 /* map handle to scb */
1140 if (((p_scb = avdt_scb_by_hdl(handle)) != NULL)
1175 extern UINT16 AVDT_WriteDataReq(UINT8 handle, UINT8 *p_data, UINT32 data_len,
1191 /* map handle to scb */
1192 if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
1261 extern UINT16 AVDT_SetMediaBuf(UINT8 handle, UINT8 *p_buf, UINT32 buf_len)
1266 /* map handle to scb */
1267 if ((p_scb = avdt_scb_by_hdl(handle)) == NULL)
1298 UINT16 AVDT_SendReport(UINT8 handle, AVDT_REPORT_TYPE type,
1312 /* map handle to scb && verify parameters */
1313 if (((p_scb = avdt_scb_by_hdl(handle)) != NULL)