Home
last modified time | relevance | path

Searched refs:sn (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-3.6.0/components/bt/host/bluedroid/bta/gatt/
Dbta_gattc_cache.c229 list_node_t *sn = list_begin(services); in bta_gattc_insert_sec_service_to_cache() local
230 tBTA_GATTC_SERVICE *service = list_node(sn); 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() local
235 list_node_t *next_sn = list_next(sn); in bta_gattc_insert_sec_service_to_cache()
240 tBTA_GATTC_SERVICE *service = list_node(sn); in bta_gattc_insert_sec_service_to_cache()
243 list_insert_after(services, sn, p_new_srvc); 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() local
552 tBTA_GATTC_SERVICE *service = list_node(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() local
555 tBTA_GATTC_INCLUDED_SVC *include_service = list_node(sn); in bta_gattc_update_include_service()
[all …]
Dbta_gattc_co.c605 for (list_node_t *sn = list_begin(addr_info->assoc_addr); in bta_gattc_co_cache_remove_assoc_addr() local
606 sn != list_end(addr_info->assoc_addr); sn = list_next(sn)) { in bta_gattc_co_cache_remove_assoc_addr()
607 void *addr = list_node(sn); in bta_gattc_co_cache_remove_assoc_addr()
Dbta_gattc_utils.c440 for(list_node_t *sn = list_begin(p_clcb->p_cmd_list); in bta_gattc_has_prepare_command_in_queue() local
441 sn != list_end(p_clcb->p_cmd_list); sn = list_next(sn)) { in bta_gattc_has_prepare_command_in_queue()
443 tBTA_GATTC_DATA *cmd_data = (tBTA_GATTC_DATA *)list_node(sn); in bta_gattc_has_prepare_command_in_queue()
Dbta_gattc_act.c2394 for (list_node_t *sn = list_begin(p_cache); in bta_gattc_register_service_change_notify() local
2395 sn != list_end(p_cache); sn = list_next(sn)) { in bta_gattc_register_service_change_notify()
2396 p_service = list_node(sn); in bta_gattc_register_service_change_notify()
/hal_espressif-3.6.0/components/fatfs/src/
Dff.c2501 BYTE sn[12], sum; local
2539 mem_cpy(sn, dp->fn, 12);
2540 if (sn[NSFLAG] & NS_LOSS) { /* When LFN is out of 8.3 format, generate a numbered name */
2543 gen_numname(dp->fn, sn, fs->lfnbuf, n); /* Generate a numbered name */
2549 dp->fn[NSFLAG] = sn[NSFLAG];
2553 nent = (sn[NSFLAG] & NS_LFN) ? (nlen + 12) / 13 + 1 : 1; /* Number of entries to allocate */