OSDN Git Service

android-x86/system-bt.git
7 years agoHID: Prevent crash by Cancelling SDP during cleanup am: 8ed9a77792 am: 378900c9aa
Hemant Gupta [Wed, 18 Jan 2017 20:46:01 +0000 (20:46 +0000)]
HID: Prevent crash by Cancelling SDP during cleanup am: 8ed9a77792 am: 378900c9aa
am: a6332e3d1c

Change-Id: I7485e243515a334053ada10d01d2dbf7f59729ba

7 years agoHID: Prevent crash by Cancelling SDP during cleanup am: 8ed9a77792
Hemant Gupta [Wed, 18 Jan 2017 20:18:04 +0000 (20:18 +0000)]
HID: Prevent crash by Cancelling SDP during cleanup am: 8ed9a77792
am: 378900c9aa

Change-Id: Ibfb0232678d95aa0dc362a56914bfb2c6257a2c4

7 years agoHID: Prevent crash by Cancelling SDP during cleanup
Hemant Gupta [Wed, 18 Jan 2017 20:16:04 +0000 (20:16 +0000)]
HID: Prevent crash by Cancelling SDP during cleanup
am: 8ed9a77792

Change-Id: I6020ab9443f3e674511ef88116fcaa0ea9a727ba

7 years agoHID: Prevent crash by Cancelling SDP during cleanup
Hemant Gupta [Fri, 9 Dec 2016 17:40:10 +0000 (23:10 +0530)]
HID: Prevent crash by Cancelling SDP during cleanup

Usecase:
1) User tried to connect to HID Device.
2) SDP is internally performed by DUT. SDP is at stage,
   where L2CAP connection, configuration is done, and data
   fetch is ongoing.
3) BT was turned off from UI.
Observation:
BT crashed while accessing memory that was freed already because BT turn off,
caused ACL disconnection, leading to L2CAP disconnect indication in stack,
leading to sdp disconnect indication.
backtrace:
    #00 pc 000f98d4  /system/lib/hw/bluetooth.default.so (SDP_FindServiceUUIDInDb+51)
    #01 pc 000b5dbd  /system/lib/hw/bluetooth.default.so (hidh_search_callback+0x40)
    #02 pc 000f770b  /system/lib/hw/bluetooth.default.so (sdp_disconnect_ind+0x5e)
    #03 pc 00107a5f  /system/lib/hw/bluetooth.default.so (l2c_csm_execute+3446)
    #04 pc 001080e7  /system/lib/hw/bluetooth.default.so (l2c_link_hci_disc_comp+122)
    #05 pc 000fda81  /system/lib/hw/bluetooth.default.so (btu_hcif_process_event+588)
    #06 pc 000fec81  /system/lib/hw/bluetooth.default.so (btu_hci_msg_ready+96)
    #07 pc 00118191  /system/lib/hw/bluetooth.default.so
    #08 pc 0011917f  /system/lib/hw/bluetooth.default.so
    #09 pc 00041993  /system/lib/libc.so (_ZL15__pthread_startPv+30)
    #10 pc 000192b5  /system/lib/libc.so (__start_thread+6)
Register Dump
pid: 15740, tid: 15761, name: bluedroid wake/  >>> com.android.bluetooth <<<
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x20000
    r0 815a5cac  r1 a1a2f370  r2 00000000  r3 85d4e541
    r4 00020000  r5 815a5cac  r6 a1a2f370  r7 b6d3ae40
    r8 00000000  r9 b6d3ae40  sl 00000002  fp 00000013
    ip a228c050  sp a1a2f360  lr a20eddc1  pc a21318d4  cpsr 200e0030
Rootcause
The above scenario could lead to crash we see as below, as bta_hh_cb.p_disc_db would be freed
during HID Host cleanup, and would be accessed via callback received for parsing SDP results on
SDP completion.
Fix:
While cleaning up HID Host, Cancel SDP search before freeing and resetting bta_hh_cb.p_disc_db.
This will internally send L2CAP disconnect request for SDP, and would lead to sdp_disconnect_cfm
call when L2CAP is disconnected, and would lead to call of hidh_search_callback with result code
as SDP_CANCEL.

Change-Id: I63563cb23dd69946f87a70cafa203c44edc9b753

7 years agoAdd conditional unit testing for codecs that might not be on the device am: 4decac33f...
Pavlin Radoslavov [Wed, 18 Jan 2017 02:15:38 +0000 (02:15 +0000)]
Add conditional unit testing for codecs that might not be on the device am: 4decac33f6 am: 2ead0be903
am: d96800a6ea

Change-Id: I1c104eedf13f3494fe842a7eeb868fd1458d504a

7 years agoAdd conditional unit testing for codecs that might not be on the device am: 4decac33f6
Pavlin Radoslavov [Wed, 18 Jan 2017 02:13:06 +0000 (02:13 +0000)]
Add conditional unit testing for codecs that might not be on the device am: 4decac33f6
am: 2ead0be903

Change-Id: Ibb8af4cac0986f2b387be06c585a7593400e0e2d

7 years agoAdd conditional unit testing for codecs that might not be on the device
Pavlin Radoslavov [Wed, 18 Jan 2017 02:10:34 +0000 (02:10 +0000)]
Add conditional unit testing for codecs that might not be on the device
am: 4decac33f6

