OSDN Git Service

android-x86/system-bt.git
9 years agoam 0fc68b07: am 5e5bc23c: service: Fix clang warnings in uuid_test.cpp
Arman Uguray [Sat, 13 Jun 2015 02:37:51 +0000 (02:37 +0000)]
am 0fc68b07: am 5e5bc23c: service: Fix clang warnings in uuid_test.cpp

* commit '0fc68b07de18604feb4941f3a300538112c3eba5':
  service: Fix clang warnings in uuid_test.cpp

9 years agoam 82f1aa27: am a59e8d1f: Merge "Add bthost, a simple BLE GATT server."
Ian Coolidge [Sat, 13 Jun 2015 02:37:51 +0000 (02:37 +0000)]
am 82f1aa27: am a59e8d1f: Merge "Add bthost, a simple BLE GATT server."

* commit '82f1aa271938b8c9f106a513de004bc8f14e77f7':
  Add bthost, a simple BLE GATT server.

9 years agoam 5de94fbd: am bb954527: build: Fix ptr <-> integer cast warnings
Arman Uguray [Sat, 13 Jun 2015 02:37:50 +0000 (02:37 +0000)]
am 5de94fbd: am bb954527: build: Fix ptr <-> integer cast warnings

* commit '5de94fbdceb7af83ac6d0eabdbb4c0b67863072d':
  build: Fix ptr <-> integer cast warnings

9 years agoam fbe40411: am ecb1b43c: osi: Introduce ptr <-> integer conversion macros
Arman Uguray [Sat, 13 Jun 2015 02:37:49 +0000 (02:37 +0000)]
am fbe40411: am ecb1b43c: osi: Introduce ptr <-> integer conversion macros

* commit 'fbe40411358a3f69601215a718374ca09d776acf':
  osi: Introduce ptr <-> integer conversion macros

9 years agoam f4b0c924: am cab5fc17: gn-build: Remove all -Wno-unused-* flags from build files
Arman Uguray [Sat, 13 Jun 2015 02:37:48 +0000 (02:37 +0000)]
am f4b0c924: am cab5fc17: gn-build: Remove all -Wno-unused-* flags from build files

* commit 'f4b0c9242b09316b228234219b67efcbffd7eaec':
  gn-build: Remove all -Wno-unused-* flags from build files

9 years agoam 5e5bc23c: service: Fix clang warnings in uuid_test.cpp
Arman Uguray [Sat, 13 Jun 2015 02:25:54 +0000 (02:25 +0000)]
am 5e5bc23c: service: Fix clang warnings in uuid_test.cpp

* commit '5e5bc23ca797f9060e5bf382a0d4a80e4952ceba':
  service: Fix clang warnings in uuid_test.cpp

9 years agoam a59e8d1f: Merge "Add bthost, a simple BLE GATT server."
Ian Coolidge [Sat, 13 Jun 2015 02:25:44 +0000 (02:25 +0000)]
am a59e8d1f: Merge "Add bthost, a simple BLE GATT server."

* commit 'a59e8d1f46d9881ba3221afcca732241416e6804':
  Add bthost, a simple BLE GATT server.

9 years agoam bb954527: build: Fix ptr <-> integer cast warnings
Arman Uguray [Sat, 13 Jun 2015 02:25:28 +0000 (02:25 +0000)]
am bb954527: build: Fix ptr <-> integer cast warnings

* commit 'bb95452741bfd65723ea417c25dbd326c7568ab7':
  build: Fix ptr <-> integer cast warnings

9 years agoam ecb1b43c: osi: Introduce ptr <-> integer conversion macros
Arman Uguray [Sat, 13 Jun 2015 02:25:27 +0000 (02:25 +0000)]
am ecb1b43c: osi: Introduce ptr <-> integer conversion macros

* commit 'ecb1b43c54458de894a570349f371eb4fb2c8b8c':
  osi: Introduce ptr <-> integer conversion macros

9 years agoam cab5fc17: gn-build: Remove all -Wno-unused-* flags from build files
Arman Uguray [Sat, 13 Jun 2015 02:25:27 +0000 (02:25 +0000)]
am cab5fc17: gn-build: Remove all -Wno-unused-* flags from build files

* commit 'cab5fc179730ce6910989307680b275195876c4d':
  gn-build: Remove all -Wno-unused-* flags from build files

9 years agoservice: Fix clang warnings in uuid_test.cpp
Arman Uguray [Sat, 13 Jun 2015 00:33:34 +0000 (17:33 -0700)]
service: Fix clang warnings in uuid_test.cpp

This CL fixes some clang compile warnings and errors and style issues in
service/uuid_test.cpp

Bug: none
Change-Id: I2d1ecf6e21fe4d6b1741f2a113ed5834518a29c6

9 years agoMerge "Add bthost, a simple BLE GATT server."
Ian Coolidge [Fri, 12 Jun 2015 22:50:56 +0000 (22:50 +0000)]
Merge "Add bthost, a simple BLE GATT server."

