Home
last modified time | relevance | path

Searched refs:get_bit (Results 1 – 5 of 5) sorted by relevance

/btstack/src/classic/
H A Dhfp_hf.c100 int hf = get_bit(hfp_hf_supported_features, HFP_HFSF_CODEC_NEGOTIATION); in has_codec_negotiation_feature()
101 int ag = get_bit(hfp_connection->remote_supported_features, HFP_AGSF_CODEC_NEGOTIATION); in has_codec_negotiation_feature()
106 int hf = get_bit(hfp_hf_supported_features, HFP_HFSF_THREE_WAY_CALLING); in has_call_waiting_and_3way_calling_feature()
107 int ag = get_bit(hfp_connection->remote_supported_features, HFP_AGSF_THREE_WAY_CALLING); in has_call_waiting_and_3way_calling_feature()
113 int hf = get_bit(hfp_hf_supported_features, HFP_HFSF_HF_INDICATORS); in has_hf_indicators_feature()
114 int ag = get_bit(hfp_connection->remote_supported_features, HFP_AGSF_HF_INDICATORS); in has_hf_indicators_feature()
119 int hf = get_bit(hfp_hf_supported_features, HFP_HFSF_VOICE_RECOGNITION_FUNCTION); in hfp_hf_vra_flag_supported()
120 … int ag = get_bit(hfp_connection->remote_supported_features, HFP_AGSF_VOICE_RECOGNITION_FUNCTION); in hfp_hf_vra_flag_supported()
125 int hf = get_bit(hfp_hf_supported_features, HFP_HFSF_ENHANCED_VOICE_RECOGNITION_STATUS); in hfp_hf_enhanced_vra_flag_supported()
126 …int ag = get_bit(hfp_connection->remote_supported_features, HFP_AGSF_ENHANCED_VOICE_RECOGNITION_ST… in hfp_hf_enhanced_vra_flag_supported()
[all …]
H A Dhfp_ag.c186 return get_bit(hfp_ag_supported_features, HFP_AGSF_IN_BAND_RING_TONE) != 0; in has_in_band_ring_tone()
194 int hf = get_bit(hfp_connection->remote_supported_features, HFP_HFSF_CODEC_NEGOTIATION); in has_codec_negotiation_feature()
195 int ag = get_bit(hfp_ag_supported_features, HFP_AGSF_CODEC_NEGOTIATION); in has_codec_negotiation_feature()
200 int hf = get_bit(hfp_connection->remote_supported_features, HFP_HFSF_THREE_WAY_CALLING); in has_call_waiting_and_3way_calling_feature()
201 int ag = get_bit(hfp_ag_supported_features, HFP_AGSF_THREE_WAY_CALLING); in has_call_waiting_and_3way_calling_feature()
206 int hf = get_bit(hfp_connection->remote_supported_features, HFP_HFSF_HF_INDICATORS); in has_hf_indicators_feature()
207 int ag = get_bit(hfp_ag_supported_features, HFP_AGSF_HF_INDICATORS); in has_hf_indicators_feature()
805 int ag = get_bit(hfp_ag_supported_features, HFP_AGSF_VOICE_RECOGNITION_FUNCTION); in hfp_ag_vra_flag_supported()
806 … int hf = get_bit(hfp_connection->remote_supported_features, HFP_HFSF_VOICE_RECOGNITION_FUNCTION); in hfp_ag_vra_flag_supported()
811 int ag = get_bit(hfp_ag_supported_features, HFP_AGSF_ENHANCED_VOICE_RECOGNITION_STATUS); in hfp_ag_enhanced_vra_flag_supported()
[all …]
H A Dhfp.h792 int get_bit(uint16_t bitmap, int position);
H A Dhfp.c319 int get_bit(uint16_t bitmap, int position){ in get_bit() function
351 …offset += btstack_snprintf_assert_complete(buffer+offset, buffer_size-offset, "%d,", get_bit(value… in join_bitmap()
355 …offset += btstack_snprintf_assert_complete(buffer+offset, buffer_size-offset, "%d", get_bit(values… in join_bitmap()
/btstack/test/sbc/
H A Dsbc.py524 def get_bit(fin): function
543 bits = (bits << 1) | get_bit(fin)