Change-Id: I9ac89df8897be966206020361ec3b4681aeb9681

7 years agoAdd conditional unit testing for codecs that might not be on the device
Pavlin Radoslavov [Sat, 14 Jan 2017 01:42:01 +0000 (17:42 -0800)]
Add conditional unit testing for codecs that might not be on the device

Codecs like aptX and aptX-HD are supported on the device if the
corresponding shared library is installed.
Fix the unit tests to conditionally test for aptX/aptX-HD.

Also, update function descriptions in files a2dp_sbc.h and
a2dp_vendor_ldac.h .

Test: Running unit tests on a device that doesn't have aptX/aptX-HD
Change-Id: I44dc275ca6e0cb5438ee6ed0b6213213d56592f4

7 years agoFix a NULL-pointer access before check in connect_int am: 9b2e40df05 am: 73af061500
liuchao [Tue, 17 Jan 2017 20:16:47 +0000 (20:16 +0000)]
Fix a NULL-pointer access before check in connect_int am: 9b2e40df05 am: 73af061500
am: 8715da786f

Change-Id: I3990037ff24066a73a5d099aa536d975b3ad67f0

7 years agoFix a NULL-pointer access before check in connect_int am: 9b2e40df05
liuchao [Tue, 17 Jan 2017 20:13:40 +0000 (20:13 +0000)]
Fix a NULL-pointer access before check in connect_int am: 9b2e40df05
am: 73af061500

Change-Id: I596eaaa5f8e1919e75f4332534f480057465cb54

7 years agoFix a NULL-pointer access before check in connect_int
liuchao [Tue, 17 Jan 2017 20:11:25 +0000 (20:11 +0000)]
Fix a NULL-pointer access before check in connect_int
am: 9b2e40df05

Change-Id: I3217f206ef56d73dbac01b19eeb123b6cfb68870

7 years agoMerge "Reduced the log verbosity level for aptX/aptX-HD data packets" am: 5256f1feea...
Pavlin Radoslavov [Tue, 17 Jan 2017 20:05:35 +0000 (20:05 +0000)]
Merge "Reduced the log verbosity level for aptX/aptX-HD data packets" am: 5256f1feea am: 76efc23846
am: 4c2297d8a5

Change-Id: I15ef2a513cc62641385cc896ed3c838dc6ade56f

7 years agoDon't allow GATT and GAP service override am: 8a06ff5ce2 am: 3b672538ba
Jakub Pawlowski [Tue, 17 Jan 2017 20:05:24 +0000 (20:05 +0000)]
Don't allow GATT and GAP service override am: 8a06ff5ce2 am: 3b672538ba
am: d0a3eef2b2

Change-Id: I1df3f183f85736c8357a7debc5bc1eaeca71c647

7 years agoFix a NULL-pointer access before check in connect_int
liuchao [Wed, 4 Jan 2017 05:49:36 +0000 (13:49 +0800)]
Fix a NULL-pointer access before check in connect_int

This fixes a potential NULL-pointer access in case cb is returned NULL

Test: mm -j 8
Change-Id: Iaf7aa0ba736b5cb161811726b4aaea7f1ab7e5b3

7 years agoMerge "Reduced the log verbosity level for aptX/aptX-HD data packets" am: 5256f1feea
Pavlin Radoslavov [Tue, 17 Jan 2017 19:56:59 +0000 (19:56 +0000)]
Merge "Reduced the log verbosity level for aptX/aptX-HD data packets" am: 5256f1feea
am: 76efc23846

Change-Id: I38cf5bdaff222dbd7328f04bf82da3c5cc056ab6

7 years agoDon't allow GATT and GAP service override am: 8a06ff5ce2
Jakub Pawlowski [Tue, 17 Jan 2017 19:56:48 +0000 (19:56 +0000)]
Don't allow GATT and GAP service override am: 8a06ff5ce2
am: 3b672538ba

Change-Id: I235d976c6e1e1ab80fdc3a457f5ea776281a309a

7 years agoMerge "Reduced the log verbosity level for aptX/aptX-HD data packets"
Pavlin Radoslavov [Tue, 17 Jan 2017 19:50:19 +0000 (19:50 +0000)]
Merge "Reduced the log verbosity level for aptX/aptX-HD data packets"
am: 5256f1feea

Change-Id: I762b7e65001740fec55515f7121f5217c4dbb455

7 years agoDon't allow GATT and GAP service override
Jakub Pawlowski [Tue, 17 Jan 2017 19:50:04 +0000 (19:50 +0000)]
Don't allow GATT and GAP service override
am: 8a06ff5ce2

Change-Id: I9eaff8a251269b3f073845c80284fefde35822b4

7 years agoMerge "Reduced the log verbosity level for aptX/aptX-HD data packets"
Treehugger Robot [Tue, 17 Jan 2017 19:42:53 +0000 (19:42 +0000)]
Merge "Reduced the log verbosity level for aptX/aptX-HD data packets"

7 years agoFix NPE when discovering invalid GATT datatbase am: 8957fdca4f am: 1637dc7990
Jakub Pawlowski [Tue, 17 Jan 2017 19:13:11 +0000 (19:13 +0000)]
Fix NPE when discovering invalid GATT datatbase am: 8957fdca4f am: 1637dc7990
am: 6d4e092a72

