Home
last modified time | relevance | path

Searched refs:chnl (Results 1 – 13 of 13) sorted by relevance

/packages/modules/Bluetooth/system/bta/include/
Dbta_av_api.h168 tBTA_AV_CHNL chnl; /* audio/video */ member
181 tBTA_AV_CHNL chnl; member
192 tBTA_AV_CHNL chnl; member
198 tBTA_AV_CHNL chnl; member
207 tBTA_AV_CHNL chnl; member
215 tBTA_AV_CHNL chnl; member
222 tBTA_AV_CHNL chnl; member
230 tBTA_AV_CHNL chnl; member
338 tBTA_AV_CHNL chnl; member
451 void BTA_AvRegister(tBTA_AV_CHNL chnl, const char* p_service_name,
Dbta_av_ci.h45 void bta_av_ci_src_data_ready(tBTA_AV_CHNL chnl);
/packages/modules/Bluetooth/system/bta/av/
Dbta_av_main.cc300 static tBTA_AV_SCB* bta_av_alloc_scb(tBTA_AV_CHNL chnl) { in bta_av_alloc_scb() argument
301 if (chnl != BTA_AV_CHNL_AUDIO) { in bta_av_alloc_scb()
302 log::error("bad channel: {}", chnl); in bta_av_alloc_scb()
313 p_ret->chnl = chnl; in bta_av_alloc_scb()
314 p_ret->hndl = (tBTA_AV_HNDL)((xx + 1) | chnl); in bta_av_alloc_scb()
325 static tBTA_AV_SCB* bta_av_find_scb(tBTA_AV_CHNL chnl, uint8_t app_id) { in bta_av_find_scb() argument
326 if (chnl != BTA_AV_CHNL_AUDIO) { in bta_av_find_scb()
327 log::error("bad channel: {}", chnl); in bta_av_find_scb()
333 (bta_av_cb.p_scb[xx]->chnl == chnl) && in bta_av_find_scb()
481 reg_data.chnl = (tBTA_AV_CHNL)p_data->hdr.layer_specific; in bta_av_api_register()
[all …]
Dbta_av_aact.cc250 p_scb->PeerAddress(), p_scb->role, p_scb->chnl, p_scb->hndl); in notify_start_failed()
254 .chnl = p_scb->chnl, in notify_start_failed()
655 .chnl = p_scb->chnl, in bta_av_role_res()
678 .chnl = p_scb->chnl, in bta_av_role_res()
1248 .chnl = p_scb->chnl, in bta_av_str_opened()
1311 .chnl = p_scb->chnl, in bta_av_security_ind()
1340 .chnl = p_scb->chnl, in bta_av_security_cfm()
1683 .chnl = p_scb->chnl, in bta_av_open_failed()
1703 bta_av_data.open.bd_addr, bta_av_data.open.chnl, bta_av_data.open.hndl, in bta_av_open_failed()
1981 if (BTA_AV_CHNL_AUDIO == p_scb->chnl) { in bta_av_str_stopped()
[all …]
Dbta_av_ci.cc48 void bta_av_ci_src_data_ready(tBTA_AV_CHNL chnl) { in bta_av_ci_src_data_ready() argument
51 p_buf->layer_specific = chnl; in bta_av_ci_src_data_ready()
Dbta_av_api.cc108 void BTA_AvRegister(tBTA_AV_CHNL chnl, const char* p_service_name, in BTA_AvRegister() argument
114 p_buf->hdr.layer_specific = chnl; in BTA_AvRegister()
Dbta_av_int.h531 tBTA_AV_CHNL chnl; /* the channel: audio/video */ member
Dbta_av_act.cc1338 if (p_scb->chnl == BTA_AV_CHNL_AUDIO) { in bta_av_conn_chg()
1394 if (p_scbi && p_scbi->chnl == BTA_AV_CHNL_AUDIO && p_scbi->co_started) { in bta_av_conn_chg()
2699 log::verbose("deregistered {}(h{})", p_scb->chnl, p_scb->hndl); in bta_av_dereg_comp()
/packages/modules/Bluetooth/system/test/mock/
Dmock_bta_av_api.h228 std::function<void(tBTA_AV_CHNL chnl, const char* p_service_name,
235 void operator()(tBTA_AV_CHNL chnl, const char* p_service_name, uint8_t app_id, in operator()
238 body(chnl, p_service_name, app_id, p_sink_data_cback, service_uuid); in operator()
Dmock_bta_av_api.cc138 void BTA_AvRegister(tBTA_AV_CHNL chnl, const char* p_service_name, in BTA_AvRegister() argument
142 test::mock::bta_av_api::BTA_AvRegister(chnl, p_service_name, app_id, in BTA_AvRegister()
/packages/modules/Bluetooth/system/stack/avrc/
Davrc_bld_ct.cc525 uint16_t chnl = AVCT_DATA_CTRL; in avrc_bld_init_cmd_buffer() local
533 chnl = AVCT_DATA_BROWSE; in avrc_bld_init_cmd_buffer()
550 p_pkt->layer_specific = chnl; in avrc_bld_init_cmd_buffer()
Davrc_bld_tg.cc1323 uint16_t chnl = AVCT_DATA_CTRL; in avrc_bld_init_rsp_buffer() local
1336 chnl = AVCT_DATA_BROWSE; in avrc_bld_init_rsp_buffer()
1353 p_pkt->layer_specific = chnl; in avrc_bld_init_rsp_buffer()
/packages/modules/Bluetooth/system/btif/src/
Dbtif_av.cc2455 tBTA_AV_START av_start = {.chnl = p_av->close.chnl, in ProcessEvent()