/hal_espressif-latest/components/bt/host/bluedroid/stack/sdp/ |
D | sdp_main.c | 154 sdp_cb.l2cap_my_cfg.fcr.mode = L2CAP_FCR_ERTM_MODE; in sdp_init() 155 sdp_cb.l2cap_my_cfg.fcr.tx_win_sz = 8; in sdp_init() 156 sdp_cb.l2cap_my_cfg.fcr.max_transmit = 0xff; in sdp_init() 157 sdp_cb.l2cap_my_cfg.fcr.rtrans_tout = 2000; in sdp_init() 158 sdp_cb.l2cap_my_cfg.fcr.mon_tout = 12000; in sdp_init() 159 sdp_cb.l2cap_my_cfg.fcr.mps = 672; in sdp_init() 274 cfg.fcr.mode, cfg.fcr.tx_win_sz, cfg.fcr.max_transmit, in sdp_connect_ind() 275 cfg.fcr.rtrans_tout, cfg.fcr.mon_tout, cfg.fcr.mps); in sdp_connect_ind() 279 && cfg.fcr.mode != L2CAP_FCR_BASIC_MODE) { in sdp_connect_ind() 281 cfg.fcr.mode = L2CAP_FCR_BASIC_MODE; in sdp_connect_ind() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/ |
D | l2c_fcr.c | 176 tout = (UINT32)p_ccb->our_cfg.fcr.mon_tout; in l2c_fcr_start_timer() 178 tout = (UINT32)p_ccb->our_cfg.fcr.rtrans_tout; in l2c_fcr_start_timer() 257 …if ( (p_ccb->local_cid >= L2CAP_BASE_APPL_CID) && (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE… in l2c_fcr_cleanup() 271 …_acks:%08u, in_cfg.fcr.tx_win_sz:%08u", p_ccb->fcrb.max_held_acks, p_ccb->peer_cfg.fcr.tx_win_sz ); in l2c_fcr_cleanup() 377 if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) { in l2c_fcr_is_flow_controlled() 380 … || (fixed_queue_length(p_ccb->fcrb.waiting_for_ack_q) >= p_ccb->peer_cfg.fcr.tx_win_sz) ) { in l2c_fcr_is_flow_controlled() 434 if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) { in prepare_I_frame() 489 if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) { in prepare_I_frame() 622 if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_STREAM_MODE) { in l2c_fcr_proc_pdu() 816 p_ccb->peer_cfg.fcr.max_transmit, in l2c_fcr_proc_tout() [all …]
|
D | l2c_utils.c | 721 UINT8_TO_STREAM (p, p_cfg->fcr.mode); in l2cu_send_peer_config_req() 722 UINT8_TO_STREAM (p, p_cfg->fcr.tx_win_sz); in l2cu_send_peer_config_req() 723 UINT8_TO_STREAM (p, p_cfg->fcr.max_transmit); in l2cu_send_peer_config_req() 724 UINT16_TO_STREAM (p, p_cfg->fcr.rtrans_tout); in l2cu_send_peer_config_req() 725 UINT16_TO_STREAM (p, p_cfg->fcr.mon_tout); in l2cu_send_peer_config_req() 726 UINT16_TO_STREAM (p, p_cfg->fcr.mps); in l2cu_send_peer_config_req() 819 UINT8_TO_STREAM (p, p_cfg->fcr.mode); in l2cu_send_peer_config_rsp() 820 UINT8_TO_STREAM (p, p_cfg->fcr.tx_win_sz); in l2cu_send_peer_config_rsp() 821 UINT8_TO_STREAM (p, p_cfg->fcr.max_transmit); in l2cu_send_peer_config_rsp() 822 UINT16_TO_STREAM (p, p_ccb->our_cfg.fcr.rtrans_tout); in l2cu_send_peer_config_rsp() [all …]
|
D | l2c_main.c | 292 if (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_BASIC_MODE) { in l2c_rcv_acl_data() 329 if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_BASIC_MODE) { in l2c_rcv_acl_data() 562 STREAM_TO_UINT8 (cfg_info.fcr.mode, p); in process_l2cap_cmd() 563 STREAM_TO_UINT8 (cfg_info.fcr.tx_win_sz, p); in process_l2cap_cmd() 564 STREAM_TO_UINT8 (cfg_info.fcr.max_transmit, p); in process_l2cap_cmd() 565 STREAM_TO_UINT16 (cfg_info.fcr.rtrans_tout, p); in process_l2cap_cmd() 566 STREAM_TO_UINT16 (cfg_info.fcr.mon_tout, p); in process_l2cap_cmd() 567 STREAM_TO_UINT16 (cfg_info.fcr.mps, p); in process_l2cap_cmd() 653 STREAM_TO_UINT8 (cfg_info.fcr.mode, p); in process_l2cap_cmd() 654 STREAM_TO_UINT8 (cfg_info.fcr.tx_win_sz, p); in process_l2cap_cmd() [all …]
|
D | l2c_csm.c | 707 if (p_ccb->our_cfg.fcr.mode != p_ccb->peer_cfg.fcr.mode) { in l2c_csm_config() 729 if ((p_ccb->our_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) in l2c_csm_config() 730 … && ((p_ccb->our_cfg.fcr.mon_tout == 0) || (p_ccb->our_cfg.fcr.rtrans_tout))) { in l2c_csm_config() 791 if (p_ccb->our_cfg.fcr.mode != p_ccb->peer_cfg.fcr.mode) { in l2c_csm_config() 1005 if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) { in l2c_csm_open() 1228 if (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_BASIC_MODE) { in l2c_enqueue_peer_data()
|
D | l2cap_client.c | 249 if (requested_parameters->fcr.mode != L2CAP_FCR_BASIC_MODE) { in config_request_cb() 251 response.fcr = requested_parameters->fcr; in config_request_cb() 252 response.fcr.mode = L2CAP_FCR_BASIC_MODE; in config_request_cb()
|
D | l2c_api.c | 477 cid, p_cfg->fcr_present, p_cfg->fcr.mode, p_cfg->mtu_present, p_cfg->mtu); in L2CA_ConfigReq() 491 if ((!p_cfg->fcr_present) || (p_cfg->fcr.mode == L2CAP_FCR_BASIC_MODE)) { in L2CA_ConfigReq() 1004 if (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_ERTM_MODE) { in L2CA_FlowControl() 1005 L2CAP_TRACE_EVENT ("L2CA_FlowControl() invalid mode:%d", p_ccb->peer_cfg.fcr.mode); in L2CA_FlowControl() 1044 if ( (p_ccb->chnl_state != CST_OPEN) || (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_ERTM_MODE) ) { in L2CA_SendTestSFrame() 1290 L2CAP_TRACE_API ("L2CA_GetChnlFcrMode() returns mode %d", p_ccb->peer_cfg.fcr.mode); in L2CA_GetChnlFcrMode() 1291 return (p_ccb->peer_cfg.fcr.mode); in L2CA_GetChnlFcrMode() 2261 if (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_ERTM_MODE) { in L2CA_FlushChannel()
|
D | l2c_link.c | 857 p_ccb->local_cid, p_ccb->peer_cfg.fcr.mode, in l2c_chnl_allocation_in_ccb_list()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/gap/ |
D | gap_conn.c | 204 p_ccb->ertm_info.preferred_mode = p_ccb->cfg.fcr.mode; in GAP_ConnOpen() 513 if (p_ccb->cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) { in GAP_ConnWriteData() 878 if (p_ccb->cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) { in gap_config_ind() 929 p_ccb->cfg.fcr.mode = p_cfg->fcr.mode; in gap_config_cfm() 931 p_ccb->cfg.fcr.mode = L2CAP_FCR_BASIC_MODE; in gap_config_cfm()
|
/hal_espressif-latest/components/xtensa/esp32/include/xtensa/config/ |
D | tie.h | 128 XCHAL_SA_REG(s,0,0,1,0, fcr, 4, 4, 4,0x03E8, ur,232, 32,0,0,0) \
|
/hal_espressif-latest/components/xtensa/esp32s3/include/xtensa/config/ |
D | tie.h | 128 XCHAL_SA_REG(s,0,0,1,0, fcr, 4, 4, 4,0x03E8, ur,232, 32,0,0,0) \
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/rfcomm/ |
D | rfc_mx_fsm.c | 588 cfg.fcr = rfc_l2c_fcr_opts_def; in rfc_mx_send_config_req()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/ |
D | l2c_api.h | 163 tL2CAP_FCR_OPTS fcr; member
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/jv/ |
D | bta_jv_act.c | 1326 if (cfg.fcr_present && cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) { in bta_jv_l2cap_connect() 1489 if (cfg.fcr_present && cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) { in bta_jv_l2cap_start_server() 2611 static tL2CAP_FIXED_CHNL_REG fcr = { in fcchan_get() local 2642 if (!L2CA_RegisterFixedChannel(chan, &fcr)) { in fcchan_get()
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/l2cap/ |
D | btc_l2cap.c | 529 cfg.fcr = obex_l2c_fcr_opts_def; in btc_l2cap_start_srv() 662 cfg.fcr = obex_l2c_fcr_opts_def; in btc_l2cap_connect()
|