Lines Matching refs:lsep
365 struct avdtp_local_sep *lsep; member
773 stream->lsep->info.inuse = 0; in stream_free()
774 stream->lsep->stream = NULL; in stream_free()
815 struct avdtp_local_sep *sep = stream->lsep; in transport_cb()
836 struct avdtp_local_sep *sep = stream->lsep; in handle_transport_connect()
903 struct avdtp_local_sep *lsep; in handle_unanswered_req() local
918 lsep = stream->lsep; in handle_unanswered_req()
923 if (lsep && lsep->cfm && lsep->cfm->reconfigure) in handle_unanswered_req()
924 lsep->cfm->reconfigure(session, lsep, stream, &err, in handle_unanswered_req()
925 lsep->user_data); in handle_unanswered_req()
929 if (lsep && lsep->cfm && lsep->cfm->open) in handle_unanswered_req()
930 lsep->cfm->open(session, lsep, stream, &err, in handle_unanswered_req()
931 lsep->user_data); in handle_unanswered_req()
935 if (lsep && lsep->cfm && lsep->cfm->start) in handle_unanswered_req()
936 lsep->cfm->start(session, lsep, stream, &err, in handle_unanswered_req()
937 lsep->user_data); in handle_unanswered_req()
941 if (lsep && lsep->cfm && lsep->cfm->suspend) in handle_unanswered_req()
942 lsep->cfm->suspend(session, lsep, stream, &err, in handle_unanswered_req()
943 lsep->user_data); in handle_unanswered_req()
947 if (lsep && lsep->cfm && lsep->cfm->close) in handle_unanswered_req()
948 lsep->cfm->close(session, lsep, stream, &err, in handle_unanswered_req()
949 lsep->user_data); in handle_unanswered_req()
953 if (lsep && lsep->cfm && lsep->cfm->set_configuration) in handle_unanswered_req()
954 lsep->cfm->set_configuration(session, lsep, stream, in handle_unanswered_req()
955 &err, lsep->user_data); in handle_unanswered_req()
1053 struct avdtp_local_sep *sep = stream->lsep; in release_stream()
1398 stream->lsep = sep; in avdtp_setconf_cmd()
2265 avdtp_sep_set_state(session, stream->lsep, in avdtp_connect_cb()
2418 struct avdtp_local_sep *lsep; in cancel_request() local
2436 lsep = stream->lsep; in cancel_request()
2438 lsep = NULL; in cancel_request()
2443 if (lsep && lsep->cfm && lsep->cfm->reconfigure) in cancel_request()
2444 lsep->cfm->reconfigure(session, lsep, stream, &averr, in cancel_request()
2445 lsep->user_data); in cancel_request()
2449 if (lsep && lsep->cfm && lsep->cfm->open) in cancel_request()
2450 lsep->cfm->open(session, lsep, stream, &averr, in cancel_request()
2451 lsep->user_data); in cancel_request()
2455 if (lsep && lsep->cfm && lsep->cfm->start) in cancel_request()
2456 lsep->cfm->start(session, lsep, stream, &averr, in cancel_request()
2457 lsep->user_data); in cancel_request()
2461 if (lsep && lsep->cfm && lsep->cfm->suspend) in cancel_request()
2462 lsep->cfm->suspend(session, lsep, stream, &averr, in cancel_request()
2463 lsep->user_data); in cancel_request()
2467 if (lsep && lsep->cfm && lsep->cfm->close) { in cancel_request()
2468 lsep->cfm->close(session, lsep, stream, &averr, in cancel_request()
2469 lsep->user_data); in cancel_request()
2476 if (lsep && lsep->cfm && lsep->cfm->set_configuration) in cancel_request()
2477 lsep->cfm->set_configuration(session, lsep, stream, in cancel_request()
2478 &averr, lsep->user_data); in cancel_request()
2683 struct avdtp_local_sep *sep = stream->lsep; in avdtp_set_configuration_resp()
2704 struct avdtp_local_sep *sep = stream->lsep; in avdtp_open_resp()
2720 struct avdtp_local_sep *sep = stream->lsep; in avdtp_start_resp()
2737 struct avdtp_local_sep *sep = stream->lsep; in avdtp_close_resp()
2750 struct avdtp_local_sep *sep = stream->lsep; in avdtp_suspend_resp()
2764 struct avdtp_local_sep *sep = stream->lsep; in avdtp_abort_resp()
2780 struct avdtp_local_sep *sep = stream->lsep; in avdtp_delay_report_resp()
2911 struct avdtp_local_sep *sep = stream ? stream->lsep : NULL; in avdtp_parse_rej()
3212 uint8_t codec, struct avdtp_local_sep **lsep, in avdtp_get_seps() argument
3221 *lsep = find_local_sep(session->server, int_type, media_type, codec); in avdtp_get_seps()
3222 if (!*lsep) in avdtp_get_seps()
3326 struct avdtp_local_sep *lsep, in avdtp_set_configuration() argument
3340 if (!(lsep && rsep)) in avdtp_set_configuration()
3344 lsep->info.seid, rsep->seid); in avdtp_set_configuration()
3348 new_stream->lsep = lsep; in avdtp_set_configuration()
3351 if (rsep->delay_reporting && lsep->delay_reporting) in avdtp_set_configuration()
3364 req->int_seid = lsep->info.seid; in avdtp_set_configuration()
3380 lsep->info.inuse = 1; in avdtp_set_configuration()
3381 lsep->stream = new_stream; in avdtp_set_configuration()
3405 if (stream->lsep->state != AVDTP_STATE_OPEN) in avdtp_reconfigure()
3439 if (stream->lsep->state > AVDTP_STATE_CONFIGURED) in avdtp_open()
3456 if (stream->lsep->state != AVDTP_STATE_OPEN) in avdtp_start()
3480 if (stream->lsep->state < AVDTP_STATE_OPEN) in avdtp_close()
3509 if (stream->lsep->state <= AVDTP_STATE_OPEN || stream->close_int) in avdtp_suspend()
3527 if (stream->lsep->state == AVDTP_STATE_IDLE || in avdtp_abort()
3528 stream->lsep->state == AVDTP_STATE_ABORTING) in avdtp_abort()
3553 if (stream->lsep->state != AVDTP_STATE_CONFIGURED && in avdtp_delay_report()
3554 stream->lsep->state != AVDTP_STATE_STREAMING) in avdtp_delay_report()