9 years agoAdd bthost, a simple BLE GATT server.
Ian Coolidge [Thu, 4 Jun 2015 00:20:30 +0000 (17:20 -0700)]
Add bthost, a simple BLE GATT server.

This is accessible via Unix socket.
It only has a couple of interesting features:

 * Built in support for large blob attributes (>512 octets)
 * Attribute caching (avoid frame-level IO for IPC clients)

Some string utilies are taken from modp_b64 and Chromium base.

Bug: 21076037
Change-Id: I6a29959159de76f8dd68d6bbaabe2100daabb6fa

9 years agobuild: Fix ptr <-> integer cast warnings
Arman Uguray [Wed, 3 Jun 2015 04:11:07 +0000 (21:11 -0700)]
build: Fix ptr <-> integer cast warnings

This CL removes the -Wno-pointer-to-integer-cast and
-Wno-integer-to-pointer-cast flags from GN build files. The resulting errors
were fixed using the following:

  1. All ptr <-> integer casts are now done by using the new
     PTR_TO_INT/INT_TO_PTR macros defined in osi.h

  2. The TIMER_PARAM_TYPE macro, defined in gki/common/gki.h and
     include/bt_target.h have been redefined as void* rather than UINT32. This
     is better, since "void*" can act as a simple container without any
     precision loss that would be caused by a type such as UINT32 on 64-bit
     systems. void* inherently is a safer container for all pointer types but
     UINT32 isn't.

BUG=21570302

Change-Id: I4a82c4a40c91caa31e372382c40d424be220cbe3

9 years agoosi: Introduce ptr <-> integer conversion macros
Arman Uguray [Wed, 3 Jun 2015 02:48:51 +0000 (19:48 -0700)]
osi: Introduce ptr <-> integer conversion macros

This CL introduces macros for safe pointer to integer conversion (and vice
versa). Also fixed a small style issue in log.h

Bug: 21570302
Change-Id: If76bf5e35970f9b33f9bef53fbd03a7effae08dc

9 years agogn-build: Remove all -Wno-unused-* flags from build files
Arman Uguray [Tue, 2 Jun 2015 21:56:45 +0000 (14:56 -0700)]
gn-build: Remove all -Wno-unused-* flags from build files

This CL removes the -Wno-unused-variable, -Wno-unused-value, and
-Wno-unused-function flags from all GN build and Android.mk files
(except in test/ & tools/, which are not built using GN yet). Compile
warnings, caused by the newly enabled flags, have been fixed throughout
the code base.

Bug: 21570302

Change-Id: I1c128b62256faa17668124798341005bcd0f7315

9 years agoam 9df517bb: am 74626115: Re-enable the OSI memory allocation tracker.
Pavlin Radoslavov [Fri, 12 Jun 2015 05:28:19 +0000 (05:28 +0000)]
am 9df517bb: am 74626115: Re-enable the OSI memory allocation tracker.

* commit '9df517bb2e81f29e51a4da8b8dd436c7649b6211':
  Re-enable the OSI memory allocation tracker.

9 years agoam 74626115: Re-enable the OSI memory allocation tracker.
Pavlin Radoslavov [Fri, 12 Jun 2015 05:15:35 +0000 (05:15 +0000)]
am 74626115: Re-enable the OSI memory allocation tracker.

* commit '74626115db17478a12d1d39bcefd5af500fadfda':
  Re-enable the OSI memory allocation tracker.

9 years agoam 56c96ff1: am 1ab6fd76: Revert previous commit and disable net_test_hci under sanit...
Evgenii Stepanov [Thu, 11 Jun 2015 23:03:25 +0000 (23:03 +0000)]
am 56c96ff1: am 1ab6fd76: Revert previous commit and disable net_test_hci under sanitizers.

* commit '56c96ff15132fa0494d9553ba3594b5a2ba77e31':
  Revert previous commit and disable net_test_hci under sanitizers.

9 years agoam 1ab6fd76: Revert previous commit and disable net_test_hci under sanitizers.
Evgenii Stepanov [Thu, 11 Jun 2015 22:54:00 +0000 (22:54 +0000)]
am 1ab6fd76: Revert previous commit and disable net_test_hci under sanitizers.

* commit '1ab6fd76ae670029fa3811c93878329dc793cde3':
  Revert previous commit and disable net_test_hci under sanitizers.

9 years agoam bb355edb: am 506c366c: Fix ASan build.
Evgenii Stepanov [Thu, 11 Jun 2015 22:48:46 +0000 (22:48 +0000)]
am bb355edb: am 506c366c: Fix ASan build.

* commit 'bb355edb31589397b3f15ac20ea0a228f08023f7':
  Fix ASan build.

9 years agoam 506c366c: Fix ASan build.
Evgenii Stepanov [Thu, 11 Jun 2015 22:34:58 +0000 (22:34 +0000)]
am 506c366c: Fix ASan build.

* commit '506c366cc3a1b33bc785f5f007c16ae4bff784c8':
  Fix ASan build.

