Searched defs:hndl (Results 1 - 7 of 7) sorted by relevance

/system/bt/bta/ar/
H A Dbta_ar_int.h49 tBTA_AV_HNDL hndl; /* Handle associated with the stream that rejected the connection. */ member in struct:__anon33
/system/bt/bta/av/
H A Dbta_av_ci.c70 void bta_av_ci_setconfig(tBTA_AV_HNDL hndl, UINT8 err_code, UINT8 category, argument
77 p_buf->hdr.layer_specific = hndl;
H A Dbta_av_api.c144 void BTA_AvDeregister(tBTA_AV_HNDL hndl) argument
150 p_buf->layer_specific = hndl;
308 void BTA_AvReconfig(tBTA_AV_HNDL hndl, BOOLEAN suspend, UINT8 sep_info_idx, argument
315 p_buf->hdr.layer_specific = hndl;
337 void BTA_AvProtectReq(tBTA_AV_HNDL hndl, UINT8 *p_data, UINT16 len) argument
343 p_buf->hdr.layer_specific = hndl;
371 void BTA_AvProtectRsp(tBTA_AV_HNDL hndl, UINT8 error_code, UINT8 *p_data, UINT16 len) argument
377 p_buf->hdr.layer_specific = hndl;
H A Dbta_av_main.c239 p_buf->layer_specific = p_scb->hndl;
323 tBTA_AV_HNDL hndl = (tBTA_AV_HNDL)handle; local
325 UINT8 idx = (hndl & BTA_AV_HNDL_MSK);
387 p_ret->hndl = (tBTA_AV_HNDL)((xx + 1) | chnl);
458 APPL_TRACE_DEBUG("scb hndl x%x, role x%x", p_scb->hndl, p_scb->role);
573 registr.hndl = p_scb->hndl;
953 APPL_TRACE_DEBUG("new_role:%d, hci_status:x%x hndl: x%x", id, app_id, p_scb->hndl);
[all...]
H A Dbta_av_int.h163 typedef void (*tBTA_AV_CO_DISC_RES) (tBTA_AV_HNDL hndl, UINT8 num_seps,
165 typedef UINT8 (*tBTA_AV_CO_GETCFG) (tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,
168 typedef void (*tBTA_AV_CO_SETCFG) (tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,
172 typedef void (*tBTA_AV_CO_OPEN) (tBTA_AV_HNDL hndl,
175 typedef void (*tBTA_AV_CO_CLOSE) (tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT16 mtu);
176 typedef void (*tBTA_AV_CO_START) (tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type,UINT8 *p_codec_info, BOOLEAN *p_no_rtp_hdr);
177 typedef void (*tBTA_AV_CO_STOP) (tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type);
180 typedef void (*tBTA_AV_CO_DELAY) (tBTA_AV_HNDL hndl, UINT16 delay);
321 tBTA_AV_HNDL hndl; member in struct:__anon51
488 tBTA_AV_HNDL hndl; /* th member in struct:__anon62
[all...]
/system/bt/btif/co/
H A Dbta_av_co.c55 #define BTA_AV_CO_AUDIO_HNDL_TO_INDX(hndl) (((hndl) & (~BTA_AV_CHNL_MSK)) - 1)
247 static tBTA_AV_CO_PEER *bta_av_co_get_peer(tBTA_AV_HNDL hndl) argument
252 index = BTA_AV_CO_AUDIO_HNDL_TO_INDX(hndl);
341 void bta_av_co_audio_disc_res(tBTA_AV_HNDL hndl, UINT8 num_seps, UINT8 num_snk, argument
349 hndl, num_seps, num_snk, num_src);
352 p_peer = bta_av_co_get_peer(hndl);
456 UINT8 bta_av_audio_sink_getconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, argument
471 hndl, codec_type, seid);
476 p_peer = bta_av_co_get_peer(hndl);
580 bta_av_co_audio_getconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT8 *p_codec_info, UINT8 *p_sep_info_idx, UINT8 seid, UINT8 *p_num_protect, UINT8 *p_protect_info) argument
739 bta_av_co_audio_setconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT8 *p_codec_info, UINT8 seid, BD_ADDR addr, UINT8 num_protect, UINT8 *p_protect_info, UINT8 t_local_sep, UINT8 avdt_handle) argument
895 bta_av_co_audio_open(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT8 *p_codec_info, UINT16 mtu) argument
929 bta_av_co_audio_close(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT16 mtu) argument
967 bta_av_co_audio_start(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT8 *p_codec_info, BOOLEAN *p_no_rtp_hdr) argument
992 bta_av_co_audio_stop(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type) argument
1070 bta_av_co_audio_drop(tBTA_AV_HNDL hndl) argument
1088 bta_av_co_audio_delay(tBTA_AV_HNDL hndl, UINT16 delay) argument
1735 bta_av_co_audio_discard_config(tBTA_AV_HNDL hndl) argument
1791 bta_av_co_peer_cp_supported(tBTA_AV_HNDL hndl) argument
[all...]
/system/bt/bta/include/
H A Dbta_av_api.h270 tBTA_AV_HNDL hndl; /* Handle associated with the stream. */ member in struct:__anon325
283 tBTA_AV_HNDL hndl; member in struct:__anon326
295 tBTA_AV_HNDL hndl; member in struct:__anon327
302 tBTA_AV_HNDL hndl; member in struct:__anon328
312 tBTA_AV_HNDL hndl; member in struct:__anon329
321 tBTA_AV_HNDL hndl; member in struct:__anon330
329 tBTA_AV_HNDL hndl; member in struct:__anon331
338 tBTA_AV_HNDL hndl; member in struct:__anon332
424 tBTA_AV_HNDL hndl; /* Handle associated with the stream that rejected the connection. */ member in struct:__anon341
574 void BTA_AvDeregister(tBTA_AV_HNDL hndl);
[all...]

Completed in 54 milliseconds