Change-Id: I181a93afd2d2c0c34b82392dacfea4cb83e99b10

7 years agoFix NPE when discovering invalid GATT datatbase am: 8957fdca4f
Jakub Pawlowski [Tue, 17 Jan 2017 19:06:07 +0000 (19:06 +0000)]
Fix NPE when discovering invalid GATT datatbase am: 8957fdca4f
am: 1637dc7990

Change-Id: I1e9710d05b0276106c0fd19604db2b9db5cde257

7 years agoFix NPE when discovering invalid GATT datatbase
Jakub Pawlowski [Tue, 17 Jan 2017 18:46:10 +0000 (18:46 +0000)]
Fix NPE when discovering invalid GATT datatbase
am: 8957fdca4f

Change-Id: I1e196651928314494a696e5a3ef126272dd3208a

7 years agoDon't allow GATT and GAP service override
Jakub Pawlowski [Mon, 16 Jan 2017 12:53:14 +0000 (04:53 -0800)]
Don't allow GATT and GAP service override

Those services are automatically added by the stack, and overriding them
results in invalid GATT database being created.

Bug: 34280184
Test: Manual test
Change-Id: Ie6a09e9d606e40066bef6f6a2c934eacd17bf53b

7 years agoFix NPE when discovering invalid GATT datatbase
Jakub Pawlowski [Mon, 16 Jan 2017 12:05:57 +0000 (04:05 -0800)]
Fix NPE when discovering invalid GATT datatbase

When doing a discovery of invalid GATT database, where two services are
added with same start handle, characteristics are added to the first
one, where descriptors are added to the later. This cause NPE when
adding descriptor.

Bug: 34280184
Test: manual test
Change-Id: I27619098df33a641cb089b82cf4d4ffd3c6e6aea

7 years agoReduced the log verbosity level for aptX/aptX-HD data packets
Pavlin Radoslavov [Sat, 14 Jan 2017 07:24:25 +0000 (23:24 -0800)]
Reduced the log verbosity level for aptX/aptX-HD data packets

Also, fixed a typo in a log message.

Test: A2DP streaming to headset, and capturing "adb logcat" output
Change-Id: I525d78e3ebde334857261f0cbd256a7f6a946e96

7 years agoFix for Extended Scan parameter length am: 0c86aad3f5 am: a41493f386
Reddy Praveen [Tue, 17 Jan 2017 10:22:30 +0000 (10:22 +0000)]
Fix for Extended Scan parameter length am: 0c86aad3f5 am: a41493f386
am: 138f53616f

Change-Id: I6c9167129e103691ebd91246710262ba4f8fc217

7 years agoFix for Extended Scan parameter length am: 0c86aad3f5
Reddy Praveen [Tue, 17 Jan 2017 10:07:58 +0000 (10:07 +0000)]
Fix for Extended Scan parameter length am: 0c86aad3f5
am: a41493f386

Change-Id: Id57ec583ff0a29a5dfdaf2aee449fd7e6d5414c6

7 years agoFix for Extended Scan parameter length
Reddy Praveen [Tue, 17 Jan 2017 09:54:28 +0000 (09:54 +0000)]
Fix for Extended Scan parameter length
am: 0c86aad3f5

Change-Id: I561461bd6b119912ef53dfbca923f2aac9b3fad7

7 years agoFix for Extended Scan parameter length
Reddy Praveen [Fri, 13 Jan 2017 11:27:37 +0000 (16:57 +0530)]
Fix for Extended Scan parameter length

With BT 5.0 extended advertisement scan parameter length
is configured with correct value.

Test: BT scan from settings menu
Change-Id: I749099282a9f2cf190d4f9576649aefe88564809
Signed-off-by: Reddy Praveen <praveen.reddy@intel.com>
7 years agoRemoved the feeding_init call from tA2DP_ENCODER_INTERFACE am: f8e2670d12 am: a7d87c4c12
Pavlin Radoslavov [Fri, 13 Jan 2017 18:54:42 +0000 (18:54 +0000)]
Removed the feeding_init call from tA2DP_ENCODER_INTERFACE am: f8e2670d12 am: a7d87c4c12
am: e27fa8f9c5

Change-Id: Ib8349800ccc12bab110bce960ac82ac9ed6eacca

7 years agoRemoved the feeding_init call from tA2DP_ENCODER_INTERFACE am: f8e2670d12
Pavlin Radoslavov [Fri, 13 Jan 2017 18:46:18 +0000 (18:46 +0000)]
Removed the feeding_init call from tA2DP_ENCODER_INTERFACE am: f8e2670d12
am: a7d87c4c12

Change-Id: I4b28e24b3fad9248028bae23038a12d8c4b67ce8

7 years agoRemoved the feeding_init call from tA2DP_ENCODER_INTERFACE
Pavlin Radoslavov [Fri, 13 Jan 2017 18:44:20 +0000 (18:44 +0000)]
Removed the feeding_init call from tA2DP_ENCODER_INTERFACE
am: f8e2670d12

Change-Id: I716d1c077b089345c08ca76ccf2823ac1ff6d8e3

