• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

system/bt


Commit MetaInfo

Revision9a556c930924d8a0cd0911107f5a59a64287462a (tree)
Zeit2017-06-07 16:44:18
Autorandroid-build-team Robot <android-build-team-robot@goog...>
Commiterandroid-build-team Robot

Log Message

release-request-0ddf2eab-ecaa-4014-951f-9236b1e43859-for-git_oc-release-4075595 snap-temp-L43000000071370789

Change-Id: I3204b0e94b50a17d4d907a0adbdfccaa46b92e87

Ändern Zusammenfassung

Diff

--- a/bta/gatt/bta_gattc_api.cc
+++ b/bta/gatt/bta_gattc_api.cc
@@ -134,13 +134,13 @@ void BTA_GATTC_AppDeregister(tBTA_GATTC_IF client_if) {
134134 void BTA_GATTC_Open(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, bool is_direct,
135135 tBTA_GATT_TRANSPORT transport, bool opportunistic) {
136136 uint8_t phy = controller_get_interface()->get_le_all_initiating_phys();
137- BTA_GATTC_Open(client_if, remote_bda, is_direct, transport, phy,
138- opportunistic);
137+ BTA_GATTC_Open(client_if, remote_bda, is_direct, transport, opportunistic,
138+ phy);
139139 }
140140
141141 void BTA_GATTC_Open(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, bool is_direct,
142- tBTA_GATT_TRANSPORT transport, uint8_t initiating_phys,
143- bool opportunistic) {
142+ tBTA_GATT_TRANSPORT transport, bool opportunistic,
143+ uint8_t initiating_phys) {
144144 tBTA_GATTC_API_OPEN* p_buf =
145145 (tBTA_GATTC_API_OPEN*)osi_malloc(sizeof(tBTA_GATTC_API_OPEN));
146146
--- a/bta/include/bta_gatt_api.h
+++ b/bta/include/bta_gatt_api.h
@@ -643,7 +643,7 @@ extern void BTA_GATTC_Open(tBTA_GATTC_IF client_if, BD_ADDR remote_bda,
643643 bool opportunistic);
644644 extern void BTA_GATTC_Open(tBTA_GATTC_IF client_if, BD_ADDR remote_bda,
645645 bool is_direct, tBTA_GATT_TRANSPORT transport,
646- uint8_t initiating_phys, bool opportunistic);
646+ bool opportunistic, uint8_t initiating_phys);
647647
648648 /*******************************************************************************
649649 *
--- a/btif/src/btif_gatt_client.cc
+++ b/btif/src/btif_gatt_client.cc
@@ -310,7 +310,8 @@ void btif_gattc_open_impl(int client_if, BD_ADDR address, bool is_direct,
310310 // Connect!
311311 BTIF_TRACE_DEBUG("%s Transport=%d, device type=%d, phy=%d", __func__,
312312 transport, device_type, initiating_phys);
313- BTA_GATTC_Open(client_if, address, is_direct, transport, initiating_phys);
313+ BTA_GATTC_Open(client_if, address, is_direct, transport, false,
314+ initiating_phys);
314315 }
315316
316317 bt_status_t btif_gattc_open(int client_if, const bt_bdaddr_t* bd_addr,