├── Android.mk ├── AndroidProducts.mk ├── BoardConfig.mk ├── README.md ├── audio ├── audio_effects.xml ├── audio_output_policy.conf ├── audio_platform_info_intcodec.xml ├── audio_policy_configuration.xml ├── audio_tuning_mixer.txt ├── graphite_ipc_platform_info.xml ├── listen_platform_info.xml ├── mixer_paths.xml ├── sound_trigger_mixer_paths.xml └── sound_trigger_platform_info.xml ├── bluetooth └── bdroid_buildcfg.h ├── board-info.txt ├── compatibility_matrix.xml ├── config.fs ├── configs ├── gps │ ├── apdr.conf │ ├── flp.conf │ ├── gps.conf │ ├── izat.conf │ ├── lowi.conf │ ├── sap.conf │ └── xtwifi.conf ├── idc │ ├── uinput-fpc.idc │ └── uinput-goodix.idc ├── msm_irqbalance.conf ├── privapp-permissions-qti.xml ├── public.libraries.txt ├── qti_whitelist.xml └── sec_config ├── device.mk ├── doze ├── Android.mk ├── AndroidManifest.xml ├── proguard.flags ├── res │ ├── color │ │ ├── switch_bar_bg.xml │ │ ├── switchbar_switch_thumb_tint.xml │ │ └── switchbar_switch_track_tint.xml │ ├── drawable │ │ └── switchbar_background.xml │ ├── layout │ │ ├── doze.xml │ │ └── switch_bar.xml │ ├── values │ │ └── styles.xml │ └── xml │ │ └── doze_settings.xml └── src │ └── org │ └── mokee │ └── settings │ └── doze │ ├── BootCompletedReceiver.java │ ├── DozeService.java │ ├── DozeSettingsActivity.java │ ├── DozeSettingsFragment.java │ ├── ProximitySensor.java │ ├── TiltSensor.java │ └── Utils.java ├── extract-files.sh ├── fingerprint ├── Android.bp ├── BiometricsFingerprint.cpp ├── BiometricsFingerprint.h ├── android.hardware.biometrics.fingerprint@2.1-service.xiaomi_whyred.rc └── service.cpp ├── framework_manifest.xml ├── gps ├── Android.mk ├── CleanSpec.mk ├── Makefile.am ├── android │ ├── AGnss.cpp │ ├── AGnss.h │ ├── AGnssRil.cpp │ ├── AGnssRil.h │ ├── Android.mk │ ├── Gnss.cpp │ ├── Gnss.h │ ├── GnssBatching.cpp │ ├── GnssBatching.h │ ├── GnssConfiguration.cpp │ ├── GnssConfiguration.h │ ├── GnssDebug.cpp │ ├── GnssDebug.h │ ├── GnssGeofencing.cpp │ ├── GnssGeofencing.h │ ├── GnssMeasurement.cpp │ ├── GnssMeasurement.h │ ├── GnssNi.cpp │ ├── GnssNi.h │ ├── android.hardware.gnss@1.1-service-qti.rc │ ├── location_api │ │ ├── BatchingAPIClient.cpp │ │ ├── BatchingAPIClient.h │ │ ├── GeofenceAPIClient.cpp │ │ ├── GeofenceAPIClient.h │ │ ├── GnssAPIClient.cpp │ │ ├── GnssAPIClient.h │ │ ├── LocationUtil.cpp │ │ ├── LocationUtil.h │ │ ├── MeasurementAPIClient.cpp │ │ └── MeasurementAPIClient.h │ └── service.cpp ├── build │ └── target_specific_features.mk ├── configure.ac ├── core │ ├── Android.mk │ ├── ContextBase.cpp │ ├── ContextBase.h │ ├── LBSProxyBase.h │ ├── LocAdapterBase.cpp │ ├── LocAdapterBase.h │ ├── LocAdapterProxyBase.h │ ├── LocApiBase.cpp │ ├── LocApiBase.h │ ├── LocDualContext.cpp │ ├── LocDualContext.h │ ├── Makefile.am │ ├── SystemStatus.cpp │ ├── SystemStatus.h │ ├── SystemStatusOsObserver.cpp │ ├── SystemStatusOsObserver.h │ ├── UlpProxyBase.h │ ├── configure.ac │ ├── data-items │ │ ├── DataItemConcreteTypesBase.h │ │ ├── DataItemId.h │ │ ├── DataItemsFactoryProxy.cpp │ │ ├── DataItemsFactoryProxy.h │ │ └── IDataItemCore.h │ ├── loc-core.pc.in │ ├── loc_core_log.cpp │ ├── loc_core_log.h │ └── observer │ │ ├── IDataItemObserver.h │ │ ├── IDataItemSubscription.h │ │ ├── IFrameworkActionReq.h │ │ └── IOsObserver.h ├── gnss │ ├── Agps.cpp │ ├── Agps.h │ ├── Android.mk │ ├── GnssAdapter.cpp │ ├── GnssAdapter.h │ ├── Makefile.am │ ├── XtraSystemStatusObserver.cpp │ ├── XtraSystemStatusObserver.h │ └── location_gnss.cpp ├── gnsspps │ ├── Android.mk │ ├── Makefile.am │ ├── configure.ac │ ├── gnsspps.c │ ├── gnsspps.h │ ├── gnsspps.pc.in │ └── timepps.h ├── loc-hal.pc.in ├── location │ ├── Android.mk │ ├── LocationAPI.cpp │ ├── LocationAPI.h │ ├── LocationAPIClientBase.cpp │ ├── LocationAPIClientBase.h │ ├── Makefile.am │ ├── configure.ac │ ├── location-api.pc.in │ └── location_interface.h ├── pla │ ├── Android.mk │ ├── android │ │ └── loc_pla.h │ └── oe │ │ └── loc_pla.h └── utils │ ├── Android.mk │ ├── LocHeap.cpp │ ├── LocHeap.h │ ├── LocIpc.cpp │ ├── LocIpc.h │ ├── LocSharedLock.h │ ├── LocThread.cpp │ ├── LocThread.h │ ├── LocTimer.cpp │ ├── LocTimer.h │ ├── LocUnorderedSetMap.h │ ├── Makefile.am │ ├── MsgTask.cpp │ ├── MsgTask.h │ ├── configure.ac │ ├── gps-utils.pc.in │ ├── gps_extended.h │ ├── gps_extended_c.h │ ├── linked_list.c │ ├── linked_list.h │ ├── loc_cfg.cpp │ ├── loc_cfg.h │ ├── loc_gps.h │ ├── loc_log.cpp │ ├── loc_log.h │ ├── loc_misc_utils.cpp │ ├── loc_misc_utils.h │ ├── loc_nmea.cpp │ ├── loc_nmea.h │ ├── loc_target.cpp │ ├── loc_target.h │ ├── loc_timer.h │ ├── log_util.h │ ├── msg_q.c │ └── msg_q.h ├── init ├── Android.bp └── init_whyred.cpp ├── keylayout ├── sdm660-snd-card_Button_Jack.kl ├── uinput-fpc.kl └── uinput-goodix.kl ├── libhidl └── Android.mk ├── light ├── Android.bp ├── Light.cpp ├── Light.h ├── android.hardware.light@2.0-service.xiaomi_whyred.rc └── service.cpp ├── lineage.dependencies ├── lineage_whyred.mk ├── manifest.xml ├── media ├── media_codecs.xml ├── media_codecs_performance.xml └── media_profiles_V1_0.xml ├── org.ifaa.android.manager ├── Android.bp └── src │ └── org │ └── ifaa │ └── android │ └── manager │ ├── IFAAManager.java │ ├── IFAAManagerFactory.java │ ├── IFAAManagerImpl.java │ ├── IFAAManagerV2.java │ ├── IFAAManagerV3.java │ ├── IFAAManagerV4.java │ └── IIFAAService.aidl ├── overlay-lineage ├── frameworks │ └── base │ │ └── core │ │ └── res │ │ └── res │ │ └── values │ │ └── config.xml ├── lineage-sdk │ └── lineage │ │ └── res │ │ └── res │ │ └── values │ │ └── config.xml └── packages │ └── apps │ └── Dialer │ └── java │ └── com │ └── android │ └── dialer │ └── callrecord │ └── res │ └── values │ └── config.xml ├── overlay ├── frameworks │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ ├── values-mcc234-mnc15-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc234-mnc15-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc234-mnc15 │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc02-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc02-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc02 │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc04-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc04-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc04 │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc09-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc09-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc09 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc004 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc120 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc260 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc410 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc480 │ │ │ └── config.xml │ │ │ ├── values-mcc460-mnc03 │ │ │ └── config.xml │ │ │ ├── values-mcc460-mnc11 │ │ │ └── config.xml │ │ │ ├── values │ │ │ └── config.xml │ │ │ └── xml │ │ │ └── power_profile.xml │ │ └── packages │ │ └── SystemUI │ │ └── res │ │ └── values │ │ └── config.xml └── packages │ ├── apps │ ├── Bluetooth │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── CarrierConfig │ │ └── res │ │ │ └── xml │ │ │ └── vendor.xml │ ├── CellBroadcastReceiver │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ └── Settings │ │ └── res │ │ └── values │ │ ├── arrays.xml │ │ └── config.xml │ └── services │ ├── Telecomm │ └── res │ │ └── values │ │ └── config.xml │ └── Telephony │ └── res │ └── values │ └── config.xml ├── proprietary-files-twrp.txt ├── proprietary-files.txt ├── recovery ├── Android.mk └── recovery_updater.cpp ├── releasetools.py ├── rootdir ├── Android.mk ├── bin │ ├── init.class_main.sh │ ├── init.goodix.sh │ ├── init.qcom.early_boot.sh │ ├── init.qcom.post_boot.sh │ ├── init.qcom.sensors.sh │ ├── init.qcom.sh │ └── init.qcom.usb.sh └── etc │ ├── fstab.qcom │ ├── init.msm.usb.configfs.rc │ ├── init.qcom.rc │ ├── init.qcom.usb.rc │ ├── init.target.rc │ ├── recovery.fstab │ └── ueventd.qcom.rc ├── seccomp ├── mediacodec-seccomp.policy └── mediaextractor-seccomp.policy ├── sensors └── hals.conf ├── sepolicy ├── private │ └── system_app.te ├── public │ └── attributes └── vendor │ ├── app.te │ ├── file.te │ ├── file_contexts │ ├── hal_camera_default.te │ ├── hal_fingerprint_default.te │ ├── hal_ir_default.te │ ├── hal_mlipay.te │ ├── hal_perf_default.te │ ├── hal_power_default.te │ ├── hal_sensors_default.te │ ├── hwservice.te │ ├── hwservice_contexts │ ├── init_fingerprint.te │ ├── netmgrd.te │ ├── property.te │ ├── property_contexts │ ├── rild.te │ ├── system_app.te │ ├── system_server.te │ ├── tee.te │ ├── thermal-engine.te │ ├── vendor_init.te │ ├── vndservice.te │ └── vndservice_contexts ├── setup-makefiles.sh ├── system.prop ├── twrp.mk ├── twrp └── recovery │ └── root │ ├── etc │ └── twrp.fstab │ ├── init.recovery.qcom.rc │ ├── init.recovery.usb.rc │ ├── ueventd.qcom.rc │ └── ueventd.rc ├── update-sha1sums.py ├── vendor_framework_compatibility_matrix.xml ├── vendor_prop.mk ├── vndk ├── Android.mk └── vndk-sp-libs.mk └── wifi ├── WCNSS_qcom_cfg.ini ├── p2p_supplicant_overlay.conf └── wpa_supplicant_overlay.conf /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/Android.mk -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/AndroidProducts.mk -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/BoardConfig.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/README.md -------------------------------------------------------------------------------- /audio/audio_effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/audio/audio_effects.xml -------------------------------------------------------------------------------- /audio/audio_output_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/audio/audio_output_policy.conf -------------------------------------------------------------------------------- /audio/audio_platform_info_intcodec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/audio/audio_platform_info_intcodec.xml -------------------------------------------------------------------------------- /audio/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/audio/audio_policy_configuration.xml -------------------------------------------------------------------------------- /audio/audio_tuning_mixer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/audio/audio_tuning_mixer.txt -------------------------------------------------------------------------------- /audio/graphite_ipc_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/audio/graphite_ipc_platform_info.xml -------------------------------------------------------------------------------- /audio/listen_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/audio/listen_platform_info.xml -------------------------------------------------------------------------------- /audio/mixer_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/audio/mixer_paths.xml -------------------------------------------------------------------------------- /audio/sound_trigger_mixer_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/audio/sound_trigger_mixer_paths.xml -------------------------------------------------------------------------------- /audio/sound_trigger_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/audio/sound_trigger_platform_info.xml -------------------------------------------------------------------------------- /bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/bluetooth/bdroid_buildcfg.h -------------------------------------------------------------------------------- /board-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/board-info.txt -------------------------------------------------------------------------------- /compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/compatibility_matrix.xml -------------------------------------------------------------------------------- /config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/config.fs -------------------------------------------------------------------------------- /configs/gps/apdr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/gps/apdr.conf -------------------------------------------------------------------------------- /configs/gps/flp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/gps/flp.conf -------------------------------------------------------------------------------- /configs/gps/gps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/gps/gps.conf -------------------------------------------------------------------------------- /configs/gps/izat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/gps/izat.conf -------------------------------------------------------------------------------- /configs/gps/lowi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/gps/lowi.conf -------------------------------------------------------------------------------- /configs/gps/sap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/gps/sap.conf -------------------------------------------------------------------------------- /configs/gps/xtwifi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/gps/xtwifi.conf -------------------------------------------------------------------------------- /configs/idc/uinput-fpc.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/idc/uinput-fpc.idc -------------------------------------------------------------------------------- /configs/idc/uinput-goodix.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/idc/uinput-goodix.idc -------------------------------------------------------------------------------- /configs/msm_irqbalance.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/msm_irqbalance.conf -------------------------------------------------------------------------------- /configs/privapp-permissions-qti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/privapp-permissions-qti.xml -------------------------------------------------------------------------------- /configs/public.libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/public.libraries.txt -------------------------------------------------------------------------------- /configs/qti_whitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/qti_whitelist.xml -------------------------------------------------------------------------------- /configs/sec_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/configs/sec_config -------------------------------------------------------------------------------- /device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/device.mk -------------------------------------------------------------------------------- /doze/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/Android.mk -------------------------------------------------------------------------------- /doze/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/AndroidManifest.xml -------------------------------------------------------------------------------- /doze/proguard.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/proguard.flags -------------------------------------------------------------------------------- /doze/res/color/switch_bar_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/res/color/switch_bar_bg.xml -------------------------------------------------------------------------------- /doze/res/color/switchbar_switch_thumb_tint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/res/color/switchbar_switch_thumb_tint.xml -------------------------------------------------------------------------------- /doze/res/color/switchbar_switch_track_tint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/res/color/switchbar_switch_track_tint.xml -------------------------------------------------------------------------------- /doze/res/drawable/switchbar_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/res/drawable/switchbar_background.xml -------------------------------------------------------------------------------- /doze/res/layout/doze.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/res/layout/doze.xml -------------------------------------------------------------------------------- /doze/res/layout/switch_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/res/layout/switch_bar.xml -------------------------------------------------------------------------------- /doze/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/res/values/styles.xml -------------------------------------------------------------------------------- /doze/res/xml/doze_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/res/xml/doze_settings.xml -------------------------------------------------------------------------------- /doze/src/org/mokee/settings/doze/BootCompletedReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/src/org/mokee/settings/doze/BootCompletedReceiver.java -------------------------------------------------------------------------------- /doze/src/org/mokee/settings/doze/DozeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/src/org/mokee/settings/doze/DozeService.java -------------------------------------------------------------------------------- /doze/src/org/mokee/settings/doze/DozeSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/src/org/mokee/settings/doze/DozeSettingsActivity.java -------------------------------------------------------------------------------- /doze/src/org/mokee/settings/doze/DozeSettingsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/src/org/mokee/settings/doze/DozeSettingsFragment.java -------------------------------------------------------------------------------- /doze/src/org/mokee/settings/doze/ProximitySensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/src/org/mokee/settings/doze/ProximitySensor.java -------------------------------------------------------------------------------- /doze/src/org/mokee/settings/doze/TiltSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/src/org/mokee/settings/doze/TiltSensor.java -------------------------------------------------------------------------------- /doze/src/org/mokee/settings/doze/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/doze/src/org/mokee/settings/doze/Utils.java -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/extract-files.sh -------------------------------------------------------------------------------- /fingerprint/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/fingerprint/Android.bp -------------------------------------------------------------------------------- /fingerprint/BiometricsFingerprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/fingerprint/BiometricsFingerprint.cpp -------------------------------------------------------------------------------- /fingerprint/BiometricsFingerprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/fingerprint/BiometricsFingerprint.h -------------------------------------------------------------------------------- /fingerprint/android.hardware.biometrics.fingerprint@2.1-service.xiaomi_whyred.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/fingerprint/android.hardware.biometrics.fingerprint@2.1-service.xiaomi_whyred.rc -------------------------------------------------------------------------------- /fingerprint/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/fingerprint/service.cpp -------------------------------------------------------------------------------- /framework_manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/framework_manifest.xml -------------------------------------------------------------------------------- /gps/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/Android.mk -------------------------------------------------------------------------------- /gps/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/CleanSpec.mk -------------------------------------------------------------------------------- /gps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/Makefile.am -------------------------------------------------------------------------------- /gps/android/AGnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/AGnss.cpp -------------------------------------------------------------------------------- /gps/android/AGnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/AGnss.h -------------------------------------------------------------------------------- /gps/android/AGnssRil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/AGnssRil.cpp -------------------------------------------------------------------------------- /gps/android/AGnssRil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/AGnssRil.h -------------------------------------------------------------------------------- /gps/android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/Android.mk -------------------------------------------------------------------------------- /gps/android/Gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/Gnss.cpp -------------------------------------------------------------------------------- /gps/android/Gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/Gnss.h -------------------------------------------------------------------------------- /gps/android/GnssBatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssBatching.cpp -------------------------------------------------------------------------------- /gps/android/GnssBatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssBatching.h -------------------------------------------------------------------------------- /gps/android/GnssConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssConfiguration.cpp -------------------------------------------------------------------------------- /gps/android/GnssConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssConfiguration.h -------------------------------------------------------------------------------- /gps/android/GnssDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssDebug.cpp -------------------------------------------------------------------------------- /gps/android/GnssDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssDebug.h -------------------------------------------------------------------------------- /gps/android/GnssGeofencing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssGeofencing.cpp -------------------------------------------------------------------------------- /gps/android/GnssGeofencing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssGeofencing.h -------------------------------------------------------------------------------- /gps/android/GnssMeasurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssMeasurement.cpp -------------------------------------------------------------------------------- /gps/android/GnssMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssMeasurement.h -------------------------------------------------------------------------------- /gps/android/GnssNi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssNi.cpp -------------------------------------------------------------------------------- /gps/android/GnssNi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/GnssNi.h -------------------------------------------------------------------------------- /gps/android/android.hardware.gnss@1.1-service-qti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/android.hardware.gnss@1.1-service-qti.rc -------------------------------------------------------------------------------- /gps/android/location_api/BatchingAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/location_api/BatchingAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/location_api/BatchingAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/location_api/BatchingAPIClient.h -------------------------------------------------------------------------------- /gps/android/location_api/GeofenceAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/location_api/GeofenceAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/location_api/GeofenceAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/location_api/GeofenceAPIClient.h -------------------------------------------------------------------------------- /gps/android/location_api/GnssAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/location_api/GnssAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/location_api/GnssAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/location_api/GnssAPIClient.h -------------------------------------------------------------------------------- /gps/android/location_api/LocationUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/location_api/LocationUtil.cpp -------------------------------------------------------------------------------- /gps/android/location_api/LocationUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/location_api/LocationUtil.h -------------------------------------------------------------------------------- /gps/android/location_api/MeasurementAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/location_api/MeasurementAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/location_api/MeasurementAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/location_api/MeasurementAPIClient.h -------------------------------------------------------------------------------- /gps/android/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/android/service.cpp -------------------------------------------------------------------------------- /gps/build/target_specific_features.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/build/target_specific_features.mk -------------------------------------------------------------------------------- /gps/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/configure.ac -------------------------------------------------------------------------------- /gps/core/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/Android.mk -------------------------------------------------------------------------------- /gps/core/ContextBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/ContextBase.cpp -------------------------------------------------------------------------------- /gps/core/ContextBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/ContextBase.h -------------------------------------------------------------------------------- /gps/core/LBSProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/LBSProxyBase.h -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/LocAdapterBase.cpp -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/LocAdapterBase.h -------------------------------------------------------------------------------- /gps/core/LocAdapterProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/LocAdapterProxyBase.h -------------------------------------------------------------------------------- /gps/core/LocApiBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/LocApiBase.cpp -------------------------------------------------------------------------------- /gps/core/LocApiBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/LocApiBase.h -------------------------------------------------------------------------------- /gps/core/LocDualContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/LocDualContext.cpp -------------------------------------------------------------------------------- /gps/core/LocDualContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/LocDualContext.h -------------------------------------------------------------------------------- /gps/core/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/Makefile.am -------------------------------------------------------------------------------- /gps/core/SystemStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/SystemStatus.cpp -------------------------------------------------------------------------------- /gps/core/SystemStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/SystemStatus.h -------------------------------------------------------------------------------- /gps/core/SystemStatusOsObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/SystemStatusOsObserver.cpp -------------------------------------------------------------------------------- /gps/core/SystemStatusOsObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/SystemStatusOsObserver.h -------------------------------------------------------------------------------- /gps/core/UlpProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/UlpProxyBase.h -------------------------------------------------------------------------------- /gps/core/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/configure.ac -------------------------------------------------------------------------------- /gps/core/data-items/DataItemConcreteTypesBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/data-items/DataItemConcreteTypesBase.h -------------------------------------------------------------------------------- /gps/core/data-items/DataItemId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/data-items/DataItemId.h -------------------------------------------------------------------------------- /gps/core/data-items/DataItemsFactoryProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/data-items/DataItemsFactoryProxy.cpp -------------------------------------------------------------------------------- /gps/core/data-items/DataItemsFactoryProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/data-items/DataItemsFactoryProxy.h -------------------------------------------------------------------------------- /gps/core/data-items/IDataItemCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/data-items/IDataItemCore.h -------------------------------------------------------------------------------- /gps/core/loc-core.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/loc-core.pc.in -------------------------------------------------------------------------------- /gps/core/loc_core_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/loc_core_log.cpp -------------------------------------------------------------------------------- /gps/core/loc_core_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/loc_core_log.h -------------------------------------------------------------------------------- /gps/core/observer/IDataItemObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/observer/IDataItemObserver.h -------------------------------------------------------------------------------- /gps/core/observer/IDataItemSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/observer/IDataItemSubscription.h -------------------------------------------------------------------------------- /gps/core/observer/IFrameworkActionReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/observer/IFrameworkActionReq.h -------------------------------------------------------------------------------- /gps/core/observer/IOsObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/core/observer/IOsObserver.h -------------------------------------------------------------------------------- /gps/gnss/Agps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnss/Agps.cpp -------------------------------------------------------------------------------- /gps/gnss/Agps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnss/Agps.h -------------------------------------------------------------------------------- /gps/gnss/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnss/Android.mk -------------------------------------------------------------------------------- /gps/gnss/GnssAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnss/GnssAdapter.cpp -------------------------------------------------------------------------------- /gps/gnss/GnssAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnss/GnssAdapter.h -------------------------------------------------------------------------------- /gps/gnss/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnss/Makefile.am -------------------------------------------------------------------------------- /gps/gnss/XtraSystemStatusObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnss/XtraSystemStatusObserver.cpp -------------------------------------------------------------------------------- /gps/gnss/XtraSystemStatusObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnss/XtraSystemStatusObserver.h -------------------------------------------------------------------------------- /gps/gnss/location_gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnss/location_gnss.cpp -------------------------------------------------------------------------------- /gps/gnsspps/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnsspps/Android.mk -------------------------------------------------------------------------------- /gps/gnsspps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnsspps/Makefile.am -------------------------------------------------------------------------------- /gps/gnsspps/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnsspps/configure.ac -------------------------------------------------------------------------------- /gps/gnsspps/gnsspps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnsspps/gnsspps.c -------------------------------------------------------------------------------- /gps/gnsspps/gnsspps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnsspps/gnsspps.h -------------------------------------------------------------------------------- /gps/gnsspps/gnsspps.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnsspps/gnsspps.pc.in -------------------------------------------------------------------------------- /gps/gnsspps/timepps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/gnsspps/timepps.h -------------------------------------------------------------------------------- /gps/loc-hal.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/loc-hal.pc.in -------------------------------------------------------------------------------- /gps/location/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/location/Android.mk -------------------------------------------------------------------------------- /gps/location/LocationAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/location/LocationAPI.cpp -------------------------------------------------------------------------------- /gps/location/LocationAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/location/LocationAPI.h -------------------------------------------------------------------------------- /gps/location/LocationAPIClientBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/location/LocationAPIClientBase.cpp -------------------------------------------------------------------------------- /gps/location/LocationAPIClientBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/location/LocationAPIClientBase.h -------------------------------------------------------------------------------- /gps/location/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/location/Makefile.am -------------------------------------------------------------------------------- /gps/location/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/location/configure.ac -------------------------------------------------------------------------------- /gps/location/location-api.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/location/location-api.pc.in -------------------------------------------------------------------------------- /gps/location/location_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/location/location_interface.h -------------------------------------------------------------------------------- /gps/pla/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/pla/Android.mk -------------------------------------------------------------------------------- /gps/pla/android/loc_pla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/pla/android/loc_pla.h -------------------------------------------------------------------------------- /gps/pla/oe/loc_pla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/pla/oe/loc_pla.h -------------------------------------------------------------------------------- /gps/utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/Android.mk -------------------------------------------------------------------------------- /gps/utils/LocHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/LocHeap.cpp -------------------------------------------------------------------------------- /gps/utils/LocHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/LocHeap.h -------------------------------------------------------------------------------- /gps/utils/LocIpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/LocIpc.cpp -------------------------------------------------------------------------------- /gps/utils/LocIpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/LocIpc.h -------------------------------------------------------------------------------- /gps/utils/LocSharedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/LocSharedLock.h -------------------------------------------------------------------------------- /gps/utils/LocThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/LocThread.cpp -------------------------------------------------------------------------------- /gps/utils/LocThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/LocThread.h -------------------------------------------------------------------------------- /gps/utils/LocTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/LocTimer.cpp -------------------------------------------------------------------------------- /gps/utils/LocTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/LocTimer.h -------------------------------------------------------------------------------- /gps/utils/LocUnorderedSetMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/LocUnorderedSetMap.h -------------------------------------------------------------------------------- /gps/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/Makefile.am -------------------------------------------------------------------------------- /gps/utils/MsgTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/MsgTask.cpp -------------------------------------------------------------------------------- /gps/utils/MsgTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/MsgTask.h -------------------------------------------------------------------------------- /gps/utils/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/configure.ac -------------------------------------------------------------------------------- /gps/utils/gps-utils.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/gps-utils.pc.in -------------------------------------------------------------------------------- /gps/utils/gps_extended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/gps_extended.h -------------------------------------------------------------------------------- /gps/utils/gps_extended_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/gps_extended_c.h -------------------------------------------------------------------------------- /gps/utils/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/linked_list.c -------------------------------------------------------------------------------- /gps/utils/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/linked_list.h -------------------------------------------------------------------------------- /gps/utils/loc_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_cfg.cpp -------------------------------------------------------------------------------- /gps/utils/loc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_cfg.h -------------------------------------------------------------------------------- /gps/utils/loc_gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_gps.h -------------------------------------------------------------------------------- /gps/utils/loc_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_log.cpp -------------------------------------------------------------------------------- /gps/utils/loc_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_log.h -------------------------------------------------------------------------------- /gps/utils/loc_misc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_misc_utils.cpp -------------------------------------------------------------------------------- /gps/utils/loc_misc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_misc_utils.h -------------------------------------------------------------------------------- /gps/utils/loc_nmea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_nmea.cpp -------------------------------------------------------------------------------- /gps/utils/loc_nmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_nmea.h -------------------------------------------------------------------------------- /gps/utils/loc_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_target.cpp -------------------------------------------------------------------------------- /gps/utils/loc_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_target.h -------------------------------------------------------------------------------- /gps/utils/loc_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/loc_timer.h -------------------------------------------------------------------------------- /gps/utils/log_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/log_util.h -------------------------------------------------------------------------------- /gps/utils/msg_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/msg_q.c -------------------------------------------------------------------------------- /gps/utils/msg_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/gps/utils/msg_q.h -------------------------------------------------------------------------------- /init/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/init/Android.bp -------------------------------------------------------------------------------- /init/init_whyred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/init/init_whyred.cpp -------------------------------------------------------------------------------- /keylayout/sdm660-snd-card_Button_Jack.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/keylayout/sdm660-snd-card_Button_Jack.kl -------------------------------------------------------------------------------- /keylayout/uinput-fpc.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/keylayout/uinput-fpc.kl -------------------------------------------------------------------------------- /keylayout/uinput-goodix.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/keylayout/uinput-goodix.kl -------------------------------------------------------------------------------- /libhidl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/libhidl/Android.mk -------------------------------------------------------------------------------- /light/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/light/Android.bp -------------------------------------------------------------------------------- /light/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/light/Light.cpp -------------------------------------------------------------------------------- /light/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/light/Light.h -------------------------------------------------------------------------------- /light/android.hardware.light@2.0-service.xiaomi_whyred.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/light/android.hardware.light@2.0-service.xiaomi_whyred.rc -------------------------------------------------------------------------------- /light/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/light/service.cpp -------------------------------------------------------------------------------- /lineage.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/lineage.dependencies -------------------------------------------------------------------------------- /lineage_whyred.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/lineage_whyred.mk -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/manifest.xml -------------------------------------------------------------------------------- /media/media_codecs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/media/media_codecs.xml -------------------------------------------------------------------------------- /media/media_codecs_performance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/media/media_codecs_performance.xml -------------------------------------------------------------------------------- /media/media_profiles_V1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/media/media_profiles_V1_0.xml -------------------------------------------------------------------------------- /org.ifaa.android.manager/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/org.ifaa.android.manager/Android.bp -------------------------------------------------------------------------------- /org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManager.java -------------------------------------------------------------------------------- /org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManagerFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManagerFactory.java -------------------------------------------------------------------------------- /org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManagerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManagerImpl.java -------------------------------------------------------------------------------- /org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManagerV2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManagerV2.java -------------------------------------------------------------------------------- /org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManagerV3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManagerV3.java -------------------------------------------------------------------------------- /org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManagerV4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/org.ifaa.android.manager/src/org/ifaa/android/manager/IFAAManagerV4.java -------------------------------------------------------------------------------- /org.ifaa.android.manager/src/org/ifaa/android/manager/IIFAAService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/org.ifaa.android.manager/src/org/ifaa/android/manager/IIFAAService.aidl -------------------------------------------------------------------------------- /overlay-lineage/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay-lineage/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay-lineage/packages/apps/Dialer/java/com/android/dialer/callrecord/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay-lineage/packages/apps/Dialer/java/com/android/dialer/callrecord/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc234-mnc15-en-rGB/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc234-mnc15-en-rGB/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc234-mnc15-en-rIN/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc234-mnc15-en-rIN/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc234-mnc15/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc234-mnc15/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc02-en-rGB/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc02-en-rGB/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc02-en-rIN/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc02-en-rIN/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc02/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc02/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc04-en-rGB/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc04-en-rGB/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc04-en-rIN/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc04-en-rIN/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc04/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc04/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc09-en-rGB/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc09-en-rGB/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc09-en-rIN/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc09-en-rIN/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc09/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc09/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc310-mnc004/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc310-mnc004/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc310-mnc120/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc310-mnc120/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc310-mnc260/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc310-mnc260/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc310-mnc410/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc310-mnc410/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc311-mnc480/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc311-mnc480/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc460-mnc03/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc460-mnc03/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc460-mnc11/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values-mcc460-mnc11/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/power_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/core/res/res/xml/power_profile.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Bluetooth/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/packages/apps/Bluetooth/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/CarrierConfig/res/xml/vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/packages/apps/CarrierConfig/res/xml/vendor.xml -------------------------------------------------------------------------------- /overlay/packages/apps/CellBroadcastReceiver/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/packages/apps/CellBroadcastReceiver/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/packages/apps/Settings/res/values/arrays.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telecomm/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/packages/services/Telecomm/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telephony/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/overlay/packages/services/Telephony/res/values/config.xml -------------------------------------------------------------------------------- /proprietary-files-twrp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/proprietary-files-twrp.txt -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /recovery/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/recovery/Android.mk -------------------------------------------------------------------------------- /recovery/recovery_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/recovery/recovery_updater.cpp -------------------------------------------------------------------------------- /releasetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/releasetools.py -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/Android.mk -------------------------------------------------------------------------------- /rootdir/bin/init.class_main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/bin/init.class_main.sh -------------------------------------------------------------------------------- /rootdir/bin/init.goodix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/bin/init.goodix.sh -------------------------------------------------------------------------------- /rootdir/bin/init.qcom.early_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/bin/init.qcom.early_boot.sh -------------------------------------------------------------------------------- /rootdir/bin/init.qcom.post_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/bin/init.qcom.post_boot.sh -------------------------------------------------------------------------------- /rootdir/bin/init.qcom.sensors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/bin/init.qcom.sensors.sh -------------------------------------------------------------------------------- /rootdir/bin/init.qcom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/bin/init.qcom.sh -------------------------------------------------------------------------------- /rootdir/bin/init.qcom.usb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/bin/init.qcom.usb.sh -------------------------------------------------------------------------------- /rootdir/etc/fstab.qcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/etc/fstab.qcom -------------------------------------------------------------------------------- /rootdir/etc/init.msm.usb.configfs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/etc/init.msm.usb.configfs.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/etc/init.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/etc/init.qcom.usb.rc -------------------------------------------------------------------------------- /rootdir/etc/init.target.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/etc/init.target.rc -------------------------------------------------------------------------------- /rootdir/etc/recovery.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/etc/recovery.fstab -------------------------------------------------------------------------------- /rootdir/etc/ueventd.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/rootdir/etc/ueventd.qcom.rc -------------------------------------------------------------------------------- /seccomp/mediacodec-seccomp.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/seccomp/mediacodec-seccomp.policy -------------------------------------------------------------------------------- /seccomp/mediaextractor-seccomp.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/seccomp/mediaextractor-seccomp.policy -------------------------------------------------------------------------------- /sensors/hals.conf: -------------------------------------------------------------------------------- 1 | sensors.ssc.so 2 | -------------------------------------------------------------------------------- /sepolicy/private/system_app.te: -------------------------------------------------------------------------------- 1 | hal_client_domain(system_app, hal_mlipay) 2 | -------------------------------------------------------------------------------- /sepolicy/public/attributes: -------------------------------------------------------------------------------- 1 | # HALs 2 | hal_attribute(mlipay) 3 | -------------------------------------------------------------------------------- /sepolicy/vendor/app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/app.te -------------------------------------------------------------------------------- /sepolicy/vendor/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/file.te -------------------------------------------------------------------------------- /sepolicy/vendor/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/file_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/hal_camera_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/hal_camera_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_fingerprint_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/hal_fingerprint_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_ir_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/hal_ir_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_mlipay.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/hal_mlipay.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_perf_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/hal_perf_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_power_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/hal_power_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_sensors_default.te: -------------------------------------------------------------------------------- 1 | allow hal_sensors_default sysfs:file { read open }; 2 | -------------------------------------------------------------------------------- /sepolicy/vendor/hwservice.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/hwservice.te -------------------------------------------------------------------------------- /sepolicy/vendor/hwservice_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/hwservice_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/init_fingerprint.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/init_fingerprint.te -------------------------------------------------------------------------------- /sepolicy/vendor/netmgrd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/netmgrd.te -------------------------------------------------------------------------------- /sepolicy/vendor/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/property.te -------------------------------------------------------------------------------- /sepolicy/vendor/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/property_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/rild.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/rild.te -------------------------------------------------------------------------------- /sepolicy/vendor/system_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/system_app.te -------------------------------------------------------------------------------- /sepolicy/vendor/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/system_server.te -------------------------------------------------------------------------------- /sepolicy/vendor/tee.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/tee.te -------------------------------------------------------------------------------- /sepolicy/vendor/thermal-engine.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/thermal-engine.te -------------------------------------------------------------------------------- /sepolicy/vendor/vendor_init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/vendor_init.te -------------------------------------------------------------------------------- /sepolicy/vendor/vndservice.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/vndservice.te -------------------------------------------------------------------------------- /sepolicy/vendor/vndservice_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/sepolicy/vendor/vndservice_contexts -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/setup-makefiles.sh -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/system.prop -------------------------------------------------------------------------------- /twrp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/twrp.mk -------------------------------------------------------------------------------- /twrp/recovery/root/etc/twrp.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/twrp/recovery/root/etc/twrp.fstab -------------------------------------------------------------------------------- /twrp/recovery/root/init.recovery.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/twrp/recovery/root/init.recovery.qcom.rc -------------------------------------------------------------------------------- /twrp/recovery/root/init.recovery.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/twrp/recovery/root/init.recovery.usb.rc -------------------------------------------------------------------------------- /twrp/recovery/root/ueventd.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/twrp/recovery/root/ueventd.qcom.rc -------------------------------------------------------------------------------- /twrp/recovery/root/ueventd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/twrp/recovery/root/ueventd.rc -------------------------------------------------------------------------------- /update-sha1sums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/update-sha1sums.py -------------------------------------------------------------------------------- /vendor_framework_compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/vendor_framework_compatibility_matrix.xml -------------------------------------------------------------------------------- /vendor_prop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/vendor_prop.mk -------------------------------------------------------------------------------- /vndk/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/vndk/Android.mk -------------------------------------------------------------------------------- /vndk/vndk-sp-libs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/vndk/vndk-sp-libs.mk -------------------------------------------------------------------------------- /wifi/WCNSS_qcom_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/wifi/WCNSS_qcom_cfg.ini -------------------------------------------------------------------------------- /wifi/p2p_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/wifi/p2p_supplicant_overlay.conf -------------------------------------------------------------------------------- /wifi/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuaiYiHu/android_device_xiaomi_whyred-oss/HEAD/wifi/wpa_supplicant_overlay.conf --------------------------------------------------------------------------------