Improve adb command related with car properties

1. Add adb command for injecting the continuous events. For example:
adb shell cmd car_service inject-continuous-events 0x11600309 20
inject events for property:0x11600309 with value:20 for 60 sec.
2. Allow "inject-vhal-event", "get-carpropertyconfig",
"get-car-property-value" support both hexadecimal and decimal
propertyId.
3. Improve the output of dumpsys and log for propertyIds
4. Reduce intermediate objects in dump

Bug:178042757
Bug:175129375
Test: adb shell cmd car_service
adb shell cmd car_service inject-continuous-events 0x11600309 20
adb shell cmd car_service get-carpropertyconfig 0x13400bc0
adb shell cmd car_service get-carpropertyconfig 322964416
atest VehicleHalTest

Change-Id: Ia4908ae52b2fa3201993c482b23a2d20f90f1907
3 files changed
tree: 1e6feae16cd20515c020707a2458f43a30cf314c
  1. car-admin-ui-lib/
  2. car-bugreportd/
  3. car-internal-lib/
  4. car-lib/
  5. car-maps-placeholder/
  6. car-systemtest-lib/
  7. car-test-lib/
  8. car-usb-handler/
  9. car_product/
  10. cpp/
  11. experimental/
  12. FrameworkPackageStubs/
  13. obd2-lib/
  14. packages/
  15. procfs-inspector/
  16. service/
  17. tests/
  18. tools/
  19. user/
  20. vehicle-hal-support-lib/
  21. .clang-format
  22. .gitignore
  23. Android.mk
  24. CleanSpec.mk
  25. CPPLINT.cfg
  26. OWNERS
  27. PREUPLOAD.cfg
  28. README.md
  29. TEST_MAPPING
README.md

Native (C++) code format is required to be compatible with .clang-format file. Run

git clang-format --style=file --extension='h,cpp,cc' HEAD~

Note that clang-format is not desirable for Android java files. Therefore the command line above is limited to specific extensions.