9 years agoRevert previous commit and disable net_test_hci under sanitizers.
Evgenii Stepanov [Thu, 11 Jun 2015 22:34:12 +0000 (15:34 -0700)]
Revert previous commit and disable net_test_hci under sanitizers.

Change-Id: Ifd544ef241f622c647ecea1026025049a470bd16

9 years agoFix ASan build.
Evgenii Stepanov [Thu, 11 Jun 2015 21:30:41 +0000 (14:30 -0700)]
Fix ASan build.

Not sure why, but with ASan I get missing symbol GKI_freebuf.
Indeed, it is defined in a library that's not in the target's deps.

Bug: 21785137
Change-Id: I595f3e3df6ad5dde3f4f8570426479050b1552fa

9 years agoRe-enable the OSI memory allocation tracker.
Pavlin Radoslavov [Thu, 11 Jun 2015 09:09:01 +0000 (02:09 -0700)]
Re-enable the OSI memory allocation tracker.

Previously, the OSI memory allocation tracker was disabled as
a temporary workaround for Bug 21561735.
The root cause for the original issue is now addressed by using the
appropriate linker flags when generating the bluetooth.default.so
shared library:

  LOCAL_LDLIBS := -Wl,-Bsymbolic,-Bsymbolic-functions

Also, added missing #include in file "btif/src/btif_sock_sco.c"

Bug: 21561735
Change-Id: I384a6f3d1d03c74f8d1e3c96bf7e0b5961206feb

9 years agoam 979e3421: Fix mnc-dev <-> master merge errors
Andre Eisenbach [Thu, 11 Jun 2015 05:57:23 +0000 (05:57 +0000)]
am 979e3421: Fix mnc-dev <-> master merge errors

* commit '979e3421c8111a56ebfcf176f6383df58eed52ea':
  Fix mnc-dev <-> master merge errors

9 years agoam 6fc48327: am 625ec341: gn-build: Fix GN build after the merges
Arman Uguray [Thu, 11 Jun 2015 05:54:44 +0000 (05:54 +0000)]
am 6fc48327: am 625ec341: gn-build: Fix GN build after the merges

* commit '6fc4832730341b0ba944e5de72ffe5171089f8b7':
  gn-build: Fix GN build after the merges

9 years agoam afa8dc8b: am ab813119: (-s ours) Fix more BLE_INCLUDED == FALSE build breakage
Andre Eisenbach [Thu, 11 Jun 2015 05:54:44 +0000 (05:54 +0000)]
am afa8dc8b: am ab813119: (-s ours) Fix more BLE_INCLUDED == FALSE build breakage

* commit 'afa8dc8b5afe17e26c4e6a8200571bf177a4dd55':
  Fix more BLE_INCLUDED == FALSE build breakage

9 years agoam 422a4c14: am 087d1acc: Add missing include.
Dan Albert [Thu, 11 Jun 2015 05:54:33 +0000 (05:54 +0000)]
am 422a4c14: am 087d1acc: Add missing include.

* commit '422a4c147ceb4c726b7be978c0d9c868c3aa7a95':
  Add missing include.

9 years agoFix mnc-dev <-> master merge errors
Andre Eisenbach [Thu, 11 Jun 2015 04:04:38 +0000 (21:04 -0700)]
Fix mnc-dev <-> master merge errors

Change-Id: If4d56229de7d47289560a12205feb7e33ac6fcf5

9 years agoam 625ec341: gn-build: Fix GN build after the merges
Arman Uguray [Thu, 11 Jun 2015 02:31:34 +0000 (02:31 +0000)]
am 625ec341: gn-build: Fix GN build after the merges

* commit '625ec34106a70d9299c68593279a0d9c77bfd87f':
  gn-build: Fix GN build after the merges

9 years agoam ab813119: (-s ours) Fix more BLE_INCLUDED == FALSE build breakage
Andre Eisenbach [Thu, 11 Jun 2015 02:31:33 +0000 (02:31 +0000)]
am ab813119: (-s ours) Fix more BLE_INCLUDED == FALSE build breakage

* commit 'ab813119d61a3ca8ac8ecb5239b73bf77e2c05bb':
  Fix more BLE_INCLUDED == FALSE build breakage

9 years agoam 087d1acc: Add missing include.
Dan Albert [Thu, 11 Jun 2015 02:15:49 +0000 (02:15 +0000)]
am 087d1acc: Add missing include.

* commit '087d1acc3f41829e9ce982e6172260d35527e85e':
  Add missing include.

9 years agogn-build: Fix GN build after the merges
Arman Uguray [Wed, 10 Jun 2015 23:21:12 +0000 (16:21 -0700)]
gn-build: Fix GN build after the merges

This CL fixes the GN build after the recent merges to aosp/master.

Change-Id: I0c9d8178986165d5a4a67261532e8a08b6923d22

9 years agoFix more BLE_INCLUDED == FALSE build breakage
Andre Eisenbach [Wed, 10 Jun 2015 23:37:05 +0000 (16:37 -0700)]
Fix more BLE_INCLUDED == FALSE build breakage

Change-Id: I2da6dcdaced78d3a3bce6002fc3885c7480fba82

