Lines Matching refs:sync_stream

219 	struct lll_sync_iso_stream *sync_stream = NULL;  in ll_setup_iso_path()  local
348 sync_stream = ull_sync_iso_stream_get(stream_handle); in ll_setup_iso_path()
349 if (!sync_stream || sync_stream->dp) { in ll_setup_iso_path()
408 (cis || sync_stream)) { in ll_setup_iso_path()
457 if (sync_stream) { in ll_setup_iso_path()
458 sync_stream->dp = dp; in ll_setup_iso_path()
469 ARG_UNUSED(sync_stream); in ll_setup_iso_path()
612 struct lll_sync_iso_stream *sync_stream; in ll_remove_iso_path() local
621 sync_stream = ull_sync_iso_stream_get(stream_handle); in ll_remove_iso_path()
622 if (!sync_stream) { in ll_remove_iso_path()
626 dp = sync_stream->dp; in ll_remove_iso_path()
628 sync_stream->dp = NULL; in ll_remove_iso_path()
669 struct lll_sync_iso_stream *sync_stream; in ll_iso_test_sdu_alloc() local
673 sync_stream = ull_sync_iso_stream_get(stream_handle); in ll_iso_test_sdu_alloc()
674 LL_ASSERT(sync_stream); in ll_iso_test_sdu_alloc()
676 sync_stream->test_mode->sdu_counter = in ll_iso_test_sdu_alloc()
714 struct lll_sync_iso_stream *sync_stream; in ll_iso_test_sdu_emit() local
719 sync_stream = ull_sync_iso_stream_get(stream_handle); in ll_iso_test_sdu_emit()
720 LL_ASSERT(sync_stream); in ll_iso_test_sdu_emit()
724 test_mode_rx = sync_stream->test_mode; in ll_iso_test_sdu_emit()
873 struct lll_sync_iso_stream *sync_stream; in ll_iso_receive_test() local
878 sync_stream = ull_sync_iso_stream_get(stream_handle); in ll_iso_receive_test()
879 if (!sync_stream) { in ll_iso_receive_test()
883 if (sync_stream->dp) { in ll_iso_receive_test()
891 test_mode_rx = sync_stream->test_mode; in ll_iso_receive_test()
892 stream_dp = &sync_stream->dp; in ll_iso_receive_test()
987 struct lll_sync_iso_stream *sync_stream; in ll_iso_read_test_counters() local
991 sync_stream = ull_sync_iso_stream_get(stream_handle); in ll_iso_read_test_counters()
992 if (!sync_stream) { in ll_iso_read_test_counters()
996 test_mode_rx = sync_stream->test_mode; in ll_iso_read_test_counters()
1370 struct lll_sync_iso_stream *sync_stream; in ll_iso_test_end() local
1374 sync_stream = ull_sync_iso_stream_get(stream_handle); in ll_iso_test_end()
1375 if (!sync_stream) { in ll_iso_test_end()
1379 if (!sync_stream->test_mode->enabled || !sync_stream->dp) { in ll_iso_test_end()
1384 isoal_sink_destroy(sync_stream->dp->sink_hdl); in ll_iso_test_end()
1385 ull_iso_datapath_release(sync_stream->dp); in ll_iso_test_end()
1386 sync_stream->dp = NULL; in ll_iso_test_end()
1389 *received_cnt = sync_stream->test_mode->received_cnt; in ll_iso_test_end()
1390 *missed_cnt = sync_stream->test_mode->missed_cnt; in ll_iso_test_end()
1391 *failed_cnt = sync_stream->test_mode->failed_cnt; in ll_iso_test_end()
1393 (void)memset(&sync_stream->test_mode, 0U, sizeof(sync_stream->test_mode)); in ll_iso_test_end()
1667 struct lll_sync_iso_stream *sync_stream; in iso_rx_demux() local
1671 sync_stream = ull_sync_iso_stream_get(stream_handle); in iso_rx_demux()
1672 dp = sync_stream ? sync_stream->dp : NULL; in iso_rx_demux()