7 years agoRemoved the feeding_init call from tA2DP_ENCODER_INTERFACE
Pavlin Radoslavov [Wed, 11 Jan 2017 18:35:15 +0000 (10:35 -0800)]
Removed the feeding_init call from tA2DP_ENCODER_INTERFACE

The feeding_init call is not used anymore - it has been superseded
by the newer A2dpCodecs.setCodecAudioConfig() mechanism.

Also, moved aptx_init_framing_params() and aptx_hd_init_framing_params()
calls to the corresponding encoder_update functions.

Test: A2DP streaming to Bluetooth headsets
Change-Id: I52f42b4701d04fe2ddb8f115bb9cd57fe38e2b38

7 years agoIntegrated A2DP LDAC support with the LDAC encoder library am: d556b752bd am: 95c78b6741
Pavlin Radoslavov [Tue, 10 Jan 2017 23:13:40 +0000 (23:13 +0000)]
Integrated A2DP LDAC support with the LDAC encoder library am: d556b752bd am: 95c78b6741
am: 05419ef063

Change-Id: I1035cf961a9b873a31b7b57ed9d73a2c9a925292

7 years agoIntegrated A2DP LDAC support with the LDAC encoder library am: d556b752bd
Pavlin Radoslavov [Tue, 10 Jan 2017 23:10:49 +0000 (23:10 +0000)]
Integrated A2DP LDAC support with the LDAC encoder library am: d556b752bd
am: 95c78b6741

Change-Id: I7c1f807c2ede174d4682e2acf6ced396b1b19356

7 years agoIntegrated A2DP LDAC support with the LDAC encoder library
Pavlin Radoslavov [Tue, 10 Jan 2017 23:03:39 +0000 (23:03 +0000)]
Integrated A2DP LDAC support with the LDAC encoder library
am: d556b752bd

Change-Id: Ib0d6db87f7f30ac7544bf2e5764b7dda0d1a24f9

7 years agoIntegrated A2DP LDAC support with the LDAC encoder library
Pavlin Radoslavov [Tue, 10 Jan 2017 21:18:14 +0000 (13:18 -0800)]
Integrated A2DP LDAC support with the LDAC encoder library

* Add compile-time dependency on the libldacBT_enc module
  in external/libldac
* Use the <ldacBT.h> header and remove local typedefs and defines

Also, fix an initialization issue of the LDAC handler
inside file a2dp_vendor_ldac_encoder.cc

Bug: 30958229
Test: A2DP streaming to LDAC headset
Change-Id: I3757230c9901509daab36f2b2018faa05490171d

7 years agoMerge "Serialize stack shutdown, state change callback and cleanup" into cw-f-dev...
Jacky Cheung [Tue, 10 Jan 2017 18:17:29 +0000 (18:17 +0000)]
Merge "Serialize stack shutdown, state change callback and cleanup" into cw-f-dev am: 718b632f2b
am: be79f23c84

Change-Id: I87fcab132f151aa565bd5b87e3a6fa82eecfe76f

7 years agoSerialize stack shutdown, state change callback and cleanup am: 352b8e89ea
Gurpreet Ghai [Tue, 10 Jan 2017 18:17:19 +0000 (18:17 +0000)]
Serialize stack shutdown, state change callback and cleanup am: 352b8e89ea
am: 05cdcb6d42

Change-Id: I78728060b8d27aa4c69c0416683a09b0723d8002

7 years agoMerge "Serialize stack shutdown, state change callback and cleanup" into cw-f-dev...
Jacky Cheung [Tue, 10 Jan 2017 18:13:23 +0000 (18:13 +0000)]
Merge "Serialize stack shutdown, state change callback and cleanup" into cw-f-dev am: 718b632f2b
am: a3542f96b1

Change-Id: I1cb120a7512d5236c87fd62cdfca9304da39bc0a

7 years agoSerialize stack shutdown, state change callback and cleanup am: 352b8e89ea
Gurpreet Ghai [Tue, 10 Jan 2017 18:13:13 +0000 (18:13 +0000)]
Serialize stack shutdown, state change callback and cleanup am: 352b8e89ea
am: 4f92ffdeb1

Change-Id: Ic82b0b08b456e9f2a0627217274ca4ac2445247d

7 years agoMerge "Serialize stack shutdown, state change callback and cleanup" into cw-f-dev
Jacky Cheung [Tue, 10 Jan 2017 18:12:21 +0000 (18:12 +0000)]
Merge "Serialize stack shutdown, state change callback and cleanup" into cw-f-dev
am: 718b632f2b

Change-Id: I59546b88705ca7a9748bc3a41ad0a382caada0fe

7 years agoSerialize stack shutdown, state change callback and cleanup
Gurpreet Ghai [Tue, 10 Jan 2017 18:12:20 +0000 (18:12 +0000)]
Serialize stack shutdown, state change callback and cleanup
am: 352b8e89ea

Change-Id: Ie1262e4b3604a5e04910201d330419873a656f2f

7 years agoMerge "Serialize stack shutdown, state change callback and cleanup" into cw-f-dev
Jacky Cheung [Tue, 10 Jan 2017 18:12:20 +0000 (18:12 +0000)]
Merge "Serialize stack shutdown, state change callback and cleanup" into cw-f-dev
am: 718b632f2b

