Home
last modified time | relevance | path

Searched refs:dl_len (Results 1 – 11 of 11) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/bta/hh/
Dbta_hh_api.c349 UINT16 len = sizeof(tBTA_HH_MAINT_DEV) + dscp_info.descriptor.dl_len; in BTA_HhAddDev()
366 if ( dscp_info.descriptor.dl_len != 0 && dscp_info.descriptor.dsc_list) { in BTA_HhAddDev()
367 p_buf->dscp_info.descriptor.dl_len = dscp_info.descriptor.dl_len; in BTA_HhAddDev()
369 …(p_buf->dscp_info.descriptor.dsc_list, dscp_info.descriptor.dsc_list, dscp_info.descriptor.dl_len); in BTA_HhAddDev()
372 p_buf->dscp_info.descriptor.dl_len = 0; in BTA_HhAddDev()
Dbta_hh_utils.c206 if (p_dscp_info->dl_len && in bta_hh_add_device_to_list()
208 (UINT8 *)osi_malloc(p_dscp_info->dl_len)) != NULL) { in bta_hh_add_device_to_list()
209 p_cb->dscp_info.descriptor.dl_len = p_dscp_info->dl_len; in bta_hh_add_device_to_list()
211 p_dscp_info->dl_len); in bta_hh_add_device_to_list()
Dbta_hh_le.c1770 p_srvc->descriptor.dl_len = p_data->p_value->unformat.len; in bta_hh_le_save_rpt_map()
2568 p_cb->dscp_info.descriptor.dl_len = p_cb->hid_srvc[i].descriptor.dl_len; in bta_hh_le_get_dscp_act()
2996 p_cb->hid_srvc[BTA_HH_LE_RPT_GET_SRVC_INST_ID(p_rpt_cache->inst_id)].descriptor.dl_len = in bta_hh_process_cache_rpt()
2997 p_cb->dscp_info.descriptor.dl_len; in bta_hh_process_cache_rpt()
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/hid/
Dbtc_hh.c731 dscp_info.descriptor.dl_len = arg->set_info.hid_info->dl_len; in btc_hh_set_info()
732 dscp_info.descriptor.dsc_list = (uint8_t *)osi_malloc(dscp_info.descriptor.dl_len); in btc_hh_set_info()
738 …mcpy(dscp_info.descriptor.dsc_list, arg->set_info.hid_info->dsc_list, dscp_info.descriptor.dl_len); in btc_hh_set_info()
1187 dest->descriptor.dl_len = 0; in btc_hh_copy_hid_info()
1188 if (src->descriptor.dl_len > 0) { in btc_hh_copy_hid_info()
1189 dest->descriptor.dsc_list = (uint8_t *)osi_malloc(src->descriptor.dl_len); in btc_hh_copy_hid_info()
1192 memcpy(dest->descriptor.dsc_list, src->descriptor.dsc_list, src->descriptor.dl_len); in btc_hh_copy_hid_info()
1193 dest->descriptor.dl_len = src->descriptor.dl_len; in btc_hh_copy_hid_info()
1206 param->dscp.dl_len = 0; in btc_hh_cb_copy_hid_info()
1207 if (src->descriptor.dl_len > 0) { in btc_hh_cb_copy_hid_info()
[all …]
Dbtc_hd.c329 btc_hd_cb.app_info.descriptor.dl_len = p_app_param->desc_list_len; in btc_hd_register_app()
/hal_espressif-latest/components/bt/host/bluedroid/api/include/api/
Desp_hidh_api.h132 …int dl_len; /*!< SDP attrbutes of HID devices: HID device descriptor… member
287 uint16_t dl_len; /*!< Device descriptor length */ member
/hal_espressif-latest/components/bt/host/bluedroid/bta/hd/
Dbta_hd_api.c115 p_buf->d_len = p_app_info->descriptor.dl_len; in BTA_HdRegisterApp()
116 memcpy(p_buf->d_data, p_app_info->descriptor.dsc_list, p_app_info->descriptor.dl_len); in BTA_HdRegisterApp()
/hal_espressif-latest/components/bt/host/bluedroid/btc/include/btc/
Dbtc_storage.h133 uint16_t dl_len, uint8_t *dsc_list);
/hal_espressif-latest/components/bt/host/bluedroid/btc/core/
Dbtc_storage.c357 uint16_t dl_len, uint8_t *dsc_list) in btc_storage_add_hid_device_info() argument
372 if (dl_len > 0) in btc_storage_add_hid_device_info()
373 btc_config_set_bin(bdstr, "HidDescriptor", dsc_list, dl_len); in btc_storage_add_hid_device_info()
435 dscp_info.descriptor.dl_len = (uint16_t)len; in btc_storage_load_bonded_hid_info()
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/
Dhiddefs.h137 UINT16 dl_len; member
/hal_espressif-latest/components/bt/host/bluedroid/stack/hid/
Dhidh_api.c139 if ((p_nvi->dscp_info.dl_len = SDP_DISC_ATTR_LEN(p_repdesc->attr_len_type)) != 0) { in hidh_search_callback()