9 years agoAdd missing include.
Dan Albert [Tue, 9 Jun 2015 23:53:45 +0000 (16:53 -0700)]
Add missing include.

osi_malloc was never included, so it was implicitly defined as
returning an integer (thank you, C). Clang caught the int to pointer
conversion error.

Change-Id: I0d8a3363d92cb72a22780d049a53e193d2e50ec5

9 years agoam d0e14be8: am 53ef6df3: Check transport before subscribing for service changes
Andre Eisenbach [Wed, 10 Jun 2015 22:57:58 +0000 (22:57 +0000)]
am d0e14be8: am 53ef6df3: Check transport before subscribing for service changes

* commit 'd0e14be82bc0bdd54edc1f3830174cc67e27b86e':
  Check transport before subscribing for service changes

9 years agoam 5196d7ca: am 2a527108: Add proper checks for PAN & BNEP in BD stack
Hemant Gupta [Wed, 10 Jun 2015 22:57:57 +0000 (22:57 +0000)]
am 5196d7ca: am 2a527108: Add proper checks for PAN & BNEP in BD stack

* commit '5196d7caa474471370f735c375da157c147807b5':
  Add proper checks for PAN & BNEP in BD stack

9 years agoam 2e58ca8c: am 4633fb8d: Fix issues in A2dp, Avrcp, HF and AG reported by static...
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:56 +0000 (22:57 +0000)]
am 2e58ca8c: am 4633fb8d: Fix issues in A2dp, Avrcp, HF and AG reported by static analysis tool

* commit '2e58ca8c367717fda1d4831d15399069cc6f93e8':
  Fix issues in A2dp, Avrcp, HF and AG reported by static analysis tool

9 years agoam c3165ecd: am 335c2087: Ignore STOP command if A2DP stream is suspended
Anubhav Gupta [Wed, 10 Jun 2015 22:57:56 +0000 (22:57 +0000)]
am c3165ecd: am 335c2087: Ignore STOP command if A2DP stream is suspended

* commit 'c3165ecd2d6d9a94baa133f1472fa68a40bbc8de':
  Ignore STOP command if A2DP stream is suspended

9 years agoam 0d4b8f6a: am 5e45edb7: Remove check for stream type in a2dp hal_callbacks.
Anubhav Gupta [Wed, 10 Jun 2015 22:57:55 +0000 (22:57 +0000)]
am 0d4b8f6a: am 5e45edb7: Remove check for stream type in a2dp hal_callbacks.

* commit '0d4b8f6a2fae051cf341b24c81961fb85cc4db6c':
  Remove check for stream type in a2dp hal_callbacks.

9 years agoam ac65d8b3: am fc0a9f61: Clear remote BD address information.
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:54 +0000 (22:57 +0000)]
am ac65d8b3: am fc0a9f61: Clear remote BD address information.

* commit 'ac65d8b3cd99e6dc1ef745b132157d355d5b1da4':
  Clear remote BD address information.

9 years agoam 158b9760: am c1c26aae: Don\'t stop sniff timer before checking for service ID...
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:53 +0000 (22:57 +0000)]
am 158b9760: am c1c26aae: Don\'t stop sniff timer before checking for service ID entry

* commit '158b97603dad919f2376f961af64dc46da99db2f':
  Don't stop sniff timer before checking for service ID entry

9 years agoam a969944b: am b3997013: Don\'t initiate sniff in sniff mode
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:53 +0000 (22:57 +0000)]
am a969944b: am b3997013: Don\'t initiate sniff in sniff mode

* commit 'a969944bba8e707790ab358cf32be9a28b1e9a5a':
  Don't initiate sniff in sniff mode

9 years agoam 88542ba7: am 45d4c3e3: Updated ATD string parsing
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:52 +0000 (22:57 +0000)]
am 88542ba7: am 45d4c3e3: Updated ATD string parsing

* commit '88542ba796ed4db89116c50ebc9bdad7a0904d5e':
  Updated ATD string parsing

9 years agoam 8786e15b: am e6f4ed85: Stop AG collision timer.
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:51 +0000 (22:57 +0000)]
am 8786e15b: am e6f4ed85: Stop AG collision timer.

* commit '8786e15b222e759d98589e6497ec986903b9f327':
  Stop AG collision timer.

9 years agoam bb85d173: am b0765000: Return ERROR for invalid CHLD command arguments
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:50 +0000 (22:57 +0000)]
am bb85d173: am b0765000: Return ERROR for invalid CHLD command arguments

* commit 'bb85d173cf20f59e4d402b3adb0a6b6386d8badd':
  Return ERROR for invalid CHLD command arguments

9 years agoam e63921d8: am c3aa28eb: Reject second AVRCP connection.
Anubhav Gupta [Wed, 10 Jun 2015 22:57:50 +0000 (22:57 +0000)]
am e63921d8: am c3aa28eb: Reject second AVRCP connection.

* commit 'e63921d870870aff552c356647cf09a358c5fb98':
  Reject second AVRCP connection.

