Home
last modified time | relevance | path

Searched refs:bt_a2dp_stream (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/include/zephyr/bluetooth/classic/
Da2dp.h310 struct bt_a2dp_stream;
335 struct bt_a2dp_stream *stream;
433 struct bt_a2dp_codec_cfg *codec_cfg, struct bt_a2dp_stream **stream,
447 int (*reconfig_req)(struct bt_a2dp_stream *stream, struct bt_a2dp_codec_cfg *codec_cfg,
457 void (*config_rsp)(struct bt_a2dp_stream *stream, uint8_t rsp_err_code);
470 int (*establish_req)(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code);
480 void (*establish_rsp)(struct bt_a2dp_stream *stream, uint8_t rsp_err_code);
493 int (*release_req)(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code);
503 void (*release_rsp)(struct bt_a2dp_stream *stream, uint8_t rsp_err_code);
516 int (*start_req)(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code);
[all …]
/Zephyr-latest/subsys/bluetooth/host/classic/shell/
Da2dp.c42 static struct bt_a2dp_stream sbc_stream;
307 struct bt_a2dp_codec_cfg *codec_cfg, struct bt_a2dp_stream **stream, in app_config_req()
324 int app_reconfig_req(struct bt_a2dp_stream *stream, in app_reconfig_req()
338 void app_config_rsp(struct bt_a2dp_stream *stream, uint8_t rsp_err_code) in app_config_rsp()
347 int app_establish_req(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code) in app_establish_req()
354 void app_establish_rsp(struct bt_a2dp_stream *stream, uint8_t rsp_err_code) in app_establish_rsp()
363 int app_release_req(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code) in app_release_req()
370 void app_release_rsp(struct bt_a2dp_stream *stream, uint8_t rsp_err_code) in app_release_rsp()
379 int app_start_req(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code) in app_start_req()
386 void app_start_rsp(struct bt_a2dp_stream *stream, uint8_t rsp_err_code) in app_start_rsp()
[all …]
/Zephyr-latest/subsys/bluetooth/host/classic/
Da2dp.c156 struct bt_a2dp_stream *stream = NULL; in a2dp_process_config_ind()
274 struct bt_a2dp_stream *stream; in bt_a2dp_media_data_callback()
290 typedef int (*bt_a2dp_ctrl_req_cb)(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code);
291 typedef void (*bt_a2dp_ctrl_done_cb)(struct bt_a2dp_stream *stream);
298 struct bt_a2dp_stream *stream; in a2dp_ctrl_ind()
399 struct bt_a2dp_stream *stream; in bt_a2dp_set_config_cb()
612 void bt_a2dp_stream_cb_register(struct bt_a2dp_stream *stream, struct bt_a2dp_stream_ops *ops) in bt_a2dp_stream_cb_register()
635 int bt_a2dp_stream_config(struct bt_a2dp *a2dp, struct bt_a2dp_stream *stream, in bt_a2dp_stream_config()
661 typedef void (*bt_a2dp_rsp_cb)(struct bt_a2dp_stream *stream, uint8_t rsp_err_code);
662 typedef void (*bt_a2dp_done_cb)(struct bt_a2dp_stream *stream);
[all …]