Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/
Dl2cap_client.c70 static list_t *l2cap_clients; // A list of l2cap_client_t. Container does not own objects. variable
91 if (!l2cap_clients) { in l2cap_client_new()
92 l2cap_clients = list_new(NULL); in l2cap_client_new()
93 if (!l2cap_clients) { in l2cap_client_new()
115 list_append(l2cap_clients, ret); in l2cap_client_new()
130 list_remove(l2cap_clients, client); in l2cap_client_free()
452 …for (const list_node_t *node = list_begin(l2cap_clients); node != list_end(l2cap_clients); node = … in find()