/Zephyr-latest/samples/bluetooth/cap_acceptor/src/ |
D | cap_acceptor_unicast.c | 112 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_config_cb() argument 133 *pref = qos_pref; in unicast_server_config_cb() 140 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_reconfig_cb() argument 145 *pref = qos_pref; in unicast_server_reconfig_cb() 252 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured_cb() argument 262 pref->unframed_supported ? "supported" : "not supported", pref->phy, pref->rtn, in unicast_stream_configured_cb() 263 pref->latency, pref->pd_min, pref->pd_max, pref->pref_pd_min, pref->pref_pd_max); in unicast_stream_configured_cb()
|
/Zephyr-latest/samples/bluetooth/cap_initiator/src/ |
D | cap_initiator_unicast.c | 95 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured_cb() argument 105 pref->unframed_supported ? "supported" : "not supported", pref->phy, pref->rtn, in unicast_stream_configured_cb() 106 pref->latency, pref->pd_min, pref->pd_max, pref->pref_pd_min, pref->pref_pd_max); in unicast_stream_configured_cb()
|
/Zephyr-latest/samples/bluetooth/tmap_peripheral/src/ |
D | bap_unicast_sr.c | 137 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 158 *pref = qos_pref; in lc3_config() 165 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument 169 *pref = qos_pref; in lc3_reconfig()
|
/Zephyr-latest/tests/bsim/bluetooth/audio/src/ |
D | gmap_ugt_test.c | 115 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_config() argument 132 *pref = unicast_qos_pref; in unicast_server_config() 139 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_reconfig() argument 146 *pref = unicast_qos_pref; in unicast_server_reconfig()
|
D | bap_unicast_server_test.c | 113 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 132 *pref = qos_pref; in lc3_config() 139 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument
|
D | cap_acceptor_test.c | 457 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_config() argument 476 *pref = unicast_qos_pref; in unicast_server_config() 483 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_reconfig() argument 490 *pref = unicast_qos_pref; in unicast_server_reconfig()
|
D | bap_unicast_client_test.c | 72 static void stream_configured(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg_pref *pref) in stream_configured() argument
|
D | gmap_ugg_test.c | 172 const struct bt_bap_qos_cfg_pref *pref) in stream_configured_cb() argument
|
D | cap_initiator_unicast_test.c | 134 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured() argument
|
/Zephyr-latest/samples/bluetooth/hap_ha/src/ |
D | bap_unicast_sr.c | 204 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 223 *pref = qos_pref; in lc3_config() 230 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | cap_stream.c | 51 const struct bt_bap_qos_cfg_pref *pref) in cap_stream_configured_cb() argument 61 ops->configured(bap_stream, pref); in cap_stream_configured_cb()
|
D | bap_unicast_client.c | 859 struct bt_bap_qos_cfg_pref *pref; in unicast_client_ep_config_state() local 903 pref = &stream->ep->qos_pref; in unicast_client_ep_config_state() 906 pref->unframed_supported = cfg->framing == BT_ASCS_QOS_FRAMING_UNFRAMED; in unicast_client_ep_config_state() 907 pref->phy = cfg->phy; in unicast_client_ep_config_state() 908 pref->rtn = cfg->rtn; in unicast_client_ep_config_state() 909 pref->latency = sys_le16_to_cpu(cfg->latency); in unicast_client_ep_config_state() 910 pref->pd_min = sys_get_le24(cfg->pd_min); in unicast_client_ep_config_state() 911 pref->pd_max = sys_get_le24(cfg->pd_max); in unicast_client_ep_config_state() 912 pref->pref_pd_min = sys_get_le24(cfg->prefer_pd_min); in unicast_client_ep_config_state() 913 pref->pref_pd_max = sys_get_le24(cfg->prefer_pd_max); in unicast_client_ep_config_state() [all …]
|
D | ascs.c | 716 struct bt_bap_qos_cfg_pref *pref = &ep->qos_pref; in ascs_ep_get_status_config() local 719 cfg->framing = pref->unframed_supported ? BT_ASCS_QOS_FRAMING_UNFRAMED in ascs_ep_get_status_config() 721 cfg->phy = pref->phy; in ascs_ep_get_status_config() 722 cfg->rtn = pref->rtn; in ascs_ep_get_status_config() 723 cfg->latency = sys_cpu_to_le16(pref->latency); in ascs_ep_get_status_config() 724 sys_put_le24(pref->pd_min, cfg->pd_min); in ascs_ep_get_status_config() 725 sys_put_le24(pref->pd_max, cfg->pd_max); in ascs_ep_get_status_config() 726 sys_put_le24(pref->pref_pd_min, cfg->prefer_pd_min); in ascs_ep_get_status_config() 727 sys_put_le24(pref->pref_pd_max, cfg->prefer_pd_max); in ascs_ep_get_status_config() 734 bt_audio_dir_str(ep->dir), pref->unframed_supported, pref->phy, pref->rtn, in ascs_ep_get_status_config() [all …]
|
/Zephyr-latest/tests/bluetooth/audio/ascs/src/ |
D | test_common.c | 137 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_cb_config_custom_fake() argument 141 *pref = qos_pref; in unicast_server_cb_config_custom_fake()
|
D | main.c | 598 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_cb_config_custom_fake() argument 602 *pref = qos_pref; in unicast_server_cb_config_custom_fake()
|
D | test_ase_control_params.c | 377 struct bt_bap_qos_cfg_pref *const pref, in unicast_server_cb_config_custom_fake() argument 381 *pref = qos_pref; in unicast_server_cb_config_custom_fake()
|
/Zephyr-latest/tests/bluetooth/audio/cap_initiator/uut/ |
D | bap_unicast_client.c | 55 const struct bt_bap_qos_cfg_pref pref = {0}; in bt_bap_unicast_client_config() local 57 stream->ops->configured(stream, &pref); in bt_bap_unicast_client_config()
|
/Zephyr-latest/samples/bluetooth/bap_unicast_server/src/ |
D | main.c | 307 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 327 *pref = qos_pref; in lc3_config() 339 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument
|
/Zephyr-latest/include/zephyr/bluetooth/audio/ |
D | bap.h | 797 void (*configured)(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg_pref *pref); 1215 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp); 1235 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp);
|
/Zephyr-latest/samples/bluetooth/tmap_central/src/ |
D | cap_initiator.c | 46 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured() argument
|
/Zephyr-latest/tests/bluetooth/tester/src/audio/ |
D | btp_bap_unicast.c | 327 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 369 *pref = qos_pref; in lc3_config() 376 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument 504 static void stream_configured(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg_pref *pref) in stream_configured() argument
|
/Zephyr-latest/samples/bluetooth/bap_unicast_client/src/ |
D | main.c | 218 static void stream_configured(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg_pref *pref) in stream_configured() argument
|
/Zephyr-latest/subsys/bluetooth/audio/shell/ |
D | bap.c | 640 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_config() argument 659 *pref = qos_pref; in lc3_config() 666 struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp) in lc3_reconfig() argument 676 *pref = qos_pref; in lc3_reconfig() 3178 const struct bt_bap_qos_cfg_pref *pref) in stream_configured_cb() argument
|
/Zephyr-latest/samples/net/sockets/echo_client/ |
D | README.rst | 274 …::5188:1678:d0c0:6893 from :: via fd11:db8:1::2 dev otbr0 src fd11:db8:1::1 metric 1024 pref medium
|