Skip to content
Snippets Groups Projects
  1. Feb 24, 2016
  2. Feb 23, 2016
  3. Feb 19, 2016
  4. Feb 18, 2016
  5. Feb 17, 2016
  6. Feb 16, 2016
  7. Feb 15, 2016
    • Pavlin Radoslavov's avatar
      Fix compilation warnings/errors on fugu · ec58659c
      Pavlin Radoslavov authored
      Fix compilation warnings/errors on fugu about unused
      variables.
      
      Change-Id: Ib68097122f27c631ab36b71a6815d4e1f3b60558
      ec58659c
    • Pavlin Radoslavov's avatar
      Fix C/C++ compiler generated warnings · c76a2bbb
      Pavlin Radoslavov authored
       * Remove unused functions: -Wno-unused-function
       * Fix logical operations that are missing parentheses:
         -Wno-logical-not-parentheses, -Wno-parentheses
       * Add missing braces in initializers: -Wno-missing-braces
       * Remove unused variables: -Wno-unused-variable
       * Fix printf()-like formatting issues: -Wno-format
       * Avoid using unitialized variables:
         -Wno-maybe-uninitialized, -Wno-uninitialized
       * Fix a bug inside bta_gattc_get_gatt_db_impl()
         when the processed GATT DB attribute type is unknown.
       * Fix warnings about missing field initializers:
         -Wno-missing-field-initializers
       * Re-implement macro COMPILE_ASSERT(COND) to fix a compilation warning:
         -Wno-non-literal-null-conversion
       * Fix sign mismatch comparison warnings:
         -Wno-sign-compare
       * Fix warnings related to enum conversion:
         -Wno-enum-conversion
       * Fix warnings related to incompatible pointer types:
         -Wno-incompatible-pointer-types
       * Fix warnings related to enum conversion:
         -Wno-enum-conversion
      
      Bug: 26879229
      Change-Id: I522931fe156aeab23ae841051a9e25ceab00b1c2
      c76a2bbb
  8. Feb 13, 2016
    • Jakub Pawlowski's avatar
      service: Add services removed/added handlers · 06ac5095
      Jakub Pawlowski authored
      Change-Id: Ida3f232b4e77bfb95dec78ea4af7677c9c12b411
      06ac5095
    • Pavlin Radoslavov's avatar
      Cleanup C and C++ compiler flags · bd60bcca
      Pavlin Radoslavov authored
      Cleanup the setting of C and C++ compiler flags:
       * (Almost) all compiler flags are set uniformly
         in the system/bt/Android.mk file.
       * Enable by default breaking the compilation if there is a
         compilation warning: -Werror
       * Enable most compilation warnings: -Wall -Wextra
       * Renamed Android.mk related flags:
         - bdroid_C_INCLUDES -> bluetooth_C_INCLUDES
         - bdroid_CFLAGS -> bluetooth_CFLAGS
       * Introduce variables for C-only and C++ only compiler:
         - bluetooth_CFLAGS: common C and C++ compiler flags
         - bluetooth_CONLYFLAGS: C only compiler flags
         - bluetooth_CPPFLAGS: C++ only compiler flags
       * Disable warnings for existing issues - to be removed as issues are
         resolved
       * Add a workaround for libchrome and -DNDEBUG usage.
      
      Bug: 26879229
      Change-Id: Ie7595965ca0c8ead0e95e983e76c327e7891b2c3
      bd60bcca
  9. Feb 12, 2016
  10. Feb 11, 2016
    • Ajay Panicker's avatar
      Create backup for bt_config.conf · adc882fb
      Ajay Panicker authored
      Move current config file to a backup when a new config file is
      saved. This backup can be used in case there is an error loading
      the current config file.
      
      Change-Id: Icc210c457dc71a72fc2e82ff72c91207b25deaf1
      adc882fb
Loading