Home
last modified time | relevance | path

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

/external/bluetooth/bluedroid/stack/l2cap/
Dl2c_fcr.c182 tout = (UINT32)p_ccb->our_cfg.fcr.mon_tout; in l2c_fcr_start_timer()
186 tout = (UINT32)p_ccb->our_cfg.fcr.rtrans_tout; in l2c_fcr_start_timer()
1154 if (num_lost >= p_ccb->our_cfg.fcr.tx_win_sz) in process_i_frame()
1170 … if ( (tx_seq == next_srej) && (p_fcrb->srej_rcv_hold_q.count < p_ccb->our_cfg.fcr.tx_win_sz) ) in process_i_frame()
1200 … p_ccb->local_cid, next_srej, p_fcrb->srej_rcv_hold_q.count, p_ccb->our_cfg.fcr.tx_win_sz); in process_i_frame()
1955 p_ccb->our_cfg.fcr = *p_fcr; in l2c_fcr_adj_our_req_options()
1959 p_ccb->our_cfg.fcr_present = FALSE; in l2c_fcr_adj_our_req_options()
1984 if ((p_ccb->our_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) in l2c_fcr_adj_monitor_retran_timeout()
1988 p_ccb->our_cfg.fcr.mon_tout = L2CAP_MIN_MONITOR_TOUT; in l2c_fcr_adj_monitor_retran_timeout()
1989 p_ccb->our_cfg.fcr.rtrans_tout = L2CAP_MIN_RETRANS_TOUT; in l2c_fcr_adj_monitor_retran_timeout()
[all …]
Dl2c_utils.c663 UINT16_TO_STREAM (p, p_ccb->our_cfg.fcr.rtrans_tout); in l2cu_send_peer_config_rsp()
664 UINT16_TO_STREAM (p, p_ccb->our_cfg.fcr.mon_tout); in l2cu_send_peer_config_rsp()
1397 memset (&p_ccb->our_cfg, 0, sizeof(tL2CAP_CFG_INFO)); in l2cu_allocate_ccb()
1401 …p_ccb->our_cfg.flush_to = p_ccb->peer_cfg.flush_to = L2CAP_DEFAULT_FLUSH… in l2cu_allocate_ccb()
1402 … p_ccb->our_cfg.mtu = p_ccb->peer_cfg.mtu = L2CAP_DEFAULT_MTU; in l2cu_allocate_ccb()
1403 …p_ccb->our_cfg.qos.service_type = p_ccb->peer_cfg.qos.service_type = L2CAP_DEFAULT_SERV_… in l2cu_allocate_ccb()
1404 …p_ccb->our_cfg.qos.token_rate = p_ccb->peer_cfg.qos.token_rate = L2CAP_DEFAULT_TOKEN… in l2cu_allocate_ccb()
1405 …p_ccb->our_cfg.qos.token_bucket_size = p_ccb->peer_cfg.qos.token_bucket_size = L2CAP_DEFAULT_BUCKE… in l2cu_allocate_ccb()
1406 …p_ccb->our_cfg.qos.peak_bandwidth = p_ccb->peer_cfg.qos.peak_bandwidth = L2CAP_DEFAULT_PEAK_… in l2cu_allocate_ccb()
1407 …p_ccb->our_cfg.qos.latency = p_ccb->peer_cfg.qos.latency = L2CAP_DEFAULT_LATEN… in l2cu_allocate_ccb()
[all …]
Dl2c_api.c468 p_ccb->our_cfg = *p_cfg; in L2CA_ConfigReq()
1571 *pp_our_cfg = &(p_ccb->our_cfg); in L2CA_GetCurrentConfig()
1575 if (p_ccb->our_cfg.mtu_present) in L2CA_GetCurrentConfig()
1577 if (p_ccb->our_cfg.qos_present) in L2CA_GetCurrentConfig()
1579 if (p_ccb->our_cfg.flush_to_present) in L2CA_GetCurrentConfig()
1581 if (p_ccb->our_cfg.fcr_present) in L2CA_GetCurrentConfig()
1583 if (p_ccb->our_cfg.fcs_present) in L2CA_GetCurrentConfig()
1585 if (p_ccb->our_cfg.ext_flow_spec_present) in L2CA_GetCurrentConfig()
Dl2c_csm.c760 if (p_ccb->our_cfg.fcr.mode != p_ccb->peer_cfg.fcr.mode) in l2c_csm_config()
782 if ((p_ccb->our_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) in l2c_csm_config()
783 &&((p_ccb->our_cfg.fcr.mon_tout == 0)||(p_ccb->our_cfg.fcr.rtrans_tout))) in l2c_csm_config()
849 if (p_ccb->our_cfg.fcr.mode != p_ccb->peer_cfg.fcr.mode) in l2c_csm_config()
Dl2c_int.h309 tL2CAP_CFG_INFO our_cfg; /* Our saved configuration options */ member