9 years agoam fa56d2d1: am b9851818: Disable SCMST feature for A2DP Sink
Anubhav Gupta [Wed, 10 Jun 2015 22:57:49 +0000 (22:57 +0000)]
am fa56d2d1: am b9851818: Disable SCMST feature for A2DP Sink

* commit 'fa56d2d1e47a1147075f39f6ece4991ca71b7ec5':
  Disable SCMST feature for A2DP Sink

9 years agoam 45529f12: am 9b6dfa44: Restarting PM timer for AG while reading OR writing
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:48 +0000 (22:57 +0000)]
am 45529f12: am 9b6dfa44: Restarting PM timer for AG while reading OR writing

* commit '45529f12d1d93291d641c0f236befed66c0b1e6a':
  Restarting PM timer for AG while reading OR writing

9 years agoam 65c522c4: am b92ab7d8: Initialize btif_max_hf_clients with proper value
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:47 +0000 (22:57 +0000)]
am 65c522c4: am b92ab7d8: Initialize btif_max_hf_clients with proper value

* commit '65c522c436a18f2294dff5fc8fc5a3a46bc779eb':
  Initialize btif_max_hf_clients with proper value

9 years agoam fa8c203c: am 9c264e92: Set the proper authentication level for AvOpen
Anubhav Gupta [Wed, 10 Jun 2015 22:57:47 +0000 (22:57 +0000)]
am fa8c203c: am 9c264e92: Set the proper authentication level for AvOpen

* commit 'fa8c203cdfd8b712e93147a7a1b87f5eb4606b48':
  Set the proper authentication level for AvOpen

9 years agoam b376f951: am 6b359689: Don\'t open SCO for 2nd MO call if a call is active
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:46 +0000 (22:57 +0000)]
am b376f951: am 6b359689: Don\'t open SCO for 2nd MO call if a call is active

* commit 'b376f9510bd883c855d7c7a79580b9c01b8d3eb8':
  Don't open SCO for 2nd MO call if a call is active

9 years agoam 611d71c9: am 4f51fc36: Don\'t close SCO for MO calls
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:45 +0000 (22:57 +0000)]
am 611d71c9: am 4f51fc36: Don\'t close SCO for MO calls

* commit '611d71c9be20e1c9057d75ab9cfd1b76531f15a8':
  Don't close SCO for MO calls

9 years agoam 4e0353e8: am 684d1364: (-s ours) SCO connection should happen after SLC.
Mallikarjuna GB [Wed, 10 Jun 2015 22:57:44 +0000 (22:57 +0000)]
am 4e0353e8: am 684d1364: (-s ours) SCO connection should happen after SLC.

* commit '4e0353e8ebdbfe220bf2be47f17193e30f4eb73d':
  SCO connection should happen after SLC.

9 years agoam 53ef6df3: Check transport before subscribing for service changes
Andre Eisenbach [Wed, 10 Jun 2015 22:47:55 +0000 (22:47 +0000)]
am 53ef6df3: Check transport before subscribing for service changes

* commit '53ef6df3e40846528a561f762515d1e628077c19':
  Check transport before subscribing for service changes

9 years agoam 2a527108: Add proper checks for PAN & BNEP in BD stack
Hemant Gupta [Wed, 10 Jun 2015 22:47:54 +0000 (22:47 +0000)]
am 2a527108: Add proper checks for PAN & BNEP in BD stack

* commit '2a527108d22861aa4091143c740e09235b3692c5':
  Add proper checks for PAN & BNEP in BD stack

9 years agoam 4633fb8d: Fix issues in A2dp, Avrcp, HF and AG reported by static analysis tool
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:54 +0000 (22:47 +0000)]
am 4633fb8d: Fix issues in A2dp, Avrcp, HF and AG reported by static analysis tool

* commit '4633fb8d4b0376474f6d38c58ee5ee563a392ef5':
  Fix issues in A2dp, Avrcp, HF and AG reported by static analysis tool

9 years agoam 335c2087: Ignore STOP command if A2DP stream is suspended
Anubhav Gupta [Wed, 10 Jun 2015 22:47:53 +0000 (22:47 +0000)]
am 335c2087: Ignore STOP command if A2DP stream is suspended

* commit '335c208713b3c9eadcc301acac947b2f96e31da6':
  Ignore STOP command if A2DP stream is suspended

9 years agoam 5e45edb7: Remove check for stream type in a2dp hal_callbacks.
Anubhav Gupta [Wed, 10 Jun 2015 22:47:52 +0000 (22:47 +0000)]
am 5e45edb7: Remove check for stream type in a2dp hal_callbacks.

* commit '5e45edb7f50497436d00423327c55707588211eb':
  Remove check for stream type in a2dp hal_callbacks.

9 years agoam fc0a9f61: Clear remote BD address information.
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:51 +0000 (22:47 +0000)]
am fc0a9f61: Clear remote BD address information.

* commit 'fc0a9f6157e612b757a0b6ff3139da20cab2db91':
  Clear remote BD address information.

