Home
last modified time | relevance | path

Searched refs:pref (Results 1 – 24 of 24) sorted by relevance

/Zephyr-latest/samples/bluetooth/cap_acceptor/src/
Dcap_acceptor_unicast.c112 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/
Dcap_initiator_unicast.c95 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/
Dbap_unicast_sr.c137 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/
Dgmap_ugt_test.c115 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()
Dbap_unicast_server_test.c113 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
Dcap_acceptor_test.c457 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()
Dbap_unicast_client_test.c72 static void stream_configured(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg_pref *pref) in stream_configured() argument
Dgmap_ugg_test.c172 const struct bt_bap_qos_cfg_pref *pref) in stream_configured_cb() argument
Dcap_initiator_unicast_test.c134 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured() argument
/Zephyr-latest/samples/bluetooth/hap_ha/src/
Dbap_unicast_sr.c204 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/
Dcap_stream.c51 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()
Dbap_unicast_client.c859 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 …]
Dascs.c716 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/
Dtest_common.c137 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()
Dmain.c598 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()
Dtest_ase_control_params.c377 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/
Dbap_unicast_client.c55 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/
Dmain.c307 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/
Dbap.h797 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/
Dcap_initiator.c46 const struct bt_bap_qos_cfg_pref *pref) in unicast_stream_configured() argument
/Zephyr-latest/tests/bluetooth/tester/src/audio/
Dbtp_bap_unicast.c327 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/
Dmain.c218 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/
Dbap.c640 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/
DREADME.rst274 …::5188:1678:d0c0:6893 from :: via fd11:db8:1::2 dev otbr0 src fd11:db8:1::1 metric 1024 pref medium