Loading flags/btif_dm.aconfig +0 −7 Original line number Diff line number Diff line package: "com.android.bluetooth.flags" container: "com.android.btservices" flag { name: "force_bredr_for_sdp_retry" namespace: "bluetooth" description: "Force BR/EDR transport for retrying SDP service discovery" bug: "326656580" } flag { name: "do_not_replace_existing_cod_with_uncategorized_cod" namespace: "bluetooth" Loading flags/security.aconfig +0 −7 Original line number Diff line number Diff line Loading @@ -29,13 +29,6 @@ flag { bug: "314331379" } flag { name: "fix_pairing_failure_reason_from_remote" namespace: "bluetooth" description: "Correct the pairing failure reason reported from remote" bug: "320745565" } flag { name: "fix_le_oob_pairing_bypass" namespace: "bluetooth" Loading system/btif/src/btif_dm.cc +1 −5 Original line number Diff line number Diff line Loading @@ -1697,11 +1697,7 @@ static void btif_on_service_discovery_results( if (pairing_cb.sdp_attempts) { log::warn("SDP failed after bonding re-attempting for {}", bd_addr); pairing_cb.sdp_attempts++; if (com::android::bluetooth::flags::force_bredr_for_sdp_retry()) { btif_dm_get_remote_services(bd_addr, BT_TRANSPORT_BR_EDR); } else { btif_dm_get_remote_services(bd_addr, BT_TRANSPORT_AUTO); } } else { log::warn("SDP triggered by someone failed when bonding"); } Loading system/stack/smp/smp_act.cc +1 −6 Original line number Diff line number Diff line Loading @@ -535,12 +535,7 @@ void smp_proc_pair_fail(tSMP_CB* p_cb, tSMP_INT_DATA* p_data) { p_cb->rcvd_cmd_len); p_cb->status = SMP_INVALID_PARAMETERS; } else { if (com::android::bluetooth::flags:: fix_pairing_failure_reason_from_remote()) { p_cb->status = static_cast<tSMP_STATUS>(p_data->p_data[0]); } else { p_cb->status = p_data->status; } } /* Cancel pending auth complete timer if set */ Loading Loading
flags/btif_dm.aconfig +0 −7 Original line number Diff line number Diff line package: "com.android.bluetooth.flags" container: "com.android.btservices" flag { name: "force_bredr_for_sdp_retry" namespace: "bluetooth" description: "Force BR/EDR transport for retrying SDP service discovery" bug: "326656580" } flag { name: "do_not_replace_existing_cod_with_uncategorized_cod" namespace: "bluetooth" Loading
flags/security.aconfig +0 −7 Original line number Diff line number Diff line Loading @@ -29,13 +29,6 @@ flag { bug: "314331379" } flag { name: "fix_pairing_failure_reason_from_remote" namespace: "bluetooth" description: "Correct the pairing failure reason reported from remote" bug: "320745565" } flag { name: "fix_le_oob_pairing_bypass" namespace: "bluetooth" Loading
system/btif/src/btif_dm.cc +1 −5 Original line number Diff line number Diff line Loading @@ -1697,11 +1697,7 @@ static void btif_on_service_discovery_results( if (pairing_cb.sdp_attempts) { log::warn("SDP failed after bonding re-attempting for {}", bd_addr); pairing_cb.sdp_attempts++; if (com::android::bluetooth::flags::force_bredr_for_sdp_retry()) { btif_dm_get_remote_services(bd_addr, BT_TRANSPORT_BR_EDR); } else { btif_dm_get_remote_services(bd_addr, BT_TRANSPORT_AUTO); } } else { log::warn("SDP triggered by someone failed when bonding"); } Loading
system/stack/smp/smp_act.cc +1 −6 Original line number Diff line number Diff line Loading @@ -535,12 +535,7 @@ void smp_proc_pair_fail(tSMP_CB* p_cb, tSMP_INT_DATA* p_data) { p_cb->rcvd_cmd_len); p_cb->status = SMP_INVALID_PARAMETERS; } else { if (com::android::bluetooth::flags:: fix_pairing_failure_reason_from_remote()) { p_cb->status = static_cast<tSMP_STATUS>(p_data->p_data[0]); } else { p_cb->status = p_data->status; } } /* Cancel pending auth complete timer if set */ Loading