9 years agoam c1c26aae: Don\'t stop sniff timer before checking for service ID entry
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:50 +0000 (22:47 +0000)]
am c1c26aae: Don\'t stop sniff timer before checking for service ID entry

* commit 'c1c26aae2708cb74d2aa3e70b5168e0172731c49':
  Don't stop sniff timer before checking for service ID entry

9 years agoam b3997013: Don\'t initiate sniff in sniff mode
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:49 +0000 (22:47 +0000)]
am b3997013: Don\'t initiate sniff in sniff mode

* commit 'b399701373c8829e5d0f85041e7f7542418d7773':
  Don't initiate sniff in sniff mode

9 years agoam 45d4c3e3: Updated ATD string parsing
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:49 +0000 (22:47 +0000)]
am 45d4c3e3: Updated ATD string parsing

* commit '45d4c3e316315b35cdfc6026bd1fc6b47d27c271':
  Updated ATD string parsing

9 years agoam e6f4ed85: Stop AG collision timer.
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:48 +0000 (22:47 +0000)]
am e6f4ed85: Stop AG collision timer.

* commit 'e6f4ed85b19c49a3577b2c2842bb6ca20452ceb8':
  Stop AG collision timer.

9 years agoam b0765000: Return ERROR for invalid CHLD command arguments
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:46 +0000 (22:47 +0000)]
am b0765000: Return ERROR for invalid CHLD command arguments

* commit 'b0765000f362bd48fbf48fd4625a9b3ad825ee14':
  Return ERROR for invalid CHLD command arguments

9 years agoam c3aa28eb: Reject second AVRCP connection.
Anubhav Gupta [Wed, 10 Jun 2015 22:47:45 +0000 (22:47 +0000)]
am c3aa28eb: Reject second AVRCP connection.

* commit 'c3aa28eb96782e966d3b044eb9edeeedaa95bd39':
  Reject second AVRCP connection.

9 years agoam b9851818: Disable SCMST feature for A2DP Sink
Anubhav Gupta [Wed, 10 Jun 2015 22:47:44 +0000 (22:47 +0000)]
am b9851818: Disable SCMST feature for A2DP Sink

* commit 'b9851818bfce9f8d4ac2fb16c1f6cf23cb76f17a':
  Disable SCMST feature for A2DP Sink

9 years agoam 9b6dfa44: Restarting PM timer for AG while reading OR writing
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:43 +0000 (22:47 +0000)]
am 9b6dfa44: Restarting PM timer for AG while reading OR writing

* commit '9b6dfa44d027e093d38ea7b1a402f0b0c00b6e28':
  Restarting PM timer for AG while reading OR writing

9 years agoam b92ab7d8: Initialize btif_max_hf_clients with proper value
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:42 +0000 (22:47 +0000)]
am b92ab7d8: Initialize btif_max_hf_clients with proper value

* commit 'b92ab7d8d5154b9539cf3a5355a0adc1d736773a':
  Initialize btif_max_hf_clients with proper value

9 years agoam 9c264e92: Set the proper authentication level for AvOpen
Anubhav Gupta [Wed, 10 Jun 2015 22:47:42 +0000 (22:47 +0000)]
am 9c264e92: Set the proper authentication level for AvOpen

* commit '9c264e92305f84a5e8a92bc859812def0ce71792':
  Set the proper authentication level for AvOpen

9 years agoam 6b359689: Don\'t open SCO for 2nd MO call if a call is active
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:41 +0000 (22:47 +0000)]
am 6b359689: Don\'t open SCO for 2nd MO call if a call is active

* commit '6b359689a482fae92f26aae6252fddfc296aaabf':
  Don't open SCO for 2nd MO call if a call is active

9 years agoam 4f51fc36: Don\'t close SCO for MO calls
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:40 +0000 (22:47 +0000)]
am 4f51fc36: Don\'t close SCO for MO calls

* commit '4f51fc3650873535d20e4cf00da68d723c1378b6':
  Don't close SCO for MO calls

9 years agoam 684d1364: (-s ours) SCO connection should happen after SLC.
Mallikarjuna GB [Wed, 10 Jun 2015 22:47:39 +0000 (22:47 +0000)]
am 684d1364: (-s ours) SCO connection should happen after SLC.

* commit '684d136447a93311a7ebd2e6daf931b77e802120':
  SCO connection should happen after SLC.

9 years agoam 0f95b937: am c1c02ce5: Fix compile error in bta_ag_sco.c
Andre Eisenbach [Wed, 10 Jun 2015 22:46:35 +0000 (22:46 +0000)]
am 0f95b937: am c1c02ce5: Fix compile error in bta_ag_sco.c

* commit '0f95b93719d1793d8740a379eb3fa64a28577fda':
  Fix compile error in bta_ag_sco.c

9 years agoam 633842c7: am 8f4fb27a: (-s ours) Create listen SCO for HS1 if HS2 disconnects...
Mallikarjuna GB [Wed, 10 Jun 2015 22:46:34 +0000 (22:46 +0000)]
am 633842c7: am 8f4fb27a: (-s ours) Create listen SCO for HS1 if HS2 disconnects during SCO xfer

