Home
last modified time | relevance | path

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

/Zephyr-Core-3.7.0/include/zephyr/bluetooth/classic/
Da2dp.h415 uint8_t *rsp_err_code);
424 void (*config_rsp)(struct bt_a2dp_stream *stream, uint8_t rsp_err_code);
437 int (*establish_req)(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code);
447 void (*establish_rsp)(struct bt_a2dp_stream *stream, uint8_t rsp_err_code);
460 int (*release_req)(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code);
470 void (*release_rsp)(struct bt_a2dp_stream *stream, uint8_t rsp_err_code);
483 int (*start_req)(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code);
492 void (*start_rsp)(struct bt_a2dp_stream *stream, uint8_t rsp_err_code);
505 int (*suspend_req)(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code);
514 void (*suspend_rsp)(struct bt_a2dp_stream *stream, uint8_t rsp_err_code);
[all …]
/Zephyr-Core-3.7.0/subsys/bluetooth/shell/
Da2dp.c307 uint8_t *rsp_err_code) in app_config_req() argument
311 *rsp_err_code = 0; in app_config_req()
314 if (*rsp_err_code == 0) { in app_config_req()
327 void app_config_rsp(struct bt_a2dp_stream *stream, uint8_t rsp_err_code) in app_config_rsp() argument
329 if (rsp_err_code == 0) { in app_config_rsp()
336 int app_establish_req(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code) in app_establish_req() argument
338 *rsp_err_code = 0; in app_establish_req()
343 void app_establish_rsp(struct bt_a2dp_stream *stream, uint8_t rsp_err_code) in app_establish_rsp() argument
345 if (rsp_err_code == 0) { in app_establish_rsp()
352 int app_start_req(struct bt_a2dp_stream *stream, uint8_t *rsp_err_code) in app_start_req() argument
[all …]
/Zephyr-Core-3.7.0/subsys/bluetooth/host/classic/
Da2dp.c237 uint8_t rsp_err_code; in a2dp_set_config_ind() local
244 err = a2dp_cb->config_req(a2dp, ep, &cfg, &stream, &rsp_err_code); in a2dp_set_config_ind()
246 *errcode = rsp_err_code; in a2dp_set_config_ind()
303 uint8_t rsp_err_code; in a2dp_open_ind() local
306 err = a2dp_cb->establish_req(stream, &rsp_err_code); in a2dp_open_ind()
308 *errcode = rsp_err_code; in a2dp_open_ind()
337 uint8_t rsp_err_code; in a2dp_start_ind() local
340 err = a2dp_cb->start_req(stream, &rsp_err_code); in a2dp_start_ind()
342 *errcode = rsp_err_code; in a2dp_start_ind()
371 uint8_t rsp_err_code; in a2dp_close_ind() local
[all …]