Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/
Dgatt_utils.c2496 tGATT_BG_CONN_DEV *p_dev_list = &gatt_cb.bgconn_dev[0]; in gatt_find_bg_dev() local
2499 for (i = 0; i < GATT_MAX_BG_CONN_DEV; i ++, p_dev_list ++) { in gatt_find_bg_dev()
2500 if (p_dev_list->in_use && !memcmp(p_dev_list->remote_bda, remote_bda, BD_ADDR_LEN)) { in gatt_find_bg_dev()
2501 return p_dev_list; in gatt_find_bg_dev()
2517 tGATT_BG_CONN_DEV *p_dev_list = &gatt_cb.bgconn_dev[0]; in gatt_alloc_bg_dev() local
2520 for (i = 0; i < GATT_MAX_BG_CONN_DEV; i ++, p_dev_list ++) { in gatt_alloc_bg_dev()
2521 if (!p_dev_list->in_use) { in gatt_alloc_bg_dev()
2522 p_dev_list->in_use = TRUE; in gatt_alloc_bg_dev()
2523 memcpy(p_dev_list->remote_bda, remote_bda, BD_ADDR_LEN); in gatt_alloc_bg_dev()
2525 return p_dev_list; in gatt_alloc_bg_dev()
[all …]