Change-Id: I1ce4066cb7598d38cd2963ff2a9800a8f9f5debe

7 years agoSerialize stack shutdown, state change callback and cleanup
Gurpreet Ghai [Tue, 10 Jan 2017 18:12:19 +0000 (18:12 +0000)]
Serialize stack shutdown, state change callback and cleanup
am: 352b8e89ea

Change-Id: Icace606e4c596074c4a120678d65511c78f683c4

7 years agoresolve merge conflicts of de24e22d to nyc-mr2-dev-plus-aosp
Andre Eisenbach [Tue, 10 Jan 2017 18:08:39 +0000 (10:08 -0800)]
resolve merge conflicts of de24e22d to nyc-mr2-dev-plus-aosp

Change-Id: Ib7eb3e9c4c53f799acbbcad97d4b45112c6f9197

7 years agoMerge "Serialize stack shutdown, state change callback and cleanup" into cw-f-dev
Jacky Cheung [Tue, 10 Jan 2017 18:02:33 +0000 (18:02 +0000)]
Merge "Serialize stack shutdown, state change callback and cleanup" into cw-f-dev

7 years agoMerge "Add "connecting" and "disconnecting" states to HID Device." am: 35ae4adf21...
Ivan Podogov [Tue, 10 Jan 2017 11:35:28 +0000 (11:35 +0000)]
Merge "Add "connecting" and "disconnecting" states to HID Device." am: 35ae4adf21 am: 0d5910c685
am: 9ce53e3c70

Change-Id: Ica1af5baf090e9128a80c97a6d009820953854eb

7 years agoMerge "Add "connecting" and "disconnecting" states to HID Device." am: 35ae4adf21
Ivan Podogov [Tue, 10 Jan 2017 11:30:28 +0000 (11:30 +0000)]
Merge "Add "connecting" and "disconnecting" states to HID Device." am: 35ae4adf21
am: 0d5910c685

Change-Id: Ibd5437b69871d1dbf5159152fa488892523510a6

7 years agoMerge "Add "connecting" and "disconnecting" states to HID Device."
Ivan Podogov [Tue, 10 Jan 2017 11:24:27 +0000 (11:24 +0000)]
Merge "Add "connecting" and "disconnecting" states to HID Device."
am: 35ae4adf21

Change-Id: I5eef753ca30b57848ebeaeb3b73aa134cb6b6970

7 years agoMerge "Add "connecting" and "disconnecting" states to HID Device."
Treehugger Robot [Tue, 10 Jan 2017 11:20:24 +0000 (11:20 +0000)]
Merge "Add "connecting" and "disconnecting" states to HID Device."

7 years agoresolve merge conflicts of 316589aa to nyc-mr1-dev-plus-aosp
Andre Eisenbach [Tue, 10 Jan 2017 03:22:29 +0000 (03:22 +0000)]
resolve merge conflicts of 316589aa to nyc-mr1-dev-plus-aosp
am: b71b859306

Change-Id: Iebee392c2d8dc41105262e1d8adcef7938c4f72a

7 years agoresolve merge conflicts of 316589aa to nyc-mr2-dev
Andre Eisenbach [Tue, 10 Jan 2017 02:21:38 +0000 (18:21 -0800)]
resolve merge conflicts of 316589aa to nyc-mr2-dev

Change-Id: I1a5e1b3d09b5bc5d13eda31fd633146536dbd7ee

7 years agoresolve merge conflicts of 316589aa to nyc-mr1-dev-plus-aosp
Andre Eisenbach [Tue, 10 Jan 2017 02:06:48 +0000 (18:06 -0800)]
resolve merge conflicts of 316589aa to nyc-mr1-dev-plus-aosp

Change-Id: I5758549f4c2e1f26d02ff087e240698b13343bbe

7 years agoRemove position dependent lookup tables in AT command parser
Andre Eisenbach [Mon, 9 Jan 2017 23:05:41 +0000 (23:05 +0000)]
Remove position dependent lookup tables in AT command parser
am: 8d3cf5988a

Change-Id: I0a690f1538c49fbed743ccf324d240dbb8c927c8

7 years agoBatch scan simplification am: eab3651db4 am: 58dde764e0
Jakub Pawlowski [Mon, 9 Jan 2017 20:50:27 +0000 (20:50 +0000)]
Batch scan simplification am: eab3651db4 am: 58dde764e0
am: 3fe9184096

Change-Id: I22104d277238b0cca7329a69b72738991c5f45bd

7 years agoLE filters without custom data types am: 2ffd8da9af am: 4d227fc750
Jakub Pawlowski [Mon, 9 Jan 2017 20:50:21 +0000 (20:50 +0000)]
LE filters without custom data types am: 2ffd8da9af am: 4d227fc750
am: 5384ec917f

Change-Id: Ic3605f6aa38df15be2a5c9d2435b57b93e8f8441

7 years agoGet rid of BTA_DmBleCfgFilterCondition am: ad6afdf96c am: fbb8d006a6
Jakub Pawlowski [Mon, 9 Jan 2017 20:50:15 +0000 (20:50 +0000)]
Get rid of BTA_DmBleCfgFilterCondition am: ad6afdf96c am: fbb8d006a6
am: 211dffb6cd

