├── Android.bp ├── Android.mk ├── IFAAService ├── Android.bp ├── AndroidManifest.xml ├── res │ └── values │ │ └── strings.xml └── src │ └── org │ └── ifaa │ └── aidl │ └── manager │ ├── IfaaManagerService.aidl │ └── IfaaService.java ├── aidl ├── Android.mk ├── light │ ├── Android.bp │ ├── Backlight.cpp │ ├── Backlight.h │ ├── LED.cpp │ ├── LED.h │ ├── Lights.cpp │ ├── Lights.h │ ├── Utils.cpp │ ├── Utils.h │ ├── android.hardware.light-service.xiaomi.rc │ ├── android.hardware.light-service.xiaomi.xml │ └── service.cpp └── power-libperfmgr │ ├── Android.mk │ ├── InteractionHandler.cpp │ ├── InteractionHandler.h │ ├── Power.cpp │ ├── Power.h │ ├── PowerExt.cpp │ ├── PowerExt.h │ ├── PowerHintSession.cpp │ ├── PowerHintSession.h │ ├── PowerSessionManager.cpp │ ├── PowerSessionManager.h │ ├── android.hardware.power-service.xiaomi-libperfmgr.rc │ ├── android.hardware.power-service.xiaomi.xml │ └── service.cpp ├── hidl ├── biometrics │ └── fingerprint │ │ ├── .clang-format │ │ ├── Android.bp │ │ ├── BiometricsFingerprint.cpp │ │ ├── BiometricsFingerprint.h │ │ ├── UdfpsExtension.cpp │ │ ├── UdfpsHandler.cpp │ │ ├── android.hardware.biometrics.fingerprint@2.3-service.xiaomi.rc │ │ ├── android.hardware.biometrics.fingerprint@2.3-service.xiaomi.xml │ │ ├── include │ │ ├── UdfpsHandler.h │ │ └── fingerprint.h │ │ └── service.cpp ├── consumerir │ ├── Android.bp │ ├── ConsumerIr.cpp │ ├── ConsumerIr.h │ ├── android.hardware.ir@1.0-service.xiaomi.rc │ ├── android.hardware.ir@1.0-service.xiaomi.xml │ └── service.cpp └── sensors │ ├── 1.0 │ ├── .clang-format │ ├── Android.bp │ ├── Sensors.cpp │ ├── Sensors.h │ ├── convert.cpp │ └── include │ │ └── sensors │ │ └── convert.h │ └── 2.1 │ ├── Android.bp │ ├── HalProxy.cpp │ ├── HalProxyCallback.cpp │ ├── android.hardware.sensors@2.1-service.xiaomi-multihal.rc │ ├── android.hardware.sensors@2.1-service.xiaomi-multihal.xml │ └── service.cpp ├── interfaces ├── Android.bp ├── goodix │ └── hardware │ │ └── biometrics │ │ └── fingerprint │ │ └── 2.1 │ │ ├── Android.bp │ │ ├── IGoodixFingerprintDaemon.hal │ │ └── IGoodixFingerprintDaemonCallback.hal ├── updates-makefiles.sh └── xiaomi │ ├── hardware │ ├── displayfeature │ │ └── 1.0 │ │ │ ├── Android.bp │ │ │ ├── IDisplayFeature.hal │ │ │ ├── IDisplayFeatureCallback.hal │ │ │ └── types.hal │ ├── fingerprintextension │ │ └── 1.0 │ │ │ ├── Android.bp │ │ │ └── IXiaomiFingerprint.hal │ ├── mlipay │ │ ├── 1.0 │ │ │ ├── Android.bp │ │ │ └── IMlipayService.hal │ │ └── 1.1 │ │ │ ├── Android.bp │ │ │ └── IMlipayService.hal │ ├── motor │ │ └── 1.0 │ │ │ ├── Android.bp │ │ │ ├── IMotor.hal │ │ │ ├── IMotorCallback.hal │ │ │ └── types.hal │ ├── mtdservice │ │ ├── 1.0 │ │ │ ├── Android.bp │ │ │ └── IMTService.hal │ │ ├── 1.1 │ │ │ ├── Android.bp │ │ │ └── IMTService.hal │ │ └── 1.2 │ │ │ ├── Android.bp │ │ │ └── IMTService.hal │ └── touchfeature │ │ └── 1.0 │ │ ├── Android.bp │ │ └── ITouchFeature.hal │ └── hw │ └── touchfeature │ └── 1.0 │ ├── Android.bp │ └── ITouchFeature.hal ├── megvii ├── Android.bp └── megvii.c └── sensors ├── .clang-format ├── Android.bp └── udfps_hal.cpp /Android.bp: -------------------------------------------------------------------------------- 1 | soong_namespace { 2 | } 3 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/Android.mk -------------------------------------------------------------------------------- /IFAAService/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/IFAAService/Android.bp -------------------------------------------------------------------------------- /IFAAService/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/IFAAService/AndroidManifest.xml -------------------------------------------------------------------------------- /IFAAService/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/IFAAService/res/values/strings.xml -------------------------------------------------------------------------------- /IFAAService/src/org/ifaa/aidl/manager/IfaaManagerService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/IFAAService/src/org/ifaa/aidl/manager/IfaaManagerService.aidl -------------------------------------------------------------------------------- /IFAAService/src/org/ifaa/aidl/manager/IfaaService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/IFAAService/src/org/ifaa/aidl/manager/IfaaService.java -------------------------------------------------------------------------------- /aidl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/Android.mk -------------------------------------------------------------------------------- /aidl/light/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/Android.bp -------------------------------------------------------------------------------- /aidl/light/Backlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/Backlight.cpp -------------------------------------------------------------------------------- /aidl/light/Backlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/Backlight.h -------------------------------------------------------------------------------- /aidl/light/LED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/LED.cpp -------------------------------------------------------------------------------- /aidl/light/LED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/LED.h -------------------------------------------------------------------------------- /aidl/light/Lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/Lights.cpp -------------------------------------------------------------------------------- /aidl/light/Lights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/Lights.h -------------------------------------------------------------------------------- /aidl/light/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/Utils.cpp -------------------------------------------------------------------------------- /aidl/light/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/Utils.h -------------------------------------------------------------------------------- /aidl/light/android.hardware.light-service.xiaomi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/android.hardware.light-service.xiaomi.rc -------------------------------------------------------------------------------- /aidl/light/android.hardware.light-service.xiaomi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/android.hardware.light-service.xiaomi.xml -------------------------------------------------------------------------------- /aidl/light/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/light/service.cpp -------------------------------------------------------------------------------- /aidl/power-libperfmgr/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/Android.mk -------------------------------------------------------------------------------- /aidl/power-libperfmgr/InteractionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/InteractionHandler.cpp -------------------------------------------------------------------------------- /aidl/power-libperfmgr/InteractionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/InteractionHandler.h -------------------------------------------------------------------------------- /aidl/power-libperfmgr/Power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/Power.cpp -------------------------------------------------------------------------------- /aidl/power-libperfmgr/Power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/Power.h -------------------------------------------------------------------------------- /aidl/power-libperfmgr/PowerExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/PowerExt.cpp -------------------------------------------------------------------------------- /aidl/power-libperfmgr/PowerExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/PowerExt.h -------------------------------------------------------------------------------- /aidl/power-libperfmgr/PowerHintSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/PowerHintSession.cpp -------------------------------------------------------------------------------- /aidl/power-libperfmgr/PowerHintSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/PowerHintSession.h -------------------------------------------------------------------------------- /aidl/power-libperfmgr/PowerSessionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/PowerSessionManager.cpp -------------------------------------------------------------------------------- /aidl/power-libperfmgr/PowerSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/PowerSessionManager.h -------------------------------------------------------------------------------- /aidl/power-libperfmgr/android.hardware.power-service.xiaomi-libperfmgr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/android.hardware.power-service.xiaomi-libperfmgr.rc -------------------------------------------------------------------------------- /aidl/power-libperfmgr/android.hardware.power-service.xiaomi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/android.hardware.power-service.xiaomi.xml -------------------------------------------------------------------------------- /aidl/power-libperfmgr/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/aidl/power-libperfmgr/service.cpp -------------------------------------------------------------------------------- /hidl/biometrics/fingerprint/.clang-format: -------------------------------------------------------------------------------- 1 | ../../../../../build/soong/scripts/system-clang-format -------------------------------------------------------------------------------- /hidl/biometrics/fingerprint/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/biometrics/fingerprint/Android.bp -------------------------------------------------------------------------------- /hidl/biometrics/fingerprint/BiometricsFingerprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/biometrics/fingerprint/BiometricsFingerprint.cpp -------------------------------------------------------------------------------- /hidl/biometrics/fingerprint/BiometricsFingerprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/biometrics/fingerprint/BiometricsFingerprint.h -------------------------------------------------------------------------------- /hidl/biometrics/fingerprint/UdfpsExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/biometrics/fingerprint/UdfpsExtension.cpp -------------------------------------------------------------------------------- /hidl/biometrics/fingerprint/UdfpsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/biometrics/fingerprint/UdfpsHandler.cpp -------------------------------------------------------------------------------- /hidl/biometrics/fingerprint/android.hardware.biometrics.fingerprint@2.3-service.xiaomi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/biometrics/fingerprint/android.hardware.biometrics.fingerprint@2.3-service.xiaomi.rc -------------------------------------------------------------------------------- /hidl/biometrics/fingerprint/android.hardware.biometrics.fingerprint@2.3-service.xiaomi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/biometrics/fingerprint/android.hardware.biometrics.fingerprint@2.3-service.xiaomi.xml -------------------------------------------------------------------------------- /hidl/biometrics/fingerprint/include/UdfpsHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/biometrics/fingerprint/include/UdfpsHandler.h -------------------------------------------------------------------------------- /hidl/biometrics/fingerprint/include/fingerprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/biometrics/fingerprint/include/fingerprint.h -------------------------------------------------------------------------------- /hidl/biometrics/fingerprint/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/biometrics/fingerprint/service.cpp -------------------------------------------------------------------------------- /hidl/consumerir/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/consumerir/Android.bp -------------------------------------------------------------------------------- /hidl/consumerir/ConsumerIr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/consumerir/ConsumerIr.cpp -------------------------------------------------------------------------------- /hidl/consumerir/ConsumerIr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/consumerir/ConsumerIr.h -------------------------------------------------------------------------------- /hidl/consumerir/android.hardware.ir@1.0-service.xiaomi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/consumerir/android.hardware.ir@1.0-service.xiaomi.rc -------------------------------------------------------------------------------- /hidl/consumerir/android.hardware.ir@1.0-service.xiaomi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/consumerir/android.hardware.ir@1.0-service.xiaomi.xml -------------------------------------------------------------------------------- /hidl/consumerir/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/consumerir/service.cpp -------------------------------------------------------------------------------- /hidl/sensors/1.0/.clang-format: -------------------------------------------------------------------------------- 1 | ../../../../../build/soong/scripts/system-clang-format -------------------------------------------------------------------------------- /hidl/sensors/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/sensors/1.0/Android.bp -------------------------------------------------------------------------------- /hidl/sensors/1.0/Sensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/sensors/1.0/Sensors.cpp -------------------------------------------------------------------------------- /hidl/sensors/1.0/Sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/sensors/1.0/Sensors.h -------------------------------------------------------------------------------- /hidl/sensors/1.0/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/sensors/1.0/convert.cpp -------------------------------------------------------------------------------- /hidl/sensors/1.0/include/sensors/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/sensors/1.0/include/sensors/convert.h -------------------------------------------------------------------------------- /hidl/sensors/2.1/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/sensors/2.1/Android.bp -------------------------------------------------------------------------------- /hidl/sensors/2.1/HalProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/sensors/2.1/HalProxy.cpp -------------------------------------------------------------------------------- /hidl/sensors/2.1/HalProxyCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/sensors/2.1/HalProxyCallback.cpp -------------------------------------------------------------------------------- /hidl/sensors/2.1/android.hardware.sensors@2.1-service.xiaomi-multihal.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/sensors/2.1/android.hardware.sensors@2.1-service.xiaomi-multihal.rc -------------------------------------------------------------------------------- /hidl/sensors/2.1/android.hardware.sensors@2.1-service.xiaomi-multihal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/sensors/2.1/android.hardware.sensors@2.1-service.xiaomi-multihal.xml -------------------------------------------------------------------------------- /hidl/sensors/2.1/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/hidl/sensors/2.1/service.cpp -------------------------------------------------------------------------------- /interfaces/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/Android.bp -------------------------------------------------------------------------------- /interfaces/goodix/hardware/biometrics/fingerprint/2.1/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/goodix/hardware/biometrics/fingerprint/2.1/Android.bp -------------------------------------------------------------------------------- /interfaces/goodix/hardware/biometrics/fingerprint/2.1/IGoodixFingerprintDaemon.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/goodix/hardware/biometrics/fingerprint/2.1/IGoodixFingerprintDaemon.hal -------------------------------------------------------------------------------- /interfaces/goodix/hardware/biometrics/fingerprint/2.1/IGoodixFingerprintDaemonCallback.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/goodix/hardware/biometrics/fingerprint/2.1/IGoodixFingerprintDaemonCallback.hal -------------------------------------------------------------------------------- /interfaces/updates-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/updates-makefiles.sh -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/displayfeature/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/displayfeature/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/displayfeature/1.0/IDisplayFeature.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/displayfeature/1.0/IDisplayFeature.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/displayfeature/1.0/IDisplayFeatureCallback.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/displayfeature/1.0/IDisplayFeatureCallback.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/displayfeature/1.0/types.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/displayfeature/1.0/types.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/fingerprintextension/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/fingerprintextension/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/fingerprintextension/1.0/IXiaomiFingerprint.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/fingerprintextension/1.0/IXiaomiFingerprint.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/mlipay/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/mlipay/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/mlipay/1.0/IMlipayService.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/mlipay/1.0/IMlipayService.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/mlipay/1.1/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/mlipay/1.1/Android.bp -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/mlipay/1.1/IMlipayService.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/mlipay/1.1/IMlipayService.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/motor/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/motor/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/motor/1.0/IMotor.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/motor/1.0/IMotor.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/motor/1.0/IMotorCallback.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/motor/1.0/IMotorCallback.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/motor/1.0/types.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/motor/1.0/types.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/mtdservice/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/mtdservice/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/mtdservice/1.0/IMTService.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/mtdservice/1.0/IMTService.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/mtdservice/1.1/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/mtdservice/1.1/Android.bp -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/mtdservice/1.1/IMTService.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/mtdservice/1.1/IMTService.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/mtdservice/1.2/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/mtdservice/1.2/Android.bp -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/mtdservice/1.2/IMTService.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/mtdservice/1.2/IMTService.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/touchfeature/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/touchfeature/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/xiaomi/hardware/touchfeature/1.0/ITouchFeature.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hardware/touchfeature/1.0/ITouchFeature.hal -------------------------------------------------------------------------------- /interfaces/xiaomi/hw/touchfeature/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hw/touchfeature/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/xiaomi/hw/touchfeature/1.0/ITouchFeature.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/interfaces/xiaomi/hw/touchfeature/1.0/ITouchFeature.hal -------------------------------------------------------------------------------- /megvii/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/megvii/Android.bp -------------------------------------------------------------------------------- /megvii/megvii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/megvii/megvii.c -------------------------------------------------------------------------------- /sensors/.clang-format: -------------------------------------------------------------------------------- 1 | ../../../build/soong/scripts/system-clang-format -------------------------------------------------------------------------------- /sensors/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/sensors/Android.bp -------------------------------------------------------------------------------- /sensors/udfps_hal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArrowOS-Devices/android_hardware_xiaomi/HEAD/sensors/udfps_hal.cpp --------------------------------------------------------------------------------