Home
last modified time | relevance | path

Searched refs:ind (Results 1 – 9 of 9) sorted by relevance

/hal_espressif-3.6.0/components/bt/host/bluedroid/btc/profile/std/hf_client/
Dbtc_hf_client.c725 static void process_ind_evt(tBTA_HF_CLIENT_IND *ind) in process_ind_evt() argument
730 switch (ind->type) in process_ind_evt()
733 param.call.status = ind->value; in process_ind_evt()
738 param.call_setup.status = ind->value; in process_ind_evt()
742 param.call_held.status = ind->value; in process_ind_evt()
747 param.service_availability.status = ind->value; in process_ind_evt()
752 param.signal_strength.value = ind->value; in process_ind_evt()
757 param.roaming.status = ind->value; in process_ind_evt()
762 param.battery_level.value = ind->value; in process_ind_evt()
878 process_ind_evt(&p_data->ind); in btc_hf_client_cb_handler()
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/classic_bt/hfp_ag/main/
Dapp_hf_msg_set.c283 ind, /*unsolicited indication device status to HF Client*/ enumerator
456 const esp_console_cmd_t HF_ORDER(ind) = { in register_hfp_ag()
458 .help = hf_cmd_explain[ind], in register_hfp_ag()
460 .func = hf_cmd_tbl[ind].handler, in register_hfp_ag()
463 ESP_ERROR_CHECK(esp_console_cmd_register(&HF_ORDER(ind))); in register_hfp_ag()
/hal_espressif-3.6.0/components/bt/host/bluedroid/btc/profile/std/hf_ag/
Dbtc_hf_ag.c179 ag_res.ind.type = indicator; in send_indicator_update()
180 ag_res.ind.value = value; in send_indicator_update()
184 static void btc_hf_cind_evt(tBTA_AG_IND *ind) in btc_hf_cind_evt() argument
189 switch (ind->type) { in btc_hf_cind_evt()
191 param.cind.call_status = ind->value; in btc_hf_cind_evt()
194 param.cind.call_setup_status = ind->value; in btc_hf_cind_evt()
197 param.cind.svc = ind->value; in btc_hf_cind_evt()
200 param.cind.signal_strength = ind->value; in btc_hf_cind_evt()
203 param.cind.roam = ind->value; in btc_hf_cind_evt()
206 param.cind.battery_level = ind->value; in btc_hf_cind_evt()
[all …]
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/btm/
Dbtm_pm.c176 int ind; in BTM_SetPowerMode() local
204 ind = mode - BTM_PM_MD_HOLD; /* make it base 0 */ in BTM_SetPowerMode()
206 if ( !(p_features[ btm_pm_mode_off[ind] ] & btm_pm_mode_msk[ind] ) ) { in BTM_SetPowerMode()
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/smp/
Dsmp_keys.c77 int ind, x; in smp_debug_print_nbyte_little_endian() local
86 ind = 0; in smp_debug_print_nbyte_little_endian()
88 for (int column = 0, x = 0; (ind < len) && (column < col_count); column++, ind++) { in smp_debug_print_nbyte_little_endian()
89 x += sprintf((char *)&p_buf[x], "%02x ", p[ind]); in smp_debug_print_nbyte_little_endian()
106 int ind = 0;
112 for (int col = 0, x = 0; (ind < len) && (col < ncols); col++, ind++) {
113 x += sprintf ((char *)&p_buf[len - x - 1], "%02x ", p[ind]);
/hal_espressif-3.6.0/components/bt/host/bluedroid/bta/include/bta/
Dbta_ag_api.h305 tBTA_AG_IND ind; /* used for indicator type */ member
408 tBTA_AG_IND ind; member
Dbta_hf_client_api.h237 tBTA_HF_CLIENT_IND ind; member
/hal_espressif-3.6.0/components/bt/host/bluedroid/bta/hf_ag/
Dbta_ag_cmd.c1536 bta_ag_send_ind(p_scb, p_result->data.ind.type, p_result->data.ind.value, FALSE); in bta_ag_hfp_result()
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/classic_bt/hfp_ag/
DREADME.md237 You can type `ind <call> <ntk> <callsetup> <sig>` to send device status of AG to HF Unit. Log on AG…