OSDN Git Service

hci: Apply clang-format
authorMyles Watson <mylesgw@google.com>
Mon, 31 Oct 2016 17:53:52 +0000 (10:53 -0700)
committerMyles Watson <mylesgw@google.com>
Mon, 31 Oct 2016 20:51:53 +0000 (13:51 -0700)
commit5ff20a23661695abb1cff6d01d71a8cad4cc7890
tree3435eb9bb70e54742b591a0ab459ea1cc8db8385
parent98397944b8ed1ccfe808c9442e5258dd30e086c6
hci: Apply clang-format

Remove double asterisks:
  cd hci/
  find . | grep "\.cc\|\.h\|\.c" | \
     xargs -I REPLACE sed 's/^[*][*]/ \*/' -i REPLACE

Run clang-format:
  find . | grep "\.cc\|\.h\|\.c" | xargs -I REPLACE \
     clang-format --style=file -i REPLACE

Test: mma -j32
Change-Id: Ie74244127c8a264dd087d199155274d4655ccf65
35 files changed:
hci/include/bt_hci_bdroid.h
hci/include/bt_vendor_lib.h
hci/include/btsnoop.h
hci/include/btsnoop_mem.h
hci/include/buffer_allocator.h
hci/include/hci_audio.h
hci/include/hci_hal.h
hci/include/hci_inject.h
hci/include/hci_layer.h
hci/include/hci_packet_factory.h
hci/include/hci_packet_parser.h
hci/include/low_power_manager.h
hci/include/packet_fragmenter.h
hci/include/userial.h
hci/include/vendor.h
hci/src/btsnoop.cc
hci/src/btsnoop_mem.cc
hci/src/btsnoop_net.cc
hci/src/buffer_allocator.cc
hci/src/hci_audio.cc
hci/src/hci_hal.cc
hci/src/hci_hal_h4.cc
hci/src/hci_hal_mct.cc
hci/src/hci_inject.cc
hci/src/hci_layer.cc
hci/src/hci_packet_factory.cc
hci/src/hci_packet_parser.cc
hci/src/low_power_manager.cc
hci/src/packet_fragmenter.cc
hci/src/vendor.cc
hci/test/hci_hal_h4_test.cc
hci/test/hci_hal_mct_test.cc
hci/test/hci_layer_test.cc
hci/test/low_power_manager_test.cc
hci/test/packet_fragmenter_test.cc