Searched refs:dlcs (Results 1 – 2 of 2) sorted by relevance
133 static struct bt_rfcomm_dlc *rfcomm_dlcs_lookup_dlci(struct bt_rfcomm_dlc *dlcs, in rfcomm_dlcs_lookup_dlci() argument136 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() argument150 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 …]
27 struct bt_rfcomm_dlc *dlcs; member