├── Android.mk ├── README.md ├── cryptfs_hw ├── Android.mk ├── cryptfs_hw.c └── cryptfs_hw.h ├── dtbtool ├── Android.mk ├── dtbtool.c └── dtbtool.txt ├── extractors ├── README.md ├── audio-msm8996.txt ├── extract-files.sh ├── graphics-msm8916-32.txt ├── graphics-msm8916-64.txt ├── graphics-msm8960.txt ├── graphics-msm8974.txt ├── graphics-msm8992.txt ├── graphics-msm8994.txt ├── graphics-msm8996.txt └── setup-makefiles.sh ├── power ├── Android.mk ├── hint-data.c ├── hint-data.h ├── list.c ├── list.h ├── metadata-defs.h ├── metadata-parser.c ├── performance.h ├── power-8084.c ├── power-8226.c ├── power-8610.c ├── power-8909.c ├── power-8916.c ├── power-8937.c ├── power-8952.c ├── power-8960.c ├── power-8974.c ├── power-8992.c ├── power-8994.c ├── power-8996.c ├── power-common.h ├── power-feature-default.c ├── power-feature.h ├── power.c ├── utils.c └── utils.h ├── recovery ├── Android.mk ├── miniui │ ├── Android.mk │ └── msm_recovery_ui.cpp └── oem-recovery │ ├── Android.mk │ ├── dec.cpp │ ├── dec.h │ ├── gpt-utils.cpp │ ├── gpt-utils.h │ └── oem-updater.cpp ├── releasetools.py └── sdllvm-lto-defs.mk /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/Android.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/README.md -------------------------------------------------------------------------------- /cryptfs_hw/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/cryptfs_hw/Android.mk -------------------------------------------------------------------------------- /cryptfs_hw/cryptfs_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/cryptfs_hw/cryptfs_hw.c -------------------------------------------------------------------------------- /cryptfs_hw/cryptfs_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/cryptfs_hw/cryptfs_hw.h -------------------------------------------------------------------------------- /dtbtool/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/dtbtool/Android.mk -------------------------------------------------------------------------------- /dtbtool/dtbtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/dtbtool/dtbtool.c -------------------------------------------------------------------------------- /dtbtool/dtbtool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/dtbtool/dtbtool.txt -------------------------------------------------------------------------------- /extractors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/extractors/README.md -------------------------------------------------------------------------------- /extractors/audio-msm8996.txt: -------------------------------------------------------------------------------- 1 | # Listen 2 | vendor/lib/hw/sound_trigger.primary.msm8996.so 3 | -------------------------------------------------------------------------------- /extractors/extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/extractors/extract-files.sh -------------------------------------------------------------------------------- /extractors/graphics-msm8916-32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/extractors/graphics-msm8916-32.txt -------------------------------------------------------------------------------- /extractors/graphics-msm8916-64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/extractors/graphics-msm8916-64.txt -------------------------------------------------------------------------------- /extractors/graphics-msm8960.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/extractors/graphics-msm8960.txt -------------------------------------------------------------------------------- /extractors/graphics-msm8974.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/extractors/graphics-msm8974.txt -------------------------------------------------------------------------------- /extractors/graphics-msm8992.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/extractors/graphics-msm8992.txt -------------------------------------------------------------------------------- /extractors/graphics-msm8994.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/extractors/graphics-msm8994.txt -------------------------------------------------------------------------------- /extractors/graphics-msm8996.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/extractors/graphics-msm8996.txt -------------------------------------------------------------------------------- /extractors/setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/extractors/setup-makefiles.sh -------------------------------------------------------------------------------- /power/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/Android.mk -------------------------------------------------------------------------------- /power/hint-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/hint-data.c -------------------------------------------------------------------------------- /power/hint-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/hint-data.h -------------------------------------------------------------------------------- /power/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/list.c -------------------------------------------------------------------------------- /power/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/list.h -------------------------------------------------------------------------------- /power/metadata-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/metadata-defs.h -------------------------------------------------------------------------------- /power/metadata-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/metadata-parser.c -------------------------------------------------------------------------------- /power/performance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/performance.h -------------------------------------------------------------------------------- /power/power-8084.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8084.c -------------------------------------------------------------------------------- /power/power-8226.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8226.c -------------------------------------------------------------------------------- /power/power-8610.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8610.c -------------------------------------------------------------------------------- /power/power-8909.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8909.c -------------------------------------------------------------------------------- /power/power-8916.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8916.c -------------------------------------------------------------------------------- /power/power-8937.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8937.c -------------------------------------------------------------------------------- /power/power-8952.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8952.c -------------------------------------------------------------------------------- /power/power-8960.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8960.c -------------------------------------------------------------------------------- /power/power-8974.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8974.c -------------------------------------------------------------------------------- /power/power-8992.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8992.c -------------------------------------------------------------------------------- /power/power-8994.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8994.c -------------------------------------------------------------------------------- /power/power-8996.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-8996.c -------------------------------------------------------------------------------- /power/power-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-common.h -------------------------------------------------------------------------------- /power/power-feature-default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-feature-default.c -------------------------------------------------------------------------------- /power/power-feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power-feature.h -------------------------------------------------------------------------------- /power/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/power.c -------------------------------------------------------------------------------- /power/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/utils.c -------------------------------------------------------------------------------- /power/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/power/utils.h -------------------------------------------------------------------------------- /recovery/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /recovery/miniui/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/recovery/miniui/Android.mk -------------------------------------------------------------------------------- /recovery/miniui/msm_recovery_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/recovery/miniui/msm_recovery_ui.cpp -------------------------------------------------------------------------------- /recovery/oem-recovery/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/recovery/oem-recovery/Android.mk -------------------------------------------------------------------------------- /recovery/oem-recovery/dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/recovery/oem-recovery/dec.cpp -------------------------------------------------------------------------------- /recovery/oem-recovery/dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/recovery/oem-recovery/dec.h -------------------------------------------------------------------------------- /recovery/oem-recovery/gpt-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/recovery/oem-recovery/gpt-utils.cpp -------------------------------------------------------------------------------- /recovery/oem-recovery/gpt-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/recovery/oem-recovery/gpt-utils.h -------------------------------------------------------------------------------- /recovery/oem-recovery/oem-updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/recovery/oem-recovery/oem-updater.cpp -------------------------------------------------------------------------------- /releasetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/releasetools.py -------------------------------------------------------------------------------- /sdllvm-lto-defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_qcom_common/HEAD/sdllvm-lto-defs.mk --------------------------------------------------------------------------------