/hal_espressif-latest/components/bt/common/osi/include/osi/ |
D | list.h | 6 struct list_node_t; 7 typedef struct list_node_t list_node_t; typedef 24 list_node_t *list_free_node(list_t *list, list_node_t *node); 27 list_node_t *list_delete_node(list_t *list, list_node_t *node); 43 list_node_t *list_get_node(const list_t *list, const void *data); 55 list_node_t *list_back_node(const list_t *list); 62 bool list_insert_after(list_t *list, list_node_t *prev_node, void *data); 98 list_node_t *list_foreach(const list_t *list, list_iter_cb callback, void *context); 103 list_node_t *list_begin(const list_t *list); 109 list_node_t *list_end(const list_t *list); [all …]
|
/hal_espressif-latest/components/bt/common/osi/ |
D | list.c | 7 struct list_node_t { struct 8 struct list_node_t *next; argument 13 list_node_t *head; argument 14 list_node_t *tail; 62 for (const list_node_t *node = list_begin(list); node != list_end(list); node = list_next(node)) { in list_contains() 71 list_node_t *list_get_node(const list_t *list, const void *data) in list_get_node() 75 list_node_t *p_node_ret = NULL; in list_get_node() 76 for (list_node_t *node = list_begin(list); node != list_end(list); node = list_next(node)) { in list_get_node() 107 list_node_t *list_back_node(const list_t *list) { in list_back_node() 114 bool list_insert_after(list_t *list, list_node_t *prev_node, void *data) { in list_insert_after() [all …]
|
D | config.c | 132 …for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); n… in config_has_key_in_section() 135 …for (const list_node_t *node = list_begin(section->entries); node != list_end(section->entries); n… in config_has_key_in_section() 231 …for (const list_node_t *node = list_begin(sec->entries); node != list_end(sec->entries); node = li… in config_set_string() 262 list_node_t *first_node = list_begin(config->sections); in config_update_newest_section() 271 …for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); n… in config_update_newest_section() 319 return (const config_section_node_t *)list_next((const list_node_t *)node); in config_section_next() 325 const list_node_t *lnode = (const list_node_t *)node; in config_section_name() 336 …for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); n… in get_config_size() 341 …for (const list_node_t *enode = list_begin(section->entries); enode != list_end(section->entries);… in get_config_size() 433 …for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); n… in config_save() [all …]
|
D | hash_map.c | 222 for (const list_node_t *iter = list_begin(hash_map->bucket[i].list); in hash_map_foreach() 256 for (const list_node_t *iter = list_begin(hash_bucket_list); in find_bucket_entry_()
|
D | fixed_queue.c | 73 const list_node_t *node; in fixed_queue_free()
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/ |
D | bta_gattc_cache.c | 229 list_node_t *sn = list_begin(services); in bta_gattc_insert_sec_service_to_cache() 234 … for (list_node_t *sn = list_begin(services); sn != list_end(services); sn = list_next(sn)) { in bta_gattc_insert_sec_service_to_cache() 235 list_node_t *next_sn = list_next(sn); in bta_gattc_insert_sec_service_to_cache() 556 for (list_node_t *sn = list_begin(services); sn != list_end(services); sn = list_next(sn)) { in bta_gattc_update_include_service() 559 …for (list_node_t *sn = list_begin(service->included_svc); sn != list_end(service->included_svc); s… in bta_gattc_update_include_service() 1107 for (list_node_t *sn = list_begin(p_clcb->p_srcb->p_srvc_cache); in bta_gattc_search_service() 1162 for (list_node_t *sn = list_begin(services); in bta_gattc_find_matching_service() 1196 for (list_node_t *cn = list_begin(service->characteristics); in bta_gattc_get_characteristic_srcb() 1227 for (list_node_t *cn = list_begin(service->characteristics); in bta_gattc_get_descriptor_srcb() 1230 for (list_node_t *dn = list_begin(p_char->descriptors); in bta_gattc_get_descriptor_srcb() [all …]
|
D | bta_gattc_co.c | 626 for (list_node_t *sn = list_begin(addr_info->assoc_addr); in bta_gattc_co_cache_remove_assoc_addr() 654 …for (const list_node_t *node = list_begin(addr_info->assoc_addr); node != list_end(addr_info->asso… in bta_gattc_co_cache_find_src_addr()
|
D | bta_gattc_act.c | 1627 list_node_t *node = list_begin(p_clcb->p_cmd_list); in bta_gattc_pop_command_to_send() 1667 … for (list_node_t *node = list_begin(p_clcb->p_cmd_list); node != list_end(p_clcb->p_cmd_list); in bta_gattc_free_command_data() 2457 for (list_node_t *sn = list_begin(p_cache); in bta_gattc_register_service_change_notify() 2473 for (list_node_t *cn = list_begin(p_service->characteristics); 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()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/btm/ |
D | btm_dev.c | 331 list_node_t *p_node = NULL; in btm_sec_alloc_dev() 526 list_node_t *p_node = NULL; in btm_find_dev_by_handle() 551 list_node_t *p_node = NULL; in btm_find_dev() 577 list_node_t *p_node = NULL; in btm_consolidate_dev() 652 list_node_t *p_node = NULL; in btm_find_oldest_dev()
|
D | btm_main.c | 127 list_node_t *p_node = NULL; in btm_acl_active_count()
|
D | btm_ble_addr.c | 392 list_node_t *p_node = NULL; in btm_ble_resolve_random_addr() 435 list_node_t *p_node = NULL; in btm_find_dev_by_identity_addr()
|
D | btm_pm.c | 673 list_node_t *p_node = NULL; in btm_pm_check_stored() 802 list_node_t *p_node = NULL; in btm_pm_proc_mode_change()
|
D | btm_ble_privacy.c | 255 list_node_t *p_node = NULL; in btm_ble_clear_resolving_list_complete() 1059 list_node_t *p_node = NULL; in btm_ble_enable_resolving_list_for_platform()
|
D | btm_acl.c | 137 list_node_t *p_node = NULL; in btm_bda_to_acl() 164 list_node_t *p_node = NULL; in btm_handle_to_acl() 512 for (list_node_t *p_node = list_begin(btm_cb.p_acl_db_list); p_node;) { in btm_acl_device_down() 513 list_node_t *p_next = list_next(p_node); in btm_acl_device_down()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/sdp/ |
D | sdp_db.c | 67 list_node_t *p_node = NULL; in sdp_db_service_search() 173 list_node_t *p_node = NULL; in sdp_db_find_record() 354 list_node_t *p_node = NULL; in SDP_DeleteRecord() 412 list_node_t *p_node= NULL; in SDP_AddAttribute() 876 list_node_t *p_node= NULL; in SDP_DeleteAttribute()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/ |
D | gatt_utils.c | 202 for (const list_node_t *node = list_begin(list); node != list_end(list); in gatt_set_srv_chg() 237 for (const list_node_t *node = list_begin(list); node != list_end(list); in gatt_sr_is_new_srv_chg() 786 list_node_t *p_node = NULL; in gatt_find_the_connected_bda() 828 for (const list_node_t *node = list_begin(list); in gatt_is_srv_chg_ind_pending() 866 for (const list_node_t *node = list_begin(list); node != list_end(list); in gatt_is_bda_in_the_srv_chg_clt_list() 892 list_node_t *p_node = NULL; in gatt_is_bda_connected() 936 list_node_t *p_node = NULL; in gatt_find_i_tcb_by_addr() 961 list_node_t *p_node = NULL; in gatt_get_tcb_by_idx() 1728 list_node_t *p_node = NULL; in gatt_clcb_find_by_conn_id() 1753 list_node_t *p_node = NULL; in gatt_clcb_find_by_idx() [all …]
|
D | gatt_api.c | 1336 list_node_t *p_node = NULL; in GATT_Deregister() 1337 list_node_t *p_next = NULL; in GATT_Deregister() 1376 list_node_t *p_node_clcb = NULL; in GATT_Deregister() 1377 list_node_t *p_node_next = NULL; in GATT_Deregister()
|
D | gatt_main.c | 175 list_node_t *p_node = NULL; in gatt_free() 1237 list_node_t *p_node = NULL; in gatt_tcb_active_count()
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/core/ |
D | btc_profile_queue.c | 42 …for (const list_node_t *node = list_begin(connect_queue); node != list_end(connect_queue); node = … in queue_int_add()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/ |
D | l2cap_client.c | 171 …for (const list_node_t *node = list_begin(client->outbound_fragments); node != list_end(client->ou… in l2cap_client_disconnect() 452 …for (const list_node_t *node = list_begin(l2cap_clients); node != list_end(l2cap_clients); node = … in find()
|
D | l2c_utils.c | 308 list_node_t *p_node = NULL; in l2cu_find_lcb_by_bd_addr() 327 list_node_t *p_node = NULL; in l2cu_find_free_lcb() 341 list_node_t *p_node = NULL; in l2cu_plcb_active_count() 2237 list_node_t *p_node = NULL; in l2cu_device_reset() 2264 list_node_t *p_node = NULL; in l2cu_create_conn() 2345 list_node_t *p_node = NULL; in l2cu_get_num_hi_priority() 2446 list_node_t *p_node = NULL; in l2cu_find_lcb_by_state() 2478 list_node_t *p_node = NULL; in l2cu_lcb_disconnecting() 2593 list_node_t *p_node = NULL; in l2cu_resubmit_pending_sec_req() 3234 list_node_t *p_node = NULL; in l2cu_find_lcb_by_handle() [all …]
|
D | l2c_api.c | 123 list_node_t *p_node = NULL; in L2CA_Deregister() 816 list_node_t *p_node = NULL; in L2CA_SetIdleTimeoutByBdAddr() 1188 list_node_t *p_node = NULL; in L2CA_SetFlushTimeout() 1397 list_node_t *p_node = NULL; in L2CA_DeregisterLECoc() 2279 for (const list_node_t *node = list_begin(p_lcb->link_xmit_data_q); in L2CA_FlushChannel() 2309 for (const list_node_t *node = list_begin(p_lcb->link_xmit_data_q); in L2CA_FlushChannel()
|
D | l2c_link.c | 81 list_node_t *p_node = NULL; in l2c_link_hci_conn_req() 737 list_node_t *p_node = NULL; in l2c_link_adjust_allocation() 943 list_node_t *p_node = NULL; in l2c_link_role_changed() 1071 list_node_t *p_node = NULL; in l2c_link_check_send_pkts()
|
D | l2c_main.c | 828 for (const list_node_t *node = list_begin(l2cb.rcv_pending_q); in l2c_process_held_packets() 921 list_node_t *p_node = NULL; in l2c_free_p_lcb_pool() 935 list_node_t *p_node = NULL; in l2c_free_p_ccb_pool()
|
/hal_espressif-latest/components/bt/host/bluedroid/hci/ |
D | hci_layer.c | 564 for (const list_node_t *node = list_begin(cmd_wait_q->commands_pending_response); in get_waiting_command()
|