Home
last modified time | relevance | path

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

/system/bt/stack/l2cap/
Dl2c_fcr.c183 tout = (UINT32)p_ccb->our_cfg.fcr.mon_tout; in l2c_fcr_start_timer()
187 tout = (UINT32)p_ccb->our_cfg.fcr.rtrans_tout; in l2c_fcr_start_timer()
1191 if (num_lost >= p_ccb->our_cfg.fcr.tx_win_sz) in process_i_frame()
1207 …seq == next_srej) && (fixed_queue_length(p_fcrb->srej_rcv_hold_q) < p_ccb->our_cfg.fcr.tx_win_sz) ) in process_i_frame()
1238 …->local_cid, next_srej, fixed_queue_length(p_fcrb->srej_rcv_hold_q), p_ccb->our_cfg.fcr.tx_win_sz); in process_i_frame()
2085 p_ccb->our_cfg.fcr = *p_fcr; in l2c_fcr_adj_our_req_options()
2089 p_ccb->our_cfg.fcr_present = FALSE; in l2c_fcr_adj_our_req_options()
2116 if ((p_ccb->our_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) in l2c_fcr_adj_monitor_retran_timeout()
2120 p_ccb->our_cfg.fcr.mon_tout = L2CAP_MIN_MONITOR_TOUT; in l2c_fcr_adj_monitor_retran_timeout()
2121 p_ccb->our_cfg.fcr.rtrans_tout = L2CAP_MIN_RETRANS_TOUT; in l2c_fcr_adj_monitor_retran_timeout()
[all …]
Dl2c_utils.c766 UINT16_TO_STREAM (p, p_ccb->our_cfg.fcr.rtrans_tout); in l2cu_send_peer_config_rsp()
767 UINT16_TO_STREAM (p, p_ccb->our_cfg.fcr.mon_tout); in l2cu_send_peer_config_rsp()
1546 memset (&p_ccb->our_cfg, 0, sizeof(tL2CAP_CFG_INFO)); in l2cu_allocate_ccb()
1550 …p_ccb->our_cfg.flush_to = p_ccb->peer_cfg.flush_to = L2CAP_DEFAULT_FLUSH… in l2cu_allocate_ccb()
1551 … p_ccb->our_cfg.mtu = p_ccb->peer_cfg.mtu = L2CAP_DEFAULT_MTU; in l2cu_allocate_ccb()
1552 …p_ccb->our_cfg.qos.service_type = p_ccb->peer_cfg.qos.service_type = L2CAP_DEFAULT_SERV_… in l2cu_allocate_ccb()
1553 …p_ccb->our_cfg.qos.token_rate = p_ccb->peer_cfg.qos.token_rate = L2CAP_DEFAULT_TOKEN… in l2cu_allocate_ccb()
1554 …p_ccb->our_cfg.qos.token_bucket_size = p_ccb->peer_cfg.qos.token_bucket_size = L2CAP_DEFAULT_BUCKE… in l2cu_allocate_ccb()
1555 …p_ccb->our_cfg.qos.peak_bandwidth = p_ccb->peer_cfg.qos.peak_bandwidth = L2CAP_DEFAULT_PEAK_… in l2cu_allocate_ccb()
1556 …p_ccb->our_cfg.qos.latency = p_ccb->peer_cfg.qos.latency = L2CAP_DEFAULT_LATEN… in l2cu_allocate_ccb()
[all …]
Dl2c_api.c818 p_ccb->our_cfg = *p_cfg; in L2CA_ConfigReq()
2034 *pp_our_cfg = &(p_ccb->our_cfg); in L2CA_GetCurrentConfig()
2038 if (p_ccb->our_cfg.mtu_present) in L2CA_GetCurrentConfig()
2040 if (p_ccb->our_cfg.qos_present) in L2CA_GetCurrentConfig()
2042 if (p_ccb->our_cfg.flush_to_present) in L2CA_GetCurrentConfig()
2044 if (p_ccb->our_cfg.fcr_present) in L2CA_GetCurrentConfig()
2046 if (p_ccb->our_cfg.fcs_present) in L2CA_GetCurrentConfig()
2048 if (p_ccb->our_cfg.ext_flow_spec_present) in L2CA_GetCurrentConfig()
2082 if (p_ccb->our_cfg.mtu_present) in L2CA_GetConnectionConfig()
2083 *mtu = p_ccb->our_cfg.mtu; in L2CA_GetConnectionConfig()
Dl2c_csm.c877 if (p_ccb->our_cfg.fcr.mode != p_ccb->peer_cfg.fcr.mode) in l2c_csm_config()
899 if ((p_ccb->our_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) in l2c_csm_config()
900 &&((p_ccb->our_cfg.fcr.mon_tout == 0)||(p_ccb->our_cfg.fcr.rtrans_tout))) in l2c_csm_config()
972 if (p_ccb->our_cfg.fcr.mode != p_ccb->peer_cfg.fcr.mode) in l2c_csm_config()
Dl2c_int.h307 tL2CAP_CFG_INFO our_cfg; /* Our saved configuration options */ member