Home
last modified time | relevance | path

Searched refs:set_security_param (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/gap/
Dbtc_gap_bt.c661 switch(arg->set_security_param.param_type) { in btc_gap_bt_set_security_param()
664 uint8_t *p = arg->set_security_param.value; in btc_gap_bt_set_security_param()
839 if (src->set_security_param.value) { in btc_gap_bt_arg_deep_copy()
840 dst->set_security_param.value = osi_malloc(src->set_security_param.len); in btc_gap_bt_arg_deep_copy()
841 if (dst->set_security_param.value != NULL) { in btc_gap_bt_arg_deep_copy()
842 … memcpy(dst->set_security_param.value, src->set_security_param.value, src->set_security_param.len); in btc_gap_bt_arg_deep_copy()
904 if (arg->set_security_param.value) { in btc_gap_bt_arg_deep_free()
905 osi_free(arg->set_security_param.value); in btc_gap_bt_arg_deep_free()
Dbtc_gap_ble.c1632 if (src->set_security_param.value) { in btc_gap_ble_arg_deep_copy()
1633 length = dst->set_security_param.len; in btc_gap_ble_arg_deep_copy()
1634 dst->set_security_param.value = osi_malloc(length); in btc_gap_ble_arg_deep_copy()
1635 if (dst->set_security_param.value != NULL) { in btc_gap_ble_arg_deep_copy()
1636 memcpy(dst->set_security_param.value, src->set_security_param.value, length); in btc_gap_ble_arg_deep_copy()
1819 uint8_t *value = ((btc_ble_gap_args_t *)msg->arg)->set_security_param.value; in btc_gap_ble_arg_deep_free()
2035 uint8_t *value = arg->set_security_param.value; in btc_gap_ble_call_handler()
2036 switch(arg->set_security_param.param_type) { in btc_gap_ble_call_handler()
2077 for(uint8_t i = 0; i < arg->set_security_param.len; i++) in btc_gap_ble_call_handler()
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/include/
Dbtc_gap_bt.h118 } set_security_param; member
Dbtc_gap_ble.h216 } set_security_param; member
/hal_espressif-latest/components/bt/host/bluedroid/api/
Desp_gap_bt_api.c325 arg.set_security_param.param_type = param_type; in esp_bt_gap_set_security_param()
326 arg.set_security_param.len = len; in esp_bt_gap_set_security_param()
327 arg.set_security_param.value = value; in esp_bt_gap_set_security_param()
Desp_gap_ble_api.c688 arg.set_security_param.param_type = param_type; in esp_ble_gap_set_security_param()
689 arg.set_security_param.len = len; in esp_ble_gap_set_security_param()
690 arg.set_security_param.value = value; in esp_ble_gap_set_security_param()