Lines Matching refs:iso_dir
179 struct bt_bap_iso_dir *iso_dir = bap_iso_get_iso_dir(is_unicast_client, bap_iso, ep->dir); in bt_bap_iso_configure_data_path() local
180 struct bt_iso_chan_path *path = &iso_dir->path; in bt_bap_iso_configure_data_path()
183 if (iso_dir == &bap_iso->rx) { in bt_bap_iso_configure_data_path()
217 struct bt_bap_iso_dir *iso_dir; in bt_bap_iso_bind_ep() local
227 iso_dir = bap_iso_get_iso_dir(is_unicast_client_ep(ep), iso, ep->dir); in bt_bap_iso_bind_ep()
228 __ASSERT(iso_dir->ep == NULL, "iso %p bound with ep %p", iso, iso_dir); in bt_bap_iso_bind_ep()
229 iso_dir->ep = ep; in bt_bap_iso_bind_ep()
236 struct bt_bap_iso_dir *iso_dir; in bt_bap_iso_unbind_ep() local
247 iso_dir = bap_iso_get_iso_dir(is_unicast_client_ep(ep), iso, ep->dir); in bt_bap_iso_unbind_ep()
248 __ASSERT(iso_dir->ep == ep, "iso %p not bound with ep %p", iso, ep); in bt_bap_iso_unbind_ep()
249 iso_dir->ep = NULL; in bt_bap_iso_unbind_ep()
258 struct bt_bap_iso_dir *iso_dir; in bt_bap_iso_get_ep() local
265 iso_dir = bap_iso_get_iso_dir(unicast_client, iso, dir); in bt_bap_iso_get_ep()
267 return iso_dir->ep; in bt_bap_iso_get_ep()