HomeSort by relevance Sort by last modified time
    Searched refs:seid (Results 1 - 10 of 10) sorted by null

  /system/bt/stack/avdt/
avdt_defs.h 129 /* SEID value range */
162 #define AVDT_MSG_PRS_DISC(p, seid, in_use, type, tsep) \
164 (seid) = *(p) >> 2; \
175 #define AVDT_MSG_PRS_SEID(p, seid) \
177 (seid) = ((*(p)++) >> 2) & 0x3F; \
211 #define AVDT_MSG_BLD_DISC(p, seid, in_use, type, tsep) \
213 *(p)++ = (uint8_t)(((seid) << 2) | ((in_use) << 1)); \
222 #define AVDT_MSG_BLD_SEID(p, seid) \
224 *(p)++ = (uint8_t)((seid) << 2); \
avdt_api.cc 310 /* verify SEID */
311 if ((p_evt->single.seid < AVDT_SEID_MIN) ||
312 (p_evt->single.seid > AVDT_SEID_MAX)) {
313 AVDT_TRACE_ERROR("seid: %d", p_evt->single.seid);
369 uint8_t seid, AvdtpSepConfig* p_cfg,
376 getcap.single.seid = seid;
396 * that is associated with a particular SEID.
402 uint16_t AVDT_DelayReport(uint8_t handle, uint8_t seid, uint16_t delay)
    [all...]
avdt_msg.cc 340 * a single SEID.
347 AVDT_MSG_BLD_SEID(*p, p_msg->single.seid);
362 AVDT_MSG_BLD_SEID(*p, p_msg->config_cmd.hdr.seid);
379 AVDT_MSG_BLD_SEID(*p, p_msg->reconfig_cmd.hdr.seid);
391 * multiple SEID's.
416 AVDT_MSG_BLD_SEID(*p, p_msg->security_cmd.hdr.seid);
432 AVDT_MSG_BLD_SEID(*p, p_msg->delay_rpt_cmd.hdr.seid);
452 AVDT_MSG_BLD_DISC(*p, p_msg->discover_rsp.p_sep_info[i].seid,
679 * single SEID.
692 AVDT_MSG_PRS_SEID(p, p_msg->single.seid);
    [all...]
avdt_ccb_act.cc 158 sep_info[p_data->msg.discover_rsp.num_seps].seid = p_scb->ScbHandle();
210 /* look up scb for seid sent to us */
211 p_scb = avdt_scb_by_hdl(p_data->msg.single.seid);
257 uint8_t seid = local
260 if (seid == 0 && err_code == 0) {
266 p_data->msg.hdr.err_param = seid;
294 /* get to where seid's are stashed in current cmd */
321 uint8_t seid; local
325 if ((seid = avdt_scb_verify(p_ccb, AVDT_VERIFY_SUSPEND,
334 p_data->msg.hdr.err_param = seid;
    [all...]
avdt_scb_act.cc 204 /* initiate opening of trans channels for this SEID */
501 * configuration and peer SEID to the SCB. It then calls
601 single.seid = p_scb->peer_seid;
    [all...]
  /system/bt/bta/include/
bta_av_co.h 82 uint8_t* p_sep_info_idx, uint8_t seid,
100 const uint8_t* p_codec_info, uint8_t seid,
  /system/bt/stack/include/
avdt_api.h 154 /* Invalid SEID */
303 uint8_t seid; /* Stream endpoint identifier */ member in struct:__anon2227
354 uint8_t seid; /* For internal use only */ member in struct:__anon2228
641 uint8_t seid, AvdtpSepConfig* p_cfg,
649 * that is associated with a particular SEID.
655 extern uint16_t AVDT_DelayReport(uint8_t handle, uint8_t seid, uint16_t delay);
672 uint8_t channel_index, uint8_t seid,
    [all...]
  /system/bt/btif/co/
bta_av_co.cc 59 : sep_info_idx(0), seid(0), codec_caps{}, num_protect(0), protect_info{} {
68 seid = 0;
75 uint8_t seid; // Peer SEP index (in peer tables) member in class:BtaAvCoSep
231 * @param seid the peer SEP index in peer tables
244 uint8_t* p_sep_info_idx, uint8_t seid,
259 * @param seid the peer SEP index in peer tables
272 uint8_t* p_sep_info_idx, uint8_t seid,
283 * @param seid stream endpoint ID of stream initiating the operation
292 const uint8_t* p_codec_info, uint8_t seid,
889 uint8_t* p_codec_info, uint8_t* p_sep_info_idx, uint8_t seid,
    [all...]
  /system/bt/bta/av/
bta_av_int.h 167 uint8_t* p_sep_info_idx, uint8_t seid,
172 const uint8_t* p_codec_info, uint8_t seid,
bta_av_aact.cc 372 AVDT_GetCapReq(p_scb->PeerAddress(), p_scb->hdi, p_scb->sep_info[i].seid,
    [all...]

Completed in 238 milliseconds