├── .clang-format ├── audio ├── Android.mk ├── audio_hw.c └── audio_policy_configuration.xml ├── gatekeeper ├── Android.mk ├── SoftGateKeeper.h ├── SoftGateKeeperDevice.cpp ├── SoftGateKeeperDevice.h └── module.cpp ├── gralloc ├── Android.mk ├── gralloc.cpp ├── gralloc_drm.h ├── gralloc_gbm.cpp └── gralloc_gbm_priv.h ├── health ├── Android.bp ├── android.hardware.health@2.0-service.waydroid.rc └── health_service.cpp ├── hwcomposer ├── Android.bp ├── WaydroidClipboard.cpp ├── WaydroidClipboard.h ├── WaydroidWindow.cpp ├── WaydroidWindow.h ├── egl-tools.cpp ├── egl-tools.h ├── extension.cpp ├── extension.h ├── gralloc_handler.cpp ├── gralloc_handler.h ├── hwcomposer.cpp ├── hwcomposer.h ├── modes │ ├── closed.cpp │ ├── closed.h │ ├── full-ui.cpp │ ├── full-ui.h │ ├── multi-window.cpp │ ├── multi-window.h │ ├── single-window.cpp │ ├── single-window.h │ ├── waydroid_mode.cpp │ ├── waydroid_mode.h │ └── waydroid_mode_impl.h ├── wayland-android.xml ├── wayland-hwc.cpp └── wayland-hwc.h ├── interfaces ├── Android.bp ├── clipboard │ └── 1.0 │ │ ├── Android.bp │ │ └── IWaydroidClipboard.hal ├── display │ ├── 1.0 │ │ ├── Android.bp │ │ └── IWaydroidDisplay.hal │ ├── 1.1 │ │ ├── Android.bp │ │ └── IWaydroidDisplay.hal │ └── 1.2 │ │ ├── Android.bp │ │ └── IWaydroidDisplay.hal ├── task │ └── 1.0 │ │ ├── Android.bp │ │ ├── IWaydroidTask.hal │ │ └── default │ │ ├── Android.bp │ │ ├── WaydroidTask.cpp │ │ ├── WaydroidTask.h │ │ ├── binder-interfaces │ │ ├── IActivityTaskManager.cpp │ │ ├── IPlatform.cpp │ │ └── include │ │ │ ├── android │ │ │ └── app │ │ │ │ ├── BnActivityTaskManager.h │ │ │ │ ├── BpActivityTaskManager.h │ │ │ │ └── IActivityTaskManager.h │ │ │ └── lineageos │ │ │ └── waydroid │ │ │ ├── BnPlatform.h │ │ │ ├── BpPlatform.h │ │ │ └── IPlatform.h │ │ ├── service.cpp │ │ └── vendor.waydroid.task@1.0-service.rc ├── update-makefiles.sh └── window │ ├── 1.0 │ ├── Android.bp │ └── IWaydroidWindow.hal │ ├── 1.1 │ ├── Android.bp │ └── IWaydroidWindow.hal │ └── 1.2 │ ├── Android.bp │ └── IWaydroidWindow.hal ├── lights ├── Android.bp ├── Light.cpp ├── Light.h ├── android.hardware.light@2.0-service.waydroid.rc └── service.cpp ├── memtrack ├── Android.bp └── memtrack.c ├── power ├── Android.bp ├── Power.cpp ├── Power.h ├── android.hardware.power@1.0-service.waydroid.rc └── service.cpp ├── sensors ├── Android.bp ├── Sensors.cpp ├── Sensors.h ├── android.hardware.sensors@1.0-service.waydroid.rc └── service.cpp └── vibrator ├── Android.bp ├── Vibrator.cpp ├── Vibrator.h ├── android.hardware.vibrator@1.0-service.waydroid.rc └── service.cpp /.clang-format: -------------------------------------------------------------------------------- 1 | ../../build/soong/scripts/system-clang-format -------------------------------------------------------------------------------- /audio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/audio/Android.mk -------------------------------------------------------------------------------- /audio/audio_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/audio/audio_hw.c -------------------------------------------------------------------------------- /audio/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/audio/audio_policy_configuration.xml -------------------------------------------------------------------------------- /gatekeeper/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/gatekeeper/Android.mk -------------------------------------------------------------------------------- /gatekeeper/SoftGateKeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/gatekeeper/SoftGateKeeper.h -------------------------------------------------------------------------------- /gatekeeper/SoftGateKeeperDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/gatekeeper/SoftGateKeeperDevice.cpp -------------------------------------------------------------------------------- /gatekeeper/SoftGateKeeperDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/gatekeeper/SoftGateKeeperDevice.h -------------------------------------------------------------------------------- /gatekeeper/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/gatekeeper/module.cpp -------------------------------------------------------------------------------- /gralloc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/gralloc/Android.mk -------------------------------------------------------------------------------- /gralloc/gralloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/gralloc/gralloc.cpp -------------------------------------------------------------------------------- /gralloc/gralloc_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/gralloc/gralloc_drm.h -------------------------------------------------------------------------------- /gralloc/gralloc_gbm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/gralloc/gralloc_gbm.cpp -------------------------------------------------------------------------------- /gralloc/gralloc_gbm_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/gralloc/gralloc_gbm_priv.h -------------------------------------------------------------------------------- /health/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/health/Android.bp -------------------------------------------------------------------------------- /health/android.hardware.health@2.0-service.waydroid.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/health/android.hardware.health@2.0-service.waydroid.rc -------------------------------------------------------------------------------- /health/health_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/health/health_service.cpp -------------------------------------------------------------------------------- /hwcomposer/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/Android.bp -------------------------------------------------------------------------------- /hwcomposer/WaydroidClipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/WaydroidClipboard.cpp -------------------------------------------------------------------------------- /hwcomposer/WaydroidClipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/WaydroidClipboard.h -------------------------------------------------------------------------------- /hwcomposer/WaydroidWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/WaydroidWindow.cpp -------------------------------------------------------------------------------- /hwcomposer/WaydroidWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/WaydroidWindow.h -------------------------------------------------------------------------------- /hwcomposer/egl-tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/egl-tools.cpp -------------------------------------------------------------------------------- /hwcomposer/egl-tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/egl-tools.h -------------------------------------------------------------------------------- /hwcomposer/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/extension.cpp -------------------------------------------------------------------------------- /hwcomposer/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/extension.h -------------------------------------------------------------------------------- /hwcomposer/gralloc_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/gralloc_handler.cpp -------------------------------------------------------------------------------- /hwcomposer/gralloc_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/gralloc_handler.h -------------------------------------------------------------------------------- /hwcomposer/hwcomposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/hwcomposer.cpp -------------------------------------------------------------------------------- /hwcomposer/hwcomposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/hwcomposer.h -------------------------------------------------------------------------------- /hwcomposer/modes/closed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/modes/closed.cpp -------------------------------------------------------------------------------- /hwcomposer/modes/closed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/modes/closed.h -------------------------------------------------------------------------------- /hwcomposer/modes/full-ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/modes/full-ui.cpp -------------------------------------------------------------------------------- /hwcomposer/modes/full-ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/modes/full-ui.h -------------------------------------------------------------------------------- /hwcomposer/modes/multi-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/modes/multi-window.cpp -------------------------------------------------------------------------------- /hwcomposer/modes/multi-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/modes/multi-window.h -------------------------------------------------------------------------------- /hwcomposer/modes/single-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/modes/single-window.cpp -------------------------------------------------------------------------------- /hwcomposer/modes/single-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/modes/single-window.h -------------------------------------------------------------------------------- /hwcomposer/modes/waydroid_mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/modes/waydroid_mode.cpp -------------------------------------------------------------------------------- /hwcomposer/modes/waydroid_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/modes/waydroid_mode.h -------------------------------------------------------------------------------- /hwcomposer/modes/waydroid_mode_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/modes/waydroid_mode_impl.h -------------------------------------------------------------------------------- /hwcomposer/wayland-android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/wayland-android.xml -------------------------------------------------------------------------------- /hwcomposer/wayland-hwc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/wayland-hwc.cpp -------------------------------------------------------------------------------- /hwcomposer/wayland-hwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/hwcomposer/wayland-hwc.h -------------------------------------------------------------------------------- /interfaces/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/Android.bp -------------------------------------------------------------------------------- /interfaces/clipboard/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/clipboard/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/clipboard/1.0/IWaydroidClipboard.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/clipboard/1.0/IWaydroidClipboard.hal -------------------------------------------------------------------------------- /interfaces/display/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/display/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/display/1.0/IWaydroidDisplay.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/display/1.0/IWaydroidDisplay.hal -------------------------------------------------------------------------------- /interfaces/display/1.1/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/display/1.1/Android.bp -------------------------------------------------------------------------------- /interfaces/display/1.1/IWaydroidDisplay.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/display/1.1/IWaydroidDisplay.hal -------------------------------------------------------------------------------- /interfaces/display/1.2/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/display/1.2/Android.bp -------------------------------------------------------------------------------- /interfaces/display/1.2/IWaydroidDisplay.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/display/1.2/IWaydroidDisplay.hal -------------------------------------------------------------------------------- /interfaces/task/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/task/1.0/IWaydroidTask.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/IWaydroidTask.hal -------------------------------------------------------------------------------- /interfaces/task/1.0/default/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/Android.bp -------------------------------------------------------------------------------- /interfaces/task/1.0/default/WaydroidTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/WaydroidTask.cpp -------------------------------------------------------------------------------- /interfaces/task/1.0/default/WaydroidTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/WaydroidTask.h -------------------------------------------------------------------------------- /interfaces/task/1.0/default/binder-interfaces/IActivityTaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/binder-interfaces/IActivityTaskManager.cpp -------------------------------------------------------------------------------- /interfaces/task/1.0/default/binder-interfaces/IPlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/binder-interfaces/IPlatform.cpp -------------------------------------------------------------------------------- /interfaces/task/1.0/default/binder-interfaces/include/android/app/BnActivityTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/binder-interfaces/include/android/app/BnActivityTaskManager.h -------------------------------------------------------------------------------- /interfaces/task/1.0/default/binder-interfaces/include/android/app/BpActivityTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/binder-interfaces/include/android/app/BpActivityTaskManager.h -------------------------------------------------------------------------------- /interfaces/task/1.0/default/binder-interfaces/include/android/app/IActivityTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/binder-interfaces/include/android/app/IActivityTaskManager.h -------------------------------------------------------------------------------- /interfaces/task/1.0/default/binder-interfaces/include/lineageos/waydroid/BnPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/binder-interfaces/include/lineageos/waydroid/BnPlatform.h -------------------------------------------------------------------------------- /interfaces/task/1.0/default/binder-interfaces/include/lineageos/waydroid/BpPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/binder-interfaces/include/lineageos/waydroid/BpPlatform.h -------------------------------------------------------------------------------- /interfaces/task/1.0/default/binder-interfaces/include/lineageos/waydroid/IPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/binder-interfaces/include/lineageos/waydroid/IPlatform.h -------------------------------------------------------------------------------- /interfaces/task/1.0/default/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/service.cpp -------------------------------------------------------------------------------- /interfaces/task/1.0/default/vendor.waydroid.task@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/task/1.0/default/vendor.waydroid.task@1.0-service.rc -------------------------------------------------------------------------------- /interfaces/update-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/update-makefiles.sh -------------------------------------------------------------------------------- /interfaces/window/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/window/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/window/1.0/IWaydroidWindow.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/window/1.0/IWaydroidWindow.hal -------------------------------------------------------------------------------- /interfaces/window/1.1/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/window/1.1/Android.bp -------------------------------------------------------------------------------- /interfaces/window/1.1/IWaydroidWindow.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/window/1.1/IWaydroidWindow.hal -------------------------------------------------------------------------------- /interfaces/window/1.2/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/window/1.2/Android.bp -------------------------------------------------------------------------------- /interfaces/window/1.2/IWaydroidWindow.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/interfaces/window/1.2/IWaydroidWindow.hal -------------------------------------------------------------------------------- /lights/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/lights/Android.bp -------------------------------------------------------------------------------- /lights/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/lights/Light.cpp -------------------------------------------------------------------------------- /lights/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/lights/Light.h -------------------------------------------------------------------------------- /lights/android.hardware.light@2.0-service.waydroid.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/lights/android.hardware.light@2.0-service.waydroid.rc -------------------------------------------------------------------------------- /lights/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/lights/service.cpp -------------------------------------------------------------------------------- /memtrack/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/memtrack/Android.bp -------------------------------------------------------------------------------- /memtrack/memtrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/memtrack/memtrack.c -------------------------------------------------------------------------------- /power/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/power/Android.bp -------------------------------------------------------------------------------- /power/Power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/power/Power.cpp -------------------------------------------------------------------------------- /power/Power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/power/Power.h -------------------------------------------------------------------------------- /power/android.hardware.power@1.0-service.waydroid.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/power/android.hardware.power@1.0-service.waydroid.rc -------------------------------------------------------------------------------- /power/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/power/service.cpp -------------------------------------------------------------------------------- /sensors/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/sensors/Android.bp -------------------------------------------------------------------------------- /sensors/Sensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/sensors/Sensors.cpp -------------------------------------------------------------------------------- /sensors/Sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/sensors/Sensors.h -------------------------------------------------------------------------------- /sensors/android.hardware.sensors@1.0-service.waydroid.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/sensors/android.hardware.sensors@1.0-service.waydroid.rc -------------------------------------------------------------------------------- /sensors/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/sensors/service.cpp -------------------------------------------------------------------------------- /vibrator/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/vibrator/Android.bp -------------------------------------------------------------------------------- /vibrator/Vibrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/vibrator/Vibrator.cpp -------------------------------------------------------------------------------- /vibrator/Vibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/vibrator/Vibrator.h -------------------------------------------------------------------------------- /vibrator/android.hardware.vibrator@1.0-service.waydroid.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/vibrator/android.hardware.vibrator@1.0-service.waydroid.rc -------------------------------------------------------------------------------- /vibrator/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waydroid/android_hardware_waydroid/HEAD/vibrator/service.cpp --------------------------------------------------------------------------------