Home
last modified time | relevance | path

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

/Zephyr-latest/include/zephyr/bluetooth/classic/
Da2dp.h434 uint8_t *rsp_err_code);
448 uint8_t *rsp_err_code);
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);
525 void (*start_rsp)(struct bt_a2dp_stream *stream, uint8_t rsp_err_code);
538 int (*suspend_req)(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code);
[all …]
/Zephyr-latest/subsys/bluetooth/host/classic/shell/
Da2dp.c307 uint8_t *rsp_err_code) in app_config_req() argument
313 *rsp_err_code = 0; in app_config_req()
324 struct bt_a2dp_codec_cfg *codec_cfg, uint8_t *rsp_err_code) in app_reconfig_req() argument
328 *rsp_err_code = 0; in app_reconfig_req()
337 void app_config_rsp(struct bt_a2dp_stream *stream, uint8_t rsp_err_code) in app_config_rsp() argument
339 if (rsp_err_code == 0) { in app_config_rsp()
346 int app_establish_req(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code) in app_establish_req() argument
348 *rsp_err_code = 0; in app_establish_req()
353 void app_establish_rsp(struct bt_a2dp_stream *stream, uint8_t rsp_err_code) in app_establish_rsp() argument
355 if (rsp_err_code == 0) { in app_establish_rsp()
[all …]
/Zephyr-latest/subsys/bluetooth/host/classic/
Da2dp.c161 uint8_t rsp_err_code; in a2dp_process_config_ind() local
224 err = a2dp_cb->config_req(a2dp, ep, &cfg, &stream, &rsp_err_code); in a2dp_process_config_ind()
233 *errcode = rsp_err_code != 0 ? rsp_err_code : BT_AVDTP_BAD_ACP_SEID; in a2dp_process_config_ind()
236 err = a2dp_cb->reconfig_req(stream, &cfg, &rsp_err_code); in a2dp_process_config_ind()
238 *errcode = rsp_err_code; in a2dp_process_config_ind()
288 typedef int (*bt_a2dp_ctrl_req_cb)(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code);
307 uint8_t rsp_err_code; in a2dp_ctrl_ind() local
310 err = req_cb(stream, &rsp_err_code); in a2dp_ctrl_ind()
312 *errcode = rsp_err_code; in a2dp_ctrl_ind()
645 typedef void (*bt_a2dp_rsp_cb)(struct bt_a2dp_stream *stream, uint8_t rsp_err_code);