Home
last modified time | relevance | path

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

/hal_espressif-3.7.0/components/bt/host/bluedroid/btc/profile/std/gatt/
Dbtc_gattc.c35 dst->write_char.value = (uint8_t *)osi_malloc(src->write_char.value_len); in btc_gattc_arg_deep_copy()
36 if (dst->write_char.value) { in btc_gattc_arg_deep_copy()
37 memcpy(dst->write_char.value, src->write_char.value, src->write_char.value_len); in btc_gattc_arg_deep_copy()
82 if (arg->write_char.value) { in btc_gattc_arg_deep_free()
83 osi_free(arg->write_char.value); in btc_gattc_arg_deep_free()
621 BTA_GATTC_WriteCharValue(arg->write_char.conn_id, in btc_gattc_write_char()
622 arg->write_char.handle, in btc_gattc_write_char()
623 arg->write_char.write_type, in btc_gattc_write_char()
624 arg->write_char.value_len, in btc_gattc_write_char()
625 arg->write_char.value, in btc_gattc_write_char()
[all …]
/hal_espressif-3.7.0/components/bt/host/bluedroid/api/
Desp_gattc_api.c507 arg.write_char.conn_id = BTC_GATT_CREATE_CONN_ID(gattc_if, conn_id); in esp_ble_gattc_write_char()
508 arg.write_char.handle = handle; in esp_ble_gattc_write_char()
509 … 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()
510 arg.write_char.value = value; in esp_ble_gattc_write_char()
511 arg.write_char.write_type = write_type; in esp_ble_gattc_write_char()
512 arg.write_char.auth_req = auth_req; in esp_ble_gattc_write_char()
/hal_espressif-3.7.0/components/bt/host/bluedroid/btc/profile/std/include/
Dbtc_gattc.h129 } write_char; member