Home
last modified time | relevance | path

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

/Zephyr-latest/subsys/bluetooth/host/classic/
Drfcomm.c133 static struct bt_rfcomm_dlc *rfcomm_dlcs_lookup_dlci(struct bt_rfcomm_dlc *dlcs, in rfcomm_dlcs_lookup_dlci() argument
136 for (; dlcs; dlcs = dlcs->_next) { in rfcomm_dlcs_lookup_dlci()
137 if (dlcs->dlci == dlci) { in rfcomm_dlcs_lookup_dlci()
138 return dlcs; in rfcomm_dlcs_lookup_dlci()
145 static struct bt_rfcomm_dlc *rfcomm_dlcs_remove_dlci(struct bt_rfcomm_dlc *dlcs, in rfcomm_dlcs_remove_dlci() argument
150 if (!dlcs) { in rfcomm_dlcs_remove_dlci()
155 if (dlcs->dlci == dlci) { in rfcomm_dlcs_remove_dlci()
156 dlcs->session->dlcs = dlcs->_next; in rfcomm_dlcs_remove_dlci()
157 return dlcs; in rfcomm_dlcs_remove_dlci()
160 for (tmp = dlcs, dlcs = dlcs->_next; dlcs; dlcs = dlcs->_next) { in rfcomm_dlcs_remove_dlci()
[all …]
Drfcomm_internal.h27 struct bt_rfcomm_dlc *dlcs; member