Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
audio/ | 06-Sep-2024 | - | 1,050 | 835 | ||
audio_remote_submix/ | 06-Sep-2024 | - | 2,109 | 1,662 | ||
camera/ | 06-Sep-2024 | - | 16,915 | 11,161 | ||
consumerir/ | 06-Sep-2024 | - | 157 | 114 | ||
fingerprint/ | 06-Sep-2024 | - | 158 | 118 | ||
gralloc/ | 06-Sep-2024 | - | 1,094 | 721 | ||
hwcomposer/ | 06-Sep-2024 | - | 181 | 128 | ||
input/evdev/ | 06-Sep-2024 | - | 2,747 | 1,777 | ||
local_time/ | 06-Sep-2024 | - | 158 | 114 | ||
nfc/ | 06-Sep-2024 | - | 108 | 75 | ||
nfc-nci/ | 06-Sep-2024 | - | 159 | 113 | ||
power/ | 06-Sep-2024 | - | 104 | 75 | ||
radio/ | 06-Sep-2024 | - | 1,098 | 903 | ||
sensors/ | 06-Sep-2024 | - | 13,087 | 9,860 | ||
soundtrigger/ | 06-Sep-2024 | - | 965 | 796 | ||
thermal/ | 06-Sep-2024 | - | 221 | 172 | ||
tv_input/ | 06-Sep-2024 | - | 179 | 127 | ||
usbaudio/ | 06-Sep-2024 | - | 2,155 | 1,658 | ||
usbcamera/ | 06-Sep-2024 | - | 1,914 | 1,230 | ||
vibrator/ | 06-Sep-2024 | - | 238 | 170 | ||
vr/ | 06-Sep-2024 | - | 86 | 57 | ||
Android.mk | D | 06-Sep-2024 | 124 | 6 | 5 | |
README.android | D | 06-Sep-2024 | 878 | 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 /vendor/lib/hw/ and have a well defined naming 8convention: 9 10 /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.product.board>.so 11 /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.board.platform>.so 12 /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.arch>.so 13 /vendor/lib/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