Home
last modified time | relevance | path

Searched refs:phone (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/api/
Desp_hf_ag_api.c431 memcpy(&(arg.phone.remote_addr), remote_addr, sizeof(esp_bd_addr_t)); in esp_hf_ag_answer_call()
432 arg.phone.num_active = num_active; in esp_hf_ag_answer_call()
433 arg.phone.num_held = num_held; in esp_hf_ag_answer_call()
434 arg.phone.call_state = call_state; in esp_hf_ag_answer_call()
435 arg.phone.call_setup_state = call_setup_state; in esp_hf_ag_answer_call()
436 arg.phone.number = number; //deep_copy in esp_hf_ag_answer_call()
437 arg.phone.call_addr_type = call_addr_type; in esp_hf_ag_answer_call()
459 memcpy(&(arg.phone.remote_addr), remote_addr, sizeof(esp_bd_addr_t)); in esp_hf_ag_reject_call()
460 arg.phone.num_active = num_active; in esp_hf_ag_reject_call()
461 arg.phone.num_held = num_held; in esp_hf_ag_reject_call()
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/hf_ag/
Dbtc_hf_ag.c1030 if (src->phone.number == NULL) { in btc_hf_arg_deep_copy()
1034 dst->phone.number = (char *)osi_malloc(strlen(src->phone.number)+1); in btc_hf_arg_deep_copy()
1035 if(dst->phone.number) { in btc_hf_arg_deep_copy()
1036 memcpy(dst->phone.number, src->phone.number, strlen(src->phone.number)+1); in btc_hf_arg_deep_copy()
1037 } else if (strlen(src->phone.number) == 0) { in btc_hf_arg_deep_copy()
1092 if (arg->phone.number) { in btc_hf_arg_deep_free()
1093 osi_free(arg->phone.number); in btc_hf_arg_deep_free()
1227 … btc_hf_phone_state_update(&arg->phone.remote_addr, arg->phone.num_active, arg->phone.num_held, in btc_hf_call_handler()
1228 … arg->phone.call_state, arg->phone.call_setup_state, arg->phone.number, in btc_hf_call_handler()
1229 arg->phone.call_addr_type); in btc_hf_call_handler()
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/include/
Dbtc_hf_ag.h184 } phone; member