Change-Id: Ie02e7db8376dbd14cb01a1616e5c2fb27c60a634

7 years agoSimplify LE scan filter memory management am: ae2aabef09 am: fad449ee33
Jakub Pawlowski [Mon, 9 Jan 2017 20:50:09 +0000 (20:50 +0000)]
Simplify LE scan filter memory management am: ae2aabef09 am: fad449ee33
am: 98cbf845cd

Change-Id: I666dacbffa395db5a8826cdedd3aeef3624de4bb

7 years agoRemove reduntant re-schedule am: 2c1522e2b8 am: cbaeb50923
Jakub Pawlowski [Mon, 9 Jan 2017 20:50:03 +0000 (20:50 +0000)]
Remove reduntant re-schedule am: 2c1522e2b8 am: cbaeb50923
am: 521ca6b32c

Change-Id: I031b2944b8a0cffb357dc9b08b401057af8d3388

7 years agoUse callbacks for LE filter functions (BTM layer) am: 1febda9706 am: 8cf65e4d0e
Jakub Pawlowski [Mon, 9 Jan 2017 20:49:51 +0000 (20:49 +0000)]
Use callbacks for LE filter functions (BTM layer) am: 1febda9706 am: 8cf65e4d0e
am: 4b6f2d94b5

Change-Id: I6c86f2e3fed5e0239b600b0a9f7ac4d02469a3bb

7 years agoBatch scan simplification am: eab3651db4
Jakub Pawlowski [Mon, 9 Jan 2017 20:45:21 +0000 (20:45 +0000)]
Batch scan simplification am: eab3651db4
am: 58dde764e0

Change-Id: Idffdb211a7084a21789f1c2bbad4c634809be842

7 years agoLE filters without custom data types am: 2ffd8da9af
Jakub Pawlowski [Mon, 9 Jan 2017 20:45:15 +0000 (20:45 +0000)]
LE filters without custom data types am: 2ffd8da9af
am: 4d227fc750

Change-Id: Ib7f7de32290dd8efc4b97185324011135ec53229

7 years agoGet rid of BTA_DmBleCfgFilterCondition am: ad6afdf96c
Jakub Pawlowski [Mon, 9 Jan 2017 20:45:10 +0000 (20:45 +0000)]
Get rid of BTA_DmBleCfgFilterCondition am: ad6afdf96c
am: fbb8d006a6

Change-Id: I1b4b2e071a0101ed7db0eecd7fc9c457a6093f2d

7 years agoSimplify LE scan filter memory management am: ae2aabef09
Jakub Pawlowski [Mon, 9 Jan 2017 20:45:05 +0000 (20:45 +0000)]
Simplify LE scan filter memory management am: ae2aabef09
am: fad449ee33

Change-Id: I447b69cd3bc0ee2ad9e4d33473831b9ed2013ae8

7 years agoRemove reduntant re-schedule am: 2c1522e2b8
Jakub Pawlowski [Mon, 9 Jan 2017 20:45:01 +0000 (20:45 +0000)]
Remove reduntant re-schedule am: 2c1522e2b8
am: cbaeb50923

Change-Id: I62f949769fd07a9adabe3ba2b83ab3d2b12ae1d5

7 years agoUse callbacks for LE filter functions (BTM layer) am: 1febda9706
Jakub Pawlowski [Mon, 9 Jan 2017 20:44:48 +0000 (20:44 +0000)]
Use callbacks for LE filter functions (BTM layer) am: 1febda9706
am: 8cf65e4d0e

Change-Id: I24828a1130fc54d0d72845751b5725b72db5c30c

7 years agoBatch scan simplification
Jakub Pawlowski [Mon, 9 Jan 2017 20:40:07 +0000 (20:40 +0000)]
Batch scan simplification
am: eab3651db4

Change-Id: Iab508f656ceaaa726edff3e04945146a3d4762d4

7 years agoLE filters without custom data types
Jakub Pawlowski [Mon, 9 Jan 2017 20:40:04 +0000 (20:40 +0000)]
LE filters without custom data types
am: 2ffd8da9af

Change-Id: I787c473f2c5839674fbf0ab3c646f210d15ab717

7 years agoGet rid of BTA_DmBleCfgFilterCondition
Jakub Pawlowski [Mon, 9 Jan 2017 20:40:00 +0000 (20:40 +0000)]
Get rid of BTA_DmBleCfgFilterCondition
am: ad6afdf96c

Change-Id: I9d5464bc0199759ef83cac4a2b7b6a94635053a4

7 years agoSimplify LE scan filter memory management
Jakub Pawlowski [Mon, 9 Jan 2017 20:39:56 +0000 (20:39 +0000)]
Simplify LE scan filter memory management
am: ae2aabef09

Change-Id: I654160519dd7b03fa11d58a6ce6e5dbc24dd5d88

7 years agoRemove reduntant re-schedule
Jakub Pawlowski [Mon, 9 Jan 2017 20:39:52 +0000 (20:39 +0000)]
Remove reduntant re-schedule
am: 2c1522e2b8

Change-Id: Id7a3ed5b5fe1460e14450616bad422b39f8cbc9d

