Home
last modified time | relevance | path

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

/hal_espressif-3.5.0/components/bt/common/btc/profile/esp/blufi/
Dblufi_prf.c494 dst->custom_data.data = osi_malloc(src->custom_data.data_len); in btc_blufi_cb_deep_copy()
495 if (dst->custom_data.data == NULL) { in btc_blufi_cb_deep_copy()
499 memcpy(dst->custom_data.data, src->custom_data.data, src->custom_data.data_len); in btc_blufi_cb_deep_copy()
542 osi_free(param->custom_data.data); in btc_blufi_cb_deep_free()
733 uint8_t *data = src->custom_data.data; in btc_blufi_call_deep_copy()
738 dst->custom_data.data = osi_malloc(src->custom_data.data_len); in btc_blufi_call_deep_copy()
739 if(dst->custom_data.data == NULL) { in btc_blufi_call_deep_copy()
743 memcpy(dst->custom_data.data, src->custom_data.data, src->custom_data.data_len); in btc_blufi_call_deep_copy()
785 uint8_t *data = arg->custom_data.data; in btc_blufi_call_deep_free()
822 btc_blufi_send_custom_data(arg->custom_data.data, arg->custom_data.data_len); in btc_blufi_call_handler()
Dblufi_protocol.c248 param.custom_data.data = &data[0]; in btc_blufi_protocol_handler()
249 param.custom_data.data_len = len; in btc_blufi_protocol_handler()
/hal_espressif-3.5.0/tools/esp_prov/
Desp_prov.py190 def custom_data(tp, sec, custom_data): function
192 message = prov.custom_data_request(sec, custom_data)
439 if args.custom_data != '':
441 if not custom_data(obj_transport, obj_security, args.custom_data):
/hal_espressif-3.5.0/components/bt/common/api/
Desp_blufi_api.c126 arg.custom_data.data = data; in esp_blufi_send_custom_data()
127 arg.custom_data.data_len = data_len; in esp_blufi_send_custom_data()
/hal_espressif-3.5.0/examples/bluetooth/blufi/main/
Dblufi_example_main.c334 BLUFI_INFO("Recv Custom Data %d\n", param->custom_data.data_len); in example_event_callback()
335 esp_log_buffer_hex("Custom Data", param->custom_data.data, param->custom_data.data_len); in example_event_callback()
/hal_espressif-3.5.0/examples/provisioning/wifi_prov_mgr/
Dwifi_prov_mgr_test.py81 if not esp_prov.custom_data(transport, security, 'My Custom Data'):
DREADME.md211 by passing the `--custom_data <MyCustomData>` option to the esp\_prov tool. Following output is
/hal_espressif-3.5.0/components/bt/common/btc/profile/esp/include/
Dbtc_blufi_prf.h96 } custom_data; member
/hal_espressif-3.5.0/components/bt/common/api/include/api/
Desp_blufi_api.h289 …} custom_data; /*!< Blufi callback param of ESP_BLUFI_EVENT_RECV_… member