Android O MR1 IOT Release Smart Display r14 (OIMC.190719.004)
Merge changes from topic "b117561179"

* changes:
  More verbose error for safe_union invalid access.
  safe_union: return error on bad reads
tree: be7564320479e15f1f4b21fc80cd21d142295ef9
  1. build/
  2. c2hal/
  3. docs/
  4. hashing/
  5. host_utils/
  6. scripts/
  7. test/
  8. utils/
  9. .clang-format
  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. generateVts.cpp
  38. HandleType.cpp
  39. HandleType.h
  40. hidl-gen_l.h
  41. hidl-gen_l.ll
  42. hidl-gen_y.yy
  43. HidlTypeAssertion.cpp
  44. HidlTypeAssertion.h
  45. Interface.cpp
  46. Interface.h
  47. Location.cpp
  48. Location.h
  49. main.cpp
  50. MemoryType.cpp
  51. MemoryType.h
  52. Method.cpp
  53. Method.h
  54. MODULE_LICENSE_APACHE2
  55. NamedType.cpp
  56. NamedType.h
  57. NOTICE
  58. OWNERS
  59. PointerType.cpp
  60. PointerType.h
  61. PREUPLOAD.cfg
  62. README.md
  63. Reference.h
  64. RefType.cpp
  65. RefType.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

docs

This tool generates html documentation for hal interfaces.

m hidl-doc && hidl-doc -h