7 years agoUse callbacks for LE filter functions (BTM layer)
Jakub Pawlowski [Mon, 9 Jan 2017 20:39:38 +0000 (20:39 +0000)]
Use callbacks for LE filter functions (BTM layer)
am: 1febda9706

Change-Id: I218fb9df79b2b4df4d8a1774273a951c63042772

7 years agoBatch scan simplification
Jakub Pawlowski [Thu, 5 Jan 2017 09:34:53 +0000 (01:34 -0800)]
Batch scan simplification

Bug: 30622771
Test: sl4a UniqueFilteringTest BleOpportunisticScanTest
Change-Id: I0e6ca8ed3d7d98057277a5187e684246f410d978

7 years agoLE filters without custom data types
Jakub Pawlowski [Wed, 4 Jan 2017 15:58:37 +0000 (07:58 -0800)]
LE filters without custom data types

Bug: 30622771
Test: sl4a FilteringTest
Change-Id: Ib4edfa40038ca59c37ae1dfc763f0cac563177d7

7 years agoGet rid of BTA_DmBleCfgFilterCondition
Jakub Pawlowski [Wed, 4 Jan 2017 14:50:46 +0000 (06:50 -0800)]
Get rid of BTA_DmBleCfgFilterCondition

Bug: 30622771
Test: sl4a FilteringTest
Change-Id: I93b4f1275b9437a20cf1429d184dbefa79451986

7 years agoSimplify LE scan filter memory management
Jakub Pawlowski [Wed, 4 Jan 2017 09:05:24 +0000 (01:05 -0800)]
Simplify LE scan filter memory management

Bug: 30622771
Test: sl4a FilteringTest
Change-Id: I58f3c335e84b4d7ee578c321109125084826efa0

7 years agoRemove reduntant re-schedule
Jakub Pawlowski [Tue, 3 Jan 2017 14:36:19 +0000 (06:36 -0800)]
Remove reduntant re-schedule

Calls to BleScannerInterface are already made using jni thread.
Also all this calls do is scheduling to BTA thread, so remove
unnecessary call to do_in_jni_thread

Bug: 30622771
Test: sl4a FilteringTest
Change-Id: I2c799dde720f9bc694fecacd6d3959b96c1b9ba8

7 years agoUse callbacks for LE filter functions (BTM layer)
Jakub Pawlowski [Fri, 30 Dec 2016 14:38:29 +0000 (06:38 -0800)]
Use callbacks for LE filter functions (BTM layer)

This patch use callbacks, instead of custom event queue when scheduling
LE filter VSC.

Bug: 30622771
Test: sl4a FilteringTest
Change-Id: I64ac4392883c647d1e500c257c31a8d3e740a0a8

7 years agoFix bad connectable advertising constant am: 35675d0e73 am: 4c8198cfd9
Jakub Pawlowski [Mon, 9 Jan 2017 19:04:43 +0000 (19:04 +0000)]
Fix bad connectable advertising constant am: 35675d0e73 am: 4c8198cfd9
am: ac9b92e94c

Change-Id: I0d13f0ec6178d01888f7a670fee0cb97945af8f9

7 years agoZero is a valid advertiser id am: daa8a99913 am: 17a68bf7df
Jakub Pawlowski [Mon, 9 Jan 2017 19:04:31 +0000 (19:04 +0000)]
Zero is a valid advertiser id am: daa8a99913 am: 17a68bf7df
am: 4fd4f4bf44

Change-Id: I13808ce243bb7a9cbe26458b028d5fd45c1e4966

7 years agoRemove redundant dependency on libpower am: 4302060551 am: 51a1abd14d
Jack He [Mon, 9 Jan 2017 19:04:16 +0000 (19:04 +0000)]
Remove redundant dependency on libpower am: 4302060551 am: 51a1abd14d
am: 0e3111ee54

Change-Id: Iac2ccf3436df454c39fbba12aad2c1e6a80715fb

7 years agoFix bad connectable advertising constant am: 35675d0e73
Jakub Pawlowski [Mon, 9 Jan 2017 18:59:38 +0000 (18:59 +0000)]
Fix bad connectable advertising constant am: 35675d0e73
am: 4c8198cfd9

Change-Id: Idb7596057acbad7fb30e1719261cfe17e29440c0

7 years agoZero is a valid advertiser id am: daa8a99913
Jakub Pawlowski [Mon, 9 Jan 2017 18:59:25 +0000 (18:59 +0000)]
Zero is a valid advertiser id am: daa8a99913
am: 17a68bf7df

Change-Id: I90e4ce2f7e0005de2d0bd5541883f3587f2a96dc

7 years agoRemove redundant dependency on libpower am: 4302060551
Jack He [Mon, 9 Jan 2017 18:59:12 +0000 (18:59 +0000)]
Remove redundant dependency on libpower am: 4302060551
am: 51a1abd14d

Change-Id: Id809a19186f9f31964fa4d66f19535413b1fd3bf

7 years agoFix bad connectable advertising constant
Jakub Pawlowski [Mon, 9 Jan 2017 18:55:46 +0000 (18:55 +0000)]
Fix bad connectable advertising constant
am: 35675d0e73

Change-Id: I02605b0df8e6d46db0ca2f81e6c5e172337614a7

