f82351ffc8f01463256372b3b7f3cd443f1a1ef4 |
|
07-Feb-2017 |
Sanket Agarwal <sanketa@google.com> |
AVRCT CT: uint8_t is used for 2byte field This causes the upper stack to report incorrect entries if the value is large Bug: b/34682784 Test: Check with a list > 4 items large and packet size big enough to exceed uint8_t size Change-Id: I73233a74378d9c091e33f204780a9492505d99b4
/system/bt/stack/avrc/avrc_pars_ct.cc
|
911d1ae03efec2d54c3b1b605589d790d1745488 |
|
29-Nov-2016 |
Myles Watson <mylesgw@google.com> |
Apply clang-format to the rest of the tree find * | grep "\.[ch]" | xargs clang-format --style=file -i Test: mma -j32 Change-Id: I6fcc9862bb7bc07c2a367ca58fef2b3cd27a6f05
/system/bt/stack/avrc/avrc_pars_ct.cc
|
9ca07091a1f07ea201cee0504dab6a1d7073d429 |
|
29-Nov-2016 |
Myles Watson <mylesgw@google.com> |
Reformat long comments before clang-format Test: mma -j32 Change-Id: I86a2a4af9dcd22d675ca1f764bb2c9623d63edcc
/system/bt/stack/avrc/avrc_pars_ct.cc
|
ee96a3c60fca590d38025925c072d264e06493c4 |
|
23-Nov-2016 |
Myles Watson <mylesgw@google.com> |
Fix asterisks in block quotes Remove double asterisks from block quotes. git grep -lP '^[*][*]' | xargs sed 's/^[*][*]/ \*/' -i Fix asterisk line lengths git grep -l '^[ /][*]\{79,\}[*/]' | \ xargs sed -i s,"^\([ /]\)[*]\([*]\{78\}\)[*]*\([*/]\)","\1\2\3", Test: mma -j32 Change-Id: Ie3fd375ac2f804cb0f53bf1314a005e85973b3d7
/system/bt/stack/avrc/avrc_pars_ct.cc
|
133f0b6503b6adced17795c7a31dd17e084507e1 |
|
15-Nov-2016 |
Marie Janssen <jamuraa@google.com> |
btif: Remove AVRC_CTRL_INCLUDED ifdefs AVRCP controller side support is always included now. Test: croot system/bt && mma -j37 Change-Id: I22260b4f123b352f70cbab54a19b5f8f5f171825
/system/bt/stack/avrc/avrc_pars_ct.cc
|
033d5a211b9cf8320a2a3e6ae1505d37807a734e |
|
11-Nov-2016 |
Marie Janssen <jamuraa@google.com> |
AVRCP: unify Get{Element,Item}Attributes response. GetElementAttributes response and GetItemAttributes response share the same format and require the same checks for length. Test: play media on carkit, see media. especially with long items. Bug: 32407250 Bug: 30571638 Change-Id: I8623e7d662f7a39112b7527b6f5ab63c5e32379c
/system/bt/stack/avrc/avrc_pars_ct.cc
|
30c81fa85380a46613498aff26be8a82b6531859 |
|
17-Sep-2016 |
Sanket Agarwal <sanketa@google.com> |
Implement AVRCP SetAddressedPlayer Cmd Bug: b/31554234 Change-Id: I700bc1dc65f9c8c7d1e5e57c568487a53ae9fbf7 (cherry picked from commit 53ffd333c7e6db731a8db2e742dcd29d4416270c)
/system/bt/stack/avrc/avrc_pars_ct.cc
|
8a8111935121fda68dbafd8cfe43173bef947dfd |
|
29-Aug-2016 |
Sanket Agarwal <sanketa@google.com> |
[AVRCP1.6 CT] Add reply status to get_folder_items_callback. It is useful to know what error code the get_folder_items_cmd gets back with since it can help the UI decide if to keep fetching more. For ex. if the return code is out of range then the UI does not need to keep fetching anymore. This is useful for folders where we do not know the size before hand (Media Player List or Now Playing List). Bug: b/31253501 Change-Id: I0f43167d00bcf2e1e320be086fd9cacd163906a1 (cherry picked from commit e3a032a89ac2f20e96808fe2bded2c42fa3afb14)
/system/bt/stack/avrc/avrc_pars_ct.cc
|
d7ffd64accbd50a27289a388856e56244ccbb5da |
|
27-Oct-2016 |
Myles Watson <mylesgw@google.com> |
Remove deprecated UNUSED macro (5/5) Include osi.h for UNUSED_ATTR. Test: mma -j32 Change-Id: I43260669dc1f54639e46cc9620093d727ee86276
/system/bt/stack/avrc/avrc_pars_ct.cc
|
d35a648d39710bbc5ac59f8add85166455af5af7 |
|
27-Oct-2016 |
Myles Watson <mylesgw@google.com> |
Remove deprecated UNUSED macro (1/5) Generated automatically with coccinelle /* This rule matches functions with arguments * that have an UNUSED(arg) in the body. */ @r1@ identifier arg; identifier fn; type t; parameter list[n] P; @@ fn(P, const t arg) { ... UNUSED(arg); ... } /* This rule removes the UNUSED line, and adds * UNUSED_ATTR to the parameter list. */ @depends on r1@ identifier r1.arg; identifier r1.fn; type r1.t; parameter list[r1.n] r1.P; typedef UNUSED_ATTR; @@ fn(P, - const t arg + UNUSED_ATTR GETRIDOFTHISCOMMA, const t arg ) { ... -UNUSED(arg); ... } Test: mma -j32 Change-Id: Idcaadd688d669d484e557becd050e69454508f3c
/system/bt/stack/avrc/avrc_pars_ct.cc
|
b2a292b5d8df2f359c38b0787bc01181225a9bc9 |
|
15-Oct-2016 |
Pavlin Radoslavov <pavlin@google.com> |
Renamed most C files to C++: *.c to *.cc Also: - Fixed C++ related compilation errors. - Added missing 'extern "C"' guards in some of the header files. - Added missing LOCAL_CPP_EXTENSION to Android.mk files. - Added-back btif/src/btif_mce.cc and bta/mce/bta_mce_* to btif/Android.mk and bta/Android.mk respectively. - Fixed the alphabetical ordering of the *.cc files in some of the Android.mk files. - Added missing Copyright header to "osi/include/list.h" - Updated "osi/src/wakelock.cc" to use C++ std::string instead of dynamic allocation of C-style strings. Test: code compilation, unit tests, and A2DP streaming Change-Id: Ia2f7215ed9df32775c701b68fc86b09875b942c7
/system/bt/stack/avrc/avrc_pars_ct.cc
|