* commit '633842c790df08ad2be979e8c909910d6f09de62':
  Create listen SCO for HS1 if HS2 disconnects during SCO xfer

9 years agoam 8393dbb9: am 39b9f827: Don\'t open SCO on state change for multi party call on...
Mallikarjuna GB [Wed, 10 Jun 2015 22:46:34 +0000 (22:46 +0000)]
am 8393dbb9: am 39b9f827: Don\'t open SCO on state change for multi party call on DUT.

* commit '8393dbb9777453fb1939bd0a2e4ee8fdc4b84cbd':
  Don't open SCO on state change for multi party call on DUT.

9 years agoam 2a69119b: am 9900b499: Reset sniff subrating while in SCO
Mallikarjuna GB [Wed, 10 Jun 2015 22:46:33 +0000 (22:46 +0000)]
am 2a69119b: am 9900b499: Reset sniff subrating while in SCO

* commit '2a69119b943c6f19a312da53be39b58b8957ddfe':
  Reset sniff subrating while in SCO

9 years agoam 86c8b9cb: am fafa2e20: Open SCO for held call.
Mallikarjuna GB [Wed, 10 Jun 2015 22:46:33 +0000 (22:46 +0000)]
am 86c8b9cb: am fafa2e20: Open SCO for held call.

* commit '86c8b9cbcfbeed728337cc5ba78c26ca1bd32824':
  Open SCO for held call.

9 years agoam f8bbeb3a: am 8885d6f4: Update call state before opening SCO.
Mallikarjuna GB [Wed, 10 Jun 2015 22:46:32 +0000 (22:46 +0000)]
am f8bbeb3a: am 8885d6f4: Update call state before opening SCO.

* commit 'f8bbeb3a4ad824a96ce637b78b0d8a0ae4bb5d38':
  Update call state before opening SCO.

9 years agoam 2411d6fe: am 616e7417: Handle multi party call states
Mallikarjuna GB [Wed, 10 Jun 2015 22:46:32 +0000 (22:46 +0000)]
am 2411d6fe: am 616e7417: Handle multi party call states

* commit '2411d6fe9319bc8e1103a64c51fbc5097698cc40':
  Handle multi party call states

9 years agoam f24e43b4: am 06c0eca5: Update held call state to connected headset
Mallikarjuna GB [Wed, 10 Jun 2015 22:46:31 +0000 (22:46 +0000)]
am f24e43b4: am 06c0eca5: Update held call state to connected headset

* commit 'f24e43b4ceaaec339aa5dec0f27ce8496a2ede9c':
  Update held call state to connected headset

9 years agoam cdd126c6: am eae61663: Replace malloc/calloc/free with osi_malloc/osi_calloc/osi_free
Pavlin Radoslavov [Wed, 10 Jun 2015 22:46:31 +0000 (22:46 +0000)]
am cdd126c6: am eae61663: Replace malloc/calloc/free with osi_malloc/osi_calloc/osi_free

* commit 'cdd126c6fafb36f5d9ecbbbc813fbe186cbbe2f9':
  Replace malloc/calloc/free with osi_malloc/osi_calloc/osi_free

9 years agoam 576e63d6: am cf8fb474: Fix memory corruption due to BLE multi-adv macro
Sunny Kapdi [Wed, 10 Jun 2015 22:46:30 +0000 (22:46 +0000)]
am 576e63d6: am cf8fb474: Fix memory corruption due to BLE multi-adv macro

* commit '576e63d6f2f51ffef61d3954b4d322e8df55793d':
  Fix memory corruption due to BLE multi-adv macro

9 years agoam fc316f0d: am 38798e1b: HID: Handle closing of uhid driver in case failure
Hemant Gupta [Wed, 10 Jun 2015 22:46:29 +0000 (22:46 +0000)]
am fc316f0d: am 38798e1b: HID: Handle closing of uhid driver in case failure

* commit 'fc316f0dc353cadbd93099ef38e94c9c3013de5f':
  HID: Handle closing of uhid driver in case failure

9 years agoam 2d7b5cf2: am 065a3e20: Reset pairing state to idle only for the current device
Srinu Jella [Wed, 10 Jun 2015 22:46:29 +0000 (22:46 +0000)]
am 2d7b5cf2: am 065a3e20: Reset pairing state to idle only for the current device

* commit '2d7b5cf218764c36d4717b9d7bf0adfd0084bdad':
  Reset pairing state to idle only for the current device

9 years agoam 894b0890: am 0933b407: Moved the OSI alarm_shutdown() operations to alarm_cleanup()
Pavlin Radoslavov [Wed, 10 Jun 2015 22:46:28 +0000 (22:46 +0000)]
am 894b0890: am 0933b407: Moved the OSI alarm_shutdown() operations to alarm_cleanup()

* commit '894b08900dc0e42d244b44491503c0d1a8192f12':
  Moved the OSI alarm_shutdown() operations to alarm_cleanup()

9 years agoam 99f9feef: am 5febd64b: Disable the OSI allocation tracker.
Pavlin Radoslavov [Wed, 10 Jun 2015 22:46:27 +0000 (22:46 +0000)]
am 99f9feef: am 5febd64b: Disable the OSI allocation tracker.

* commit '99f9feef49ffe432daa763e7f873efd5ce199a0d':
  Disable the OSI allocation tracker.

9 years agoam d6805c7a: am 8fb547c7: Handle pairing timeout during remote name request
Srinu Jella [Wed, 10 Jun 2015 22:46:27 +0000 (22:46 +0000)]
am d6805c7a: am 8fb547c7: Handle pairing timeout during remote name request

* commit 'd6805c7ad2c2029d84d629ec60f14fe7aa0f0325':
  Handle pairing timeout during remote name request

9 years agoam fa68cb73: am 73022dcd: Reduce GATT log verbosity
Andre Eisenbach [Wed, 10 Jun 2015 22:46:26 +0000 (22:46 +0000)]
am fa68cb73: am 73022dcd: Reduce GATT log verbosity

* commit 'fa68cb732cea947a07f241e48b3bd3203e885414':
  Reduce GATT log verbosity

9 years agoam 20e3de7f: am 3c67f057: Avoid null pointer exception for invalid L2CAP channels
Srinu Jella [Wed, 10 Jun 2015 22:46:25 +0000 (22:46 +0000)]
am 20e3de7f: am 3c67f057: Avoid null pointer exception for invalid L2CAP channels

* commit '20e3de7ff438a1ee6823ea631d8d8ee8847d5dae':
  Avoid null pointer exception for invalid L2CAP channels

9 years agoam b02e9ded: am 7dac79e3: (-s ours) Add missing clean_up step for the OSI module.
Pavlin Radoslavov [Wed, 10 Jun 2015 22:46:25 +0000 (22:46 +0000)]
am b02e9ded: am 7dac79e3: (-s ours) Add missing clean_up step for the OSI module.

* commit 'b02e9ded73640c21d190feda7f8ae4799884ccc4':
  Add missing clean_up step for the OSI module.

9 years agoam c1c02ce5: Fix compile error in bta_ag_sco.c
Andre Eisenbach [Wed, 10 Jun 2015 22:42:02 +0000 (22:42 +0000)]
am c1c02ce5: Fix compile error in bta_ag_sco.c

* commit 'c1c02ce58f8513ab1c6ab3010be4867c22b3b5c6':
  Fix compile error in bta_ag_sco.c

9 years agoam 8f4fb27a: (-s ours) Create listen SCO for HS1 if HS2 disconnects during SCO xfer
Mallikarjuna GB [Wed, 10 Jun 2015 22:42:02 +0000 (22:42 +0000)]
am 8f4fb27a: (-s ours) Create listen SCO for HS1 if HS2 disconnects during SCO xfer

* commit '8f4fb27a66a83cc65eb7923b6912d0aaba279a8b':
  Create listen SCO for HS1 if HS2 disconnects during SCO xfer

9 years agoam 39b9f827: Don\'t open SCO on state change for multi party call on DUT.
Mallikarjuna GB [Wed, 10 Jun 2015 22:36:04 +0000 (22:36 +0000)]
am 39b9f827: Don\'t open SCO on state change for multi party call on DUT.

* commit '39b9f827e1f9f0599070928465f84b69c4d5dfc0':
  Don't open SCO on state change for multi party call on DUT.

9 years agoam 9900b499: Reset sniff subrating while in SCO
Mallikarjuna GB [Wed, 10 Jun 2015 22:36:04 +0000 (22:36 +0000)]
am 9900b499: Reset sniff subrating while in SCO

* commit '9900b49968297aa15872a9b7ef3a258ecf48cf1b':
  Reset sniff subrating while in SCO

9 years agoam fafa2e20: Open SCO for held call.
Mallikarjuna GB [Wed, 10 Jun 2015 22:36:03 +0000 (22:36 +0000)]
am fafa2e20: Open SCO for held call.

* commit 'fafa2e20a8b56ab8320adebce2c6dc93d01801c5':
  Open SCO for held call.

9 years agoam 8885d6f4: Update call state before opening SCO.
Mallikarjuna GB [Wed, 10 Jun 2015 22:36:02 +0000 (22:36 +0000)]
am 8885d6f4: Update call state before opening SCO.

* commit '8885d6f4ea0aca5e97a5f405434d4494c5e41b85':
  Update call state before opening SCO.

9 years agoam 616e7417: Handle multi party call states
Mallikarjuna GB [Wed, 10 Jun 2015 22:36:01 +0000 (22:36 +0000)]
am 616e7417: Handle multi party call states

* commit '616e7417c9520db24adf20b7c0aaf967ce6e106d':
  Handle multi party call states

9 years agoam 06c0eca5: Update held call state to connected headset
Mallikarjuna GB [Wed, 10 Jun 2015 22:35:59 +0000 (22:35 +0000)]
am 06c0eca5: Update held call state to connected headset

* commit '06c0eca504910115020b86676fae60bb171b7a47':
  Update held call state to connected headset