7 years agoZero is a valid advertiser id
Jakub Pawlowski [Mon, 9 Jan 2017 18:55:32 +0000 (18:55 +0000)]
Zero is a valid advertiser id
am: daa8a99913

Change-Id: I05b1d504381932959877a0c856b1bb7ef82292a1

7 years agoRemove redundant dependency on libpower
Jack He [Mon, 9 Jan 2017 18:55:12 +0000 (18:55 +0000)]
Remove redundant dependency on libpower
am: 4302060551

Change-Id: Ie78d7e79d9f1b9043eceae84865b4eb5274fd4db

7 years agoFix bad connectable advertising constant
Jakub Pawlowski [Mon, 9 Jan 2017 15:05:00 +0000 (07:05 -0800)]
Fix bad connectable advertising constant

Test: start connectable advertising using bluetoothtbd
Change-Id: Ie7e42570748d43a27bc7691378aee85ab1565a05

7 years agoZero is a valid advertiser id
Jakub Pawlowski [Mon, 9 Jan 2017 14:53:36 +0000 (06:53 -0800)]
Zero is a valid advertiser id

Test: start advertising using bluetooth-cli
Change-Id: Iead31c5e73a70850c6a209b6bbbeaeb792202608

7 years agoRemove redundant dependency on libpower
Jack He [Wed, 4 Jan 2017 19:46:00 +0000 (11:46 -0800)]
Remove redundant dependency on libpower

* libpower dependency was introduced in change
  I1e8d49b087eff6301373e1e90e8d868f15847c34
* It is never used in any part of the system/bt stack and therefore
  should be removed from the shared library dependency list

Bug: 34079981
Test: code compilation, no user visible effect
Change-Id: Ic8e3ad0c369839fb9ced446695c72fdf0ffad1ca

7 years agoFix Heart Rate Service example am: e3051fec06 am: fb326faf46
Jakub Pawlowski [Mon, 9 Jan 2017 18:25:40 +0000 (18:25 +0000)]
Fix Heart Rate Service example am: e3051fec06 am: fb326faf46
am: 1107b6bcfb

Change-Id: I6f31aa96f2c5f4dd0dc6ce408910a37c30ceadae

7 years agoFix Heart Rate Service example am: e3051fec06
Jakub Pawlowski [Mon, 9 Jan 2017 18:21:08 +0000 (18:21 +0000)]
Fix Heart Rate Service example am: e3051fec06
am: fb326faf46

Change-Id: I8367ba5e2238fddd5636a3b0ae7c896db9a0f1ff

7 years agoFix Heart Rate Service example
Jakub Pawlowski [Mon, 9 Jan 2017 18:16:14 +0000 (18:16 +0000)]
Fix Heart Rate Service example
am: e3051fec06

Change-Id: I8ff34d31fe85899a0657ce437f4bf614a24528c8

7 years agoAdd "connecting" and "disconnecting" states to HID Device.
Ivan Podogov [Thu, 5 Jan 2017 12:20:26 +0000 (12:20 +0000)]
Add "connecting" and "disconnecting" states to HID Device.

Currently the upper java layers have full support for all four
connection states, yet the lower stack only reports about
"connected" and "disconnected".
This patch adds sending "connecting" and "disconnecting" messages
when bta_hd_connect_act and bta_hd_disconnect_act finish
successfully.

Test: build, run, logcat
Change-Id: I00f9f414daa3854198ff9eee19e9c98a2e18f603

7 years agoFix Heart Rate Service example
Jakub Pawlowski [Mon, 9 Jan 2017 14:47:39 +0000 (06:47 -0800)]
Fix Heart Rate Service example

Name must be appended at end, not beginning.

Test: run bt-example-hr-server --advertise
Change-Id: I70909e0bfc94521c396908d0dcb78cf4439a7e63

7 years agoRemove unnecessary cutils dependency am: 19e3d703b2 am: c1f7859ee3
Jakub Pawlowski [Mon, 9 Jan 2017 09:50:20 +0000 (09:50 +0000)]
Remove unnecessary cutils dependency am: 19e3d703b2 am: c1f7859ee3
am: bd28671393

Change-Id: I3025633a3a98e606b0acc5181a92b1212f3a7a06

7 years agoRemove unnecessary cutils dependency am: 19e3d703b2
Jakub Pawlowski [Mon, 9 Jan 2017 09:45:51 +0000 (09:45 +0000)]
Remove unnecessary cutils dependency am: 19e3d703b2
am: c1f7859ee3

Change-Id: Iea809f705c041d384b514df146f510e21c185a0a

7 years agoRemove unnecessary cutils dependency
Jakub Pawlowski [Mon, 9 Jan 2017 09:40:50 +0000 (09:40 +0000)]
Remove unnecessary cutils dependency
am: 19e3d703b2

Change-Id: Id0b5878395183458449cb0c89b515659b5e86133

7 years agoUpdate Linux BUILD.gn files am: a9743d8101 am: 5c4642ab77
Jakub Pawlowski [Mon, 9 Jan 2017 08:25:15 +0000 (08:25 +0000)]
Update Linux BUILD.gn files am: a9743d8101 am: 5c4642ab77
am: 083fa89268

Change-Id: I2cea219acdcb4ae9299fa3e6482327d4df17385d