Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/
Dbta_gattc_cache.c200 list_free(p_char->descriptors); in characteristic_free()
335 characteristic->descriptors = list_new(bta_gattc_free); in bta_gattc_add_char_to_cache()
413 list_append(char_node->descriptors, descriptor); in bta_gattc_add_attr_to_cache()
1230 for (list_node_t *dn = list_begin(p_char->descriptors); in bta_gattc_get_descriptor_srcb()
1231 dn != list_end(p_char->descriptors); dn = list_next(dn)) { in bta_gattc_get_descriptor_srcb()
1445 if (!p_char->descriptors || list_is_empty(p_char->descriptors)) { in bta_gattc_get_db_with_opration()
1459 for (list_node_t *dn = list_begin(p_char->descriptors); in bta_gattc_get_db_with_opration()
1460 dn != list_end(p_char->descriptors); dn = list_next(dn)) { in bta_gattc_get_db_with_opration()
1573 …if (p_char->descriptors && (type == BTGATT_DB_DESCRIPTOR) && bta_gattc_uuid_compare(&p_char->uuid,… in bta_gattc_get_db_size_with_type()
1574 for (list_node_t *dn = list_begin(p_char->descriptors); in bta_gattc_get_db_size_with_type()
[all …]
Dbta_gattc_act.c2489 if (p_char->descriptors) { in bta_gattc_register_service_change_notify()
2490 for (list_node_t *dn = list_begin(p_char->descriptors); in bta_gattc_register_service_change_notify()
2491 dn != list_end(p_char->descriptors); dn = list_next(dn)) { in bta_gattc_register_service_change_notify()
/hal_espressif-latest/components/esp_netif/
DREADME.md97 From user perspective, the ESP-NETIF L2 TAP interface is accessed using file descriptors of VFS whi…
100 …F L2 TAP interface device (path name) available. However multiple file descriptors with different …
107 in and the remaining traffic is either passed to other L2 TAP file descriptors or to IP stack.
DKconfig55 int "Maximum number of opened L2 TAP File descriptors"
59 …Maximum number of opened File descriptors (FD's) associated with ESP TAP device. ESP TAP FD's take…
/hal_espressif-latest/components/hal/
Demac_hal.c146 void emac_hal_init(emac_hal_context_t *hal, void *descriptors, in emac_hal_init() argument
152 hal->descriptors = descriptors; in emac_hal_init()
178 hal->rx_desc = (eth_dma_rx_descriptor_t *)(hal->descriptors); in emac_hal_reset_desc_chain()
179 hal->tx_desc = (eth_dma_tx_descriptor_t *)((uint32_t)hal->descriptors + in emac_hal_reset_desc_chain()
/hal_espressif-latest/components/hal/include/hal/
Demac_hal.h168 void *descriptors; member
181 void emac_hal_init(emac_hal_context_t *hal, void *descriptors,
/hal_espressif-latest/components/bt/common/btc/profile/esp/blufi/nimble_host/
Desp_blufi.c230 for (dsc = chr->descriptors; dsc && dsc->uuid; dsc++) { in init_gatt_values()
258 for (dsc = chr->descriptors; dsc && dsc->uuid; dsc++) { in deinit_gatt_values()
/hal_espressif-latest/components/bt/host/nimble/
DKconfig.in89 int "Maximum number of CCC descriptors to save across reboots"
93 Defines maximum number of CCC descriptors to save
704 int "Maximum number of descriptors per connection"
708 … Set this option to set the upper limit on number of descriptors per connection to be cached.
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/
Dbta_gatt_api.h711 list_t *descriptors; /* list of tBTA_GATTC_DESCRIPTOR */ member