| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| audio/ | 03-May-2024 | - | 954 | 721 | ||
| audio_remote_submix/ | 03-May-2024 | - | 1,816 | 1,415 | ||
| camera/ | 03-May-2024 | - | 2,169 | 1,472 | ||
| consumerir/ | 03-May-2024 | - | 144 | 88 | ||
| fingerprint/ | 03-May-2024 | - | 148 | 95 | ||
| gralloc/ | 03-May-2024 | - | 1,080 | 703 | ||
| hwcomposer/ | 03-May-2024 | - | 166 | 95 | ||
| input/ | 03-May-2024 | - | 2,790 | 1,783 | ||
| local_time/ | 03-May-2024 | - | 146 | 80 | ||
| nfc/ | 03-May-2024 | - | 99 | 51 | ||
| nfc-nci/ | 03-May-2024 | - | 147 | 86 | ||
| power/ | 03-May-2024 | - | 89 | 47 | ||
| radio/ | 03-May-2024 | - | 1,055 | 842 | ||
| sensors/ | 03-May-2024 | - | 1,102 | 765 | ||
| soundtrigger/ | 03-May-2024 | - | 922 | 744 | ||
| thermal/ | 03-May-2024 | - | 210 | 146 | ||
| tv_input/ | 03-May-2024 | - | 168 | 102 | ||
| usbaudio/ | 03-May-2024 | - | 1,283 | 874 | ||
| usbcamera/ | 03-May-2024 | - | 1,888 | 1,201 | ||
| vehicle/ | 03-May-2024 | - | 647 | 513 | ||
| vibrator/ | 03-May-2024 | - | 168 | 95 | ||
| vr/ | 03-May-2024 | - | 75 | 32 | ||
| Android.mk | D | 03-May-2024 | 263 | 5 | 4 | |
| README.android | D | 03-May-2024 | 883 | 24 | 15 |
README.android
1Default (and possibly architecture dependents) HAL modules go here. 2 3 4libhardware.so eventually should contain *just* the HAL hub 5(hardware.c), everything in it should be rewritten as modules. 6 7Modules are .so in /system/libs/hw/ and have a well defined naming 8convention: 9 10 /system/libs/hw/<*_HARDWARE_MODULE_ID>.<ro.product.board>.so 11 /system/libs/hw/<*_HARDWARE_MODULE_ID>.<ro.board.platform>.so 12 /system/libs/hw/<*_HARDWARE_MODULE_ID>.<ro.arch>.so 13 /system/libs/hw/<*_HARDWARE_MODULE_ID>.default.so 14 15They also have a well defined interface which lives in include/hardware/. 16 17A module can have several variants: "default", "arch" and "board", and they're 18loaded in the "board", "arch" and "default" order. 19The source code for the "board" variant, usually lives under partners/... 20 21The source code for "default" and "arch" would usually 22live under hardware/modules/. 23 24