Rename MockedVehicleHal to HidlMockedVehicleHal.

The existing MockedVehicleHal is mocking a HIDL VHAL backend. We
rename it to HidlMockedVehicleHal and add a new AIDL VHAL backend
mock class. This CL keeps the exsiting behavior for all clients
to use the HidlMockedVehicleHal, but we would gradually migate
each client to use AidlMockedVehicleHal.

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

AAOS

Source code for Android Automotive OS.

Structure

car_product/           - AAOS product
car-builtin-lib/       - A helper library for CarService to access hidden
                         framework APIs
car-lib/               - Car API
car-lib-module/        - Car API module
cpp/                   - Native services
experimental/          - Experimental Car API and services
packages/              - Apps and services for cars
service/               - Car service module
service-builint        - Platform builtin component that runs CarService module
tests/                 - Tests and sample apps
tools/                 - Helper scripts

C++

Native (C++) code format is required to be compatible with .clang-format file. The formatter is already integrated to repo tool. To run manually, use:

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.