Platform Tools Release 29.0.2 (5738569)
Snap for 5735642 from a2a69bbdd552740335857c44b33fb77017bcd286 to sdk-release

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