/device/soc/esp/esp32/components/bt/common/osi/ |
D | list.c | 6 struct list_node_t { struct 7 struct list_node_t *next; argument 12 list_node_t *head; argument 13 list_node_t *tail; 61 for (const list_node_t *node = list_begin(list); node != list_end(list); node = list_next(node)) { in list_contains() 70 list_node_t *list_get_node(const list_t *list, const void *data) in list_get_node() 74 list_node_t *p_node_ret = NULL; in list_get_node() 75 for (list_node_t *node = list_begin(list); node != list_end(list); node = list_next(node)) { in list_get_node() 106 list_node_t *list_back_node(const list_t *list) { in list_back_node() 113 bool list_insert_after(list_t *list, list_node_t *prev_node, void *data) { in list_insert_after() [all …]
|
D | config.c | 140 …for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); n… in config_has_key_in_section() 143 …for (const list_node_t *node = list_begin(section->entries); node != list_end(section->entries); n… in config_has_key_in_section() 239 …for (const list_node_t *node = list_begin(sec->entries); node != list_end(sec->entries); node = li… in config_set_string() 301 return (const config_section_node_t *)list_next((const list_node_t *)node); in config_section_next() 307 const list_node_t *lnode = (const list_node_t *)node; in config_section_name() 318 …for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); n… in get_config_size() 323 …for (const list_node_t *enode = list_begin(section->entries); enode != list_end(section->entries);… in get_config_size() 415 …for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); n… in config_save() 432 …for (const list_node_t *enode = list_begin(section->entries); enode != list_end(section->entries);… in config_save() 671 …for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); n… in section_find() [all …]
|
D | hash_map.c | 221 for (const list_node_t *iter = list_begin(hash_map->bucket[i].list); in hash_map_foreach() 255 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()
|
/device/soc/esp/esp32/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 …]
|
/device/soc/bestechnic/bes2600/liteos_m/sdk/bsp/utils/list/ |
D | list.h | 38 typedef struct list_node_t { struct 39 struct list_node_t *next; argument 41 } list_node_t; typedef 44 list_node_t *head; 45 list_node_t *tail; 51 struct list_node_t; 52 typedef struct list_node_t list_node_t; typedef 69 bool list_insert_after(list_t *list, list_node_t *prev_node, void *data); 78 list_node_t *list_begin(const list_t *list); 79 list_node_t *list_end(const list_t *list); [all …]
|
/device/soc/bestechnic/bes2600/liteos_m/sdk/bsp/services/nvrecord/ |
D | list_ext.h | 37 typedef struct list_node_t { struct 38 struct list_node_t *next; argument 40 } list_node_t; typedef 43 list_node_t *head; 44 list_node_t *tail; 63 bool list_insert_after_ext(list_t *list, list_node_t *prev_node, void *data); 72 list_node_t *list_begin_ext(const list_t *list); 73 list_node_t *list_end_ext(const list_t *list); 74 list_node_t *list_next_ext(const list_node_t *node); 75 void *list_node_ext(const list_node_t *node);
|
/device/soc/chipsea/cst85/liteos_m/sdk/bsp/driver/flash/ |
D | flash_api.h | 140 typedef struct list_node_t { struct 141 struct list_node_t *prev; argument 142 struct list_node_t *next; argument 144 } list_node_t; argument 147 list_node_t *head; 162 list_node_t node; 307 void bt_initializeList(list_node_t* list); 316 void bt_insertTailList(list_node_t* tail, list_node_t* entry); 325 void bt_insertHeadList(list_node_t* head, list_node_t* entry); 334 void bt_removeNode(list_node_t* node); [all …]
|
D | flash_api.c | 876 void bt_initializeList(list_node_t* list) in bt_initializeList() 884 void bt_insertTailList(list_node_t* tail, list_node_t* entry) in bt_insertTailList() 892 void bt_insertHeadList(list_node_t* head, list_node_t* entry) in bt_insertHeadList() 900 void bt_removeNode(list_node_t* node) in bt_removeNode() 902 list_node_t* temp_node; in bt_removeNode() 911 list_node_t* bt_removeHeadNode(list_node_t* head) in bt_removeHeadNode() 913 list_node_t* second; in bt_removeHeadNode() 923 list_node_t* bt_removeHeadList(list_node_t* head) in bt_removeHeadList() 925 list_node_t* first; in bt_removeHeadList() 933 bool bt_listIsEmpty(list_node_t *head) in bt_listIsEmpty()
|
/device/soc/esp/esp32/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() 551 for (list_node_t *sn = list_begin(services); sn != list_end(services); sn = list_next(sn)) { in bta_gattc_update_include_service() 554 …for (list_node_t *sn = list_begin(service->included_svc); sn != list_end(service->included_svc); s… in bta_gattc_update_include_service() 1089 for (list_node_t *sn = list_begin(p_clcb->p_srcb->p_srvc_cache); in bta_gattc_search_service() 1144 for (list_node_t *sn = list_begin(services); in bta_gattc_find_matching_service() 1178 for (list_node_t *cn = list_begin(service->characteristics); in bta_gattc_get_characteristic_srcb() 1209 for (list_node_t *cn = list_begin(service->characteristics); in bta_gattc_get_descriptor_srcb() 1212 for (list_node_t *dn = list_begin(p_char->descriptors); in bta_gattc_get_descriptor_srcb() [all …]
|
D | bta_gattc_co.c | 601 for (list_node_t *sn = list_begin(addr_info->assoc_addr); in bta_gattc_co_cache_remove_assoc_addr() 629 …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()
|
/device/soc/esp/esp32/components/bt/host/bluedroid/stack/btm/ |
D | btm_dev.c | 480 list_node_t *p_node = NULL; in btm_find_dev_by_handle() 505 list_node_t *p_node = NULL; in btm_find_dev() 531 list_node_t *p_node = NULL; in btm_consolidate_dev() 606 list_node_t *p_node = NULL; in btm_find_oldest_dev()
|
D | btm_ble_addr.c | 404 list_node_t *p_node = NULL; in btm_ble_resolve_random_addr() 447 list_node_t *p_node = NULL; in btm_find_dev_by_identity_addr()
|
D | btm_ble_privacy.c | 255 list_node_t *p_node = NULL; in btm_ble_clear_resolving_list_complete() 946 list_node_t *p_node = NULL; in btm_ble_enable_resolving_list_for_platform()
|
D | btm_pm.c | 674 list_node_t *p_node = NULL; in btm_pm_check_stored() 800 list_node_t *p_node = NULL; in btm_pm_proc_mode_change()
|
/device/soc/esp/esp32/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() 915 list_node_t *p_node = NULL; in gatt_find_i_tcb_by_addr() 940 list_node_t *p_node = NULL; in gatt_get_tcb_by_idx() 1704 list_node_t *p_node = NULL; in gatt_clcb_find_by_conn_id() 1729 list_node_t *p_node = NULL; in gatt_clcb_find_by_idx() [all …]
|
D | gatt_api.c | 1245 list_node_t *p_node = NULL; in GATT_Deregister() 1246 list_node_t *p_next = NULL; in GATT_Deregister() 1285 list_node_t *p_node_clcb = NULL; in GATT_Deregister() 1286 list_node_t *p_node_next = NULL; in GATT_Deregister()
|
/device/soc/esp/esp32/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() 352 list_node_t *p_node = NULL; in SDP_DeleteRecord() 410 list_node_t *p_node= NULL; in SDP_AddAttribute() 874 list_node_t *p_node= NULL; in SDP_DeleteAttribute()
|
/device/soc/esp/esp32/components/bt/host/bluedroid/btc/core/ |
D | btc_profile_queue.c | 50 …for (const list_node_t *node = list_begin(connect_queue); node != list_end(connect_queue); node = … in queue_int_add()
|
/device/soc/esp/esp32/components/bt/host/bluedroid/stack/l2cap/ |
D | l2c_utils.c | 304 list_node_t *p_node = NULL; in l2cu_find_lcb_by_bd_addr() 323 list_node_t *p_node = NULL; in l2cu_find_free_lcb() 337 list_node_t *p_node = NULL; in l2cu_plcb_active_count() 2219 list_node_t *p_node = NULL; in l2cu_device_reset() 2246 list_node_t *p_node = NULL; in l2cu_create_conn() 2327 list_node_t *p_node = NULL; in l2cu_get_num_hi_priority() 2428 list_node_t *p_node = NULL; in l2cu_find_lcb_by_state() 2460 list_node_t *p_node = NULL; in l2cu_lcb_disconnecting() 2575 list_node_t *p_node = NULL; in l2cu_resubmit_pending_sec_req() 3216 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() 2223 for (const list_node_t *node = list_begin(p_lcb->link_xmit_data_q); in L2CA_FlushChannel() 2253 for (const list_node_t *node = list_begin(p_lcb->link_xmit_data_q); in L2CA_FlushChannel()
|
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_link.c | 81 list_node_t *p_node = NULL; in l2c_link_hci_conn_req() 728 list_node_t *p_node = NULL; in l2c_link_adjust_allocation() 934 list_node_t *p_node = NULL; in l2c_link_role_changed() 1062 list_node_t *p_node = NULL; in l2c_link_check_send_pkts()
|
D | l2c_main.c | 800 for (const list_node_t *node = list_begin(l2cb.rcv_pending_q); in l2c_process_held_packets() 893 list_node_t *p_node = NULL; in l2c_free_p_lcb_pool() 907 list_node_t *p_node = NULL; in l2c_free_p_ccb_pool()
|
/device/soc/chipsea/cst85/liteos_m/sdk/modules/btdm/ble/ble_app/app_main/ |
D | app_present.h | 285 list_node_t node;
|