Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/hf_client/
Dbtc_hf_client.c806 static void process_ind_evt(tBTA_HF_CLIENT_IND *ind) in process_ind_evt() argument
811 switch (ind->type) in process_ind_evt()
814 param.call.status = ind->value; in process_ind_evt()
819 param.call_setup.status = ind->value; in process_ind_evt()
823 param.call_held.status = ind->value; in process_ind_evt()
828 param.service_availability.status = ind->value; in process_ind_evt()
833 param.signal_strength.value = ind->value; in process_ind_evt()
838 param.roaming.status = ind->value; in process_ind_evt()
843 param.battery_level.value = ind->value; in process_ind_evt()
968 process_ind_evt(&p_data->ind); in btc_hf_client_cb_handler()
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/
Dbta_ag_api.h318 tBTA_AG_IND ind; /* used for indicator type */ member
430 tBTA_AG_IND ind; member
Dbta_hf_client_api.h254 tBTA_HF_CLIENT_IND ind; member
/hal_espressif-latest/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-latest/components/bt/host/bluedroid/stack/smp/
Dsmp_keys.c103 int ind, x; in smp_debug_print_nbyte_little_endian() local
112 ind = 0; in smp_debug_print_nbyte_little_endian()
114 for (int column = 0, x = 0; (ind < len) && (column < col_count); column++, ind++) { in smp_debug_print_nbyte_little_endian()
115 x += sprintf((char *)&p_buf[x], "%02x ", p[ind]); in smp_debug_print_nbyte_little_endian()
132 int ind = 0;
138 for (int col = 0, x = 0; (ind < len) && (col < ncols); col++, ind++) {
139 x += sprintf ((char *)&p_buf[len - x - 1], "%02x ", p[ind]);
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/include/
Dbtc_hf_ag.h116 tBTA_AG_IND ind; member
/hal_espressif-latest/components/bt/host/bluedroid/api/
Desp_hf_ag_api.c277 arg.ciev_rep.ind.type = ind_type; in esp_hf_ag_ciev_report()
278 arg.ciev_rep.ind.value = value; in esp_hf_ag_ciev_report()
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/hf_ag/
Dbtc_hf_ag.c222 ag_res.ind.type = indicator; in send_indicator_update()
223 ag_res.ind.value = value; in send_indicator_update()
1186 … btc_hf_ciev_report(&arg->ciev_rep.remote_addr, arg->ciev_rep.ind.type, arg->ciev_rep.ind.value); in btc_hf_call_handler()
/hal_espressif-latest/components/bt/host/bluedroid/bta/hf_ag/
Dbta_ag_cmd.c1586 bta_ag_send_ind(p_scb, p_result->data.ind.type, p_result->data.ind.value, FALSE); in bta_ag_hfp_result()