Searched refs:fcr (Results 1 - 15 of 15) sorted by relevance

/system/bt/stack/sdp/
H A Dsdp_main.cc183 cfg.fcr.mode, cfg.fcr.tx_win_sz, cfg.fcr.max_transmit,
184 cfg.fcr.rtrans_tout, cfg.fcr.mon_tout, cfg.fcr.mps);
188 cfg.fcr.mode != L2CAP_FCR_BASIC_MODE) {
190 cfg.fcr.mode = L2CAP_FCR_BASIC_MODE;
237 cfg.fcr.mode, cfg.fcr
[all...]
/system/bt/stack/l2cap/
H A Dl2c_fcr.cc176 tout = (uint32_t)p_ccb->our_cfg.fcr.mon_tout;
178 tout = (uint32_t)p_ccb->our_cfg.fcr.rtrans_tout;
234 (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE)) {
258 "max_held_acks:%08u, in_cfg.fcr.tx_win_sz:%08u",
259 p_ccb->fcrb.max_held_acks, p_ccb->peer_cfg.fcr.tx_win_sz);
378 if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) {
382 p_ccb->peer_cfg.fcr.tx_win_sz)) {
437 if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) {
494 if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE)
621 if (p_ccb->peer_cfg.fcr
[all...]
H A Dl2c_utils.cc601 UINT8_TO_STREAM(p, p_cfg->fcr.mode);
602 UINT8_TO_STREAM(p, p_cfg->fcr.tx_win_sz);
603 UINT8_TO_STREAM(p, p_cfg->fcr.max_transmit);
604 UINT16_TO_STREAM(p, p_cfg->fcr.rtrans_tout);
605 UINT16_TO_STREAM(p, p_cfg->fcr.mon_tout);
606 UINT16_TO_STREAM(p, p_cfg->fcr.mps);
697 UINT8_TO_STREAM(p, p_cfg->fcr.mode);
698 UINT8_TO_STREAM(p, p_cfg->fcr.tx_win_sz);
699 UINT8_TO_STREAM(p, p_cfg->fcr.max_transmit);
700 UINT16_TO_STREAM(p, p_ccb->our_cfg.fcr
[all...]
H A Dl2c_main.cc208 if (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_BASIC_MODE)
229 if (p_ccb->peer_cfg.fcr.mode == L2CAP_FCR_BASIC_MODE)
470 STREAM_TO_UINT8(cfg_info.fcr.mode, p);
471 STREAM_TO_UINT8(cfg_info.fcr.tx_win_sz, p);
472 STREAM_TO_UINT8(cfg_info.fcr.max_transmit, p);
473 STREAM_TO_UINT16(cfg_info.fcr.rtrans_tout, p);
474 STREAM_TO_UINT16(cfg_info.fcr.mon_tout, p);
475 STREAM_TO_UINT16(cfg_info.fcr.mps, p);
565 STREAM_TO_UINT8(cfg_info.fcr.mode, p);
566 STREAM_TO_UINT8(cfg_info.fcr
[all...]
H A Dl2c_csm.cc820 if (p_ccb->our_cfg.fcr.mode != p_ccb->peer_cfg.fcr.mode) {
840 ** check p_ccb->our_cfg.fcr.mon_tout and
841 *p_ccb->our_cfg.fcr.rtrans_tout
845 if ((p_ccb->our_cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) &&
846 ((p_ccb->our_cfg.fcr.mon_tout == 0) ||
847 (p_ccb->our_cfg.fcr.rtrans_tout))) {
917 if (p_ccb->our_cfg.fcr.mode != p_ccb->peer_cfg.fcr.mode) {
1149 if (p_ccb->peer_cfg.fcr
[all...]
H A Dl2cap_client.cc243 if (requested_parameters->fcr.mode != L2CAP_FCR_BASIC_MODE) {
245 response.fcr = requested_parameters->fcr;
246 response.fcr.mode = L2CAP_FCR_BASIC_MODE;
H A Dl2c_api.cc759 cid, p_cfg->fcr_present, p_cfg->fcr.mode, p_cfg->mtu_present, p_cfg->mtu);
772 if ((!p_cfg->fcr_present) || (p_cfg->fcr.mode == L2CAP_FCR_BASIC_MODE)) {
1263 if (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_ERTM_MODE) {
1265 p_ccb->peer_cfg.fcr.mode);
1306 (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_ERTM_MODE))
1562 p_ccb->peer_cfg.fcr.mode);
1563 return (p_ccb->peer_cfg.fcr.mode);
2165 if (p_ccb->peer_cfg.fcr.mode != L2CAP_FCR_ERTM_MODE) {
H A Dl2c_ble.cc723 p_ccb->peer_cfg.fcr.mode = L2CAP_FCR_LE_COC_MODE;
771 p_ccb->peer_cfg.fcr.mode = L2CAP_FCR_LE_COC_MODE;
H A Dl2c_link.cc797 p_ccb->local_cid, p_ccb->peer_cfg.fcr.mode, p_ccb->ccb_priority,
/system/bt/stack/avct/
H A Davct_l2c_br.cc146 cfg.fcr = avct_l2c_br_fcr_opts_def;
152 ertm_info.preferred_mode = cfg.fcr.mode;
210 cfg.fcr = avct_l2c_br_fcr_opts_def;
/system/bt/stack/gap/
H A Dgap_conn.cc225 p_ccb->ertm_info.preferred_mode = p_ccb->cfg.fcr.mode;
468 if (p_ccb->cfg.fcr.mode == L2CAP_FCR_ERTM_MODE)
858 if (p_ccb->cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) {
903 p_ccb->cfg.fcr.mode = p_cfg->fcr.mode;
905 p_ccb->cfg.fcr.mode = L2CAP_FCR_BASIC_MODE;
/system/bt/stack/mcap/
H A Dmca_main.cc252 memcpy(&p_cfg->fcr, p_opt, sizeof(tL2CAP_FCR_OPTS));
/system/bt/stack/include/
H A Dl2c_api.h164 tL2CAP_FCR_OPTS fcr; member in struct:__anon1158
/system/bt/btif/src/
H A Dbtif_sock_l2cap.cc837 cfg.fcr = obex_l2c_fcr_opts_def;
921 cfg.fcr = obex_l2c_fcr_opts_def;
/system/bt/bta/jv/
H A Dbta_jv_act.cc1024 if (cfg.fcr_present && cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) {
1187 if (cfg.fcr_present && cfg.fcr.mode == L2CAP_FCR_ERTM_MODE) {
2155 static tL2CAP_FIXED_CHNL_REG fcr = { local
2180 if (!L2CA_RegisterFixedChannel(chan, &fcr)) {

Completed in 56 milliseconds