Output lints by location in file

Sort lints by their location within the file.

Fix: 134781118
Test: Visual
Change-Id: I5beed3a37e19cd03cffcf3f0f42848ec56ff7b04
5 files changed
tree: 3b4c934b5dee205031ddc2952950389d0dfa80aa
  1. build/
  2. c2hal/
  3. docs/
  4. hashing/
  5. host_utils/
  6. lint/
  7. scripts/
  8. test/
  9. utils/
  10. Android.bp
  11. Annotation.cpp
  12. Annotation.h
  13. ArrayType.cpp
  14. ArrayType.h
  15. AST.cpp
  16. AST.h
  17. CleanSpec.mk
  18. CompoundType.cpp
  19. CompoundType.h
  20. ConstantExpression.cpp
  21. ConstantExpression.h
  22. Coordinator.cpp
  23. Coordinator.h
  24. DeathRecipientType.cpp
  25. DeathRecipientType.h
  26. DocComment.cpp
  27. DocComment.h
  28. EnumType.cpp
  29. EnumType.h
  30. FmqType.cpp
  31. FmqType.h
  32. generateCpp.cpp
  33. generateCppAdapter.cpp
  34. generateCppImpl.cpp
  35. generateDependencies.cpp
  36. generateJava.cpp
  37. generateJavaImpl.cpp
  38. generateVts.cpp
  39. HandleType.cpp
  40. HandleType.h
  41. hidl-gen_l.h
  42. hidl-gen_l.ll
  43. hidl-gen_y.yy
  44. HidlTypeAssertion.cpp
  45. HidlTypeAssertion.h
  46. Interface.cpp
  47. Interface.h
  48. Location.cpp
  49. Location.h
  50. main.cpp
  51. MemoryType.cpp
  52. MemoryType.h
  53. Method.cpp
  54. Method.h
  55. MODULE_LICENSE_APACHE2
  56. NamedType.cpp
  57. NamedType.h
  58. NOTICE
  59. OWNERS
  60. PointerType.cpp
  61. PointerType.h
  62. PREUPLOAD.cfg
  63. README.md
  64. Reference.h
  65. ScalarType.cpp
  66. ScalarType.h
  67. Scope.cpp
  68. Scope.h
  69. StringType.cpp
  70. StringType.h
  71. Type.cpp
  72. Type.h
  73. TypeDef.cpp
  74. TypeDef.h
  75. update-all-google-makefiles.sh
  76. update-makefiles-helper.sh
  77. VectorType.cpp
  78. VectorType.h
README.md

hidl-gen

Full documentation can be found here: https://source.android.com/devices/architecture/hidl/

hidl-gen is a compiler for the HIDL (HAL Interface Design Language) which generates C++ and Java endpoints for RPC mechanisms. The main userspace libraries which this compiler uses can be found at system/libhidl.

1. Build

m hidl-gen

2. Run

Note that options for hidl-gen expected to be invoked by the build system are marked with ‘internal’ in the help menu.

hidl-gen -h

hidl-gen -o output -L c++-impl -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.nfc@1.0

Some defaults for package roots are also provided

hidl-gen -o output -L c++-impl android.hardware.nfc@1.0
hidl-gen -o output -L vts android.hardware.nfc@1.0
hidl-gen -L hash android.hardware.nfc@1.0

Example command for vendor project

hidl-gen -L c++-impl -r vendor.foo:vendor/foo/interfaces vendor.foo.nfc@1.0

See update-makefiles-helper.sh and update-all-google-makefiles.sh for examples of how to generate HIDL makefiles (using the -Landroidbp option).

c2hal

This is a helper tool to convert C headers to valid .hal files.

m c2hal && c2hal -h

docs

This tool generates html documentation for hal interfaces.

m hidl-doc && hidl-doc -h