Lines Matching refs:bap_iso_ep
283 struct bt_bap_iso_dir *bap_iso_ep; in bt_bap_iso_bind_stream() local
294 bap_iso_ep = &bap_iso->rx; in bt_bap_iso_bind_stream()
296 bap_iso_ep = &bap_iso->tx; in bt_bap_iso_bind_stream()
299 __ASSERT(bap_iso_ep->stream == NULL, "bap_iso %p bound with stream %p", bap_iso, in bt_bap_iso_bind_stream()
300 bap_iso_ep->stream); in bt_bap_iso_bind_stream()
301 bap_iso_ep->stream = stream; in bt_bap_iso_bind_stream()
309 struct bt_bap_iso_dir *bap_iso_ep; in bt_bap_iso_unbind_stream() local
319 bap_iso_ep = &bap_iso->rx; in bt_bap_iso_unbind_stream()
321 bap_iso_ep = &bap_iso->tx; in bt_bap_iso_unbind_stream()
324 __ASSERT(bap_iso_ep->stream == stream, "bap_iso %p (%p) not bound with stream %p (%p)", in bt_bap_iso_unbind_stream()
325 bap_iso, bap_iso_ep->stream, stream, stream->bap_iso); in bt_bap_iso_unbind_stream()
326 bap_iso_ep->stream = NULL; in bt_bap_iso_unbind_stream()