Home
last modified time | relevance | path

Searched refs:user1_ptr (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/include/
Dbt_sdp.h53 uint8_t *user1_ptr; member
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/sdp/
Dbtc_sdp.c974 uint8_t *src_user1_ptr = src_record->hdr.user1_ptr; in btc_sdp_cb_arg_deep_copy()
976 dest_record->hdr.user1_ptr = NULL; in btc_sdp_cb_arg_deep_copy()
978 uint8_t *user1_ptr = (uint8_t *)osi_malloc(src_user1_ptr_len); in btc_sdp_cb_arg_deep_copy() local
979 if (user1_ptr) { in btc_sdp_cb_arg_deep_copy()
980 memcpy(user1_ptr, src_user1_ptr, src_user1_ptr_len); in btc_sdp_cb_arg_deep_copy()
983 dest_record->hdr.user1_ptr = user1_ptr; in btc_sdp_cb_arg_deep_copy()
1008 if (record->hdr.user1_ptr) { in btc_sdp_cb_arg_deep_free()
1009 osi_free(record->hdr.user1_ptr); in btc_sdp_cb_arg_deep_free()
/hal_espressif-latest/components/bt/host/bluedroid/api/include/api/
Desp_sdp_api.h76 …uint8_t *user1_ptr; /*!< User data1 pointer to the raw SDP response data, only used fo… member
/hal_espressif-latest/components/bt/host/bluedroid/bta/sdp/
Dbta_sdp_act.c379 record->hdr.user1_ptr = p_bta_sdp_cfg->p_sdp_db->raw_data; in bta_create_raw_sdp_record()