Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/gatt/
Dbtc_gattc.c37 dst->write_char.value = (uint8_t *)osi_malloc(src->write_char.value_len); in btc_gattc_arg_deep_copy()
38 if (dst->write_char.value) { in btc_gattc_arg_deep_copy()
39 memcpy(dst->write_char.value, src->write_char.value, src->write_char.value_len); in btc_gattc_arg_deep_copy()
84 if (arg->write_char.value) { in btc_gattc_arg_deep_free()
85 osi_free(arg->write_char.value); in btc_gattc_arg_deep_free()
636 BTA_GATTC_WriteCharValue(arg->write_char.conn_id, in btc_gattc_write_char()
637 arg->write_char.handle, in btc_gattc_write_char()
638 arg->write_char.write_type, in btc_gattc_write_char()
639 arg->write_char.value_len, in btc_gattc_write_char()
640 arg->write_char.value, in btc_gattc_write_char()
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/api/
Desp_gattc_api.c651 arg.write_char.conn_id = BTC_GATT_CREATE_CONN_ID(gattc_if, conn_id); in esp_ble_gattc_write_char()
652 arg.write_char.handle = handle; in esp_ble_gattc_write_char()
653 … arg.write_char.value_len = value_len > ESP_GATT_MAX_ATTR_LEN ? ESP_GATT_MAX_ATTR_LEN : value_len; in esp_ble_gattc_write_char()
654 arg.write_char.value = value; in esp_ble_gattc_write_char()
655 arg.write_char.write_type = write_type; in esp_ble_gattc_write_char()
656 arg.write_char.auth_req = auth_req; in esp_ble_gattc_write_char()
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/include/
Dbtc_gattc.h135 } write_char; member