├── Android.bp ├── Android.mk ├── BoardConfigCommon.mk ├── README.md ├── audio ├── audio_effects.xml ├── audio_io_policy.conf ├── audio_policy_configuration.xml ├── audio_tuning_mixer.txt └── bluetooth_qti_hearing_aid_audio_policy_configuration.xml ├── bluetooth └── include │ └── bdroid_buildcfg.h ├── bootctrl └── Android.bp ├── common.mk ├── config.fs ├── configs ├── camera_cnf.txt ├── privapp-permissions-hotword.xml ├── qti_whitelist.xml └── telephony_system-ext_privapp-permissions-qti.xml ├── extract-files.sh ├── gps ├── Android.bp ├── Android.mk ├── CleanSpec.mk ├── Makefile.am ├── android │ ├── 1.0 │ │ ├── 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.0-service-qti.rc │ │ ├── android.hardware.gnss@1.0-service-qti.xml │ │ ├── location_api │ │ │ ├── BatchingAPIClient.cpp │ │ │ ├── BatchingAPIClient.h │ │ │ ├── GeofenceAPIClient.cpp │ │ │ ├── GeofenceAPIClient.h │ │ │ ├── GnssAPIClient.cpp │ │ │ ├── GnssAPIClient.h │ │ │ ├── LocationUtil.cpp │ │ │ ├── LocationUtil.h │ │ │ ├── MeasurementAPIClient.cpp │ │ │ └── MeasurementAPIClient.h │ │ └── service.cpp │ ├── 1.1 │ │ ├── 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 │ │ ├── android.hardware.gnss@1.1-service-qti.xml │ │ ├── location_api │ │ │ ├── BatchingAPIClient.cpp │ │ │ ├── BatchingAPIClient.h │ │ │ ├── GeofenceAPIClient.cpp │ │ │ ├── GeofenceAPIClient.h │ │ │ ├── GnssAPIClient.cpp │ │ │ ├── GnssAPIClient.h │ │ │ ├── LocationUtil.cpp │ │ │ ├── LocationUtil.h │ │ │ ├── MeasurementAPIClient.cpp │ │ │ └── MeasurementAPIClient.h │ │ └── service.cpp │ ├── 2.0 │ │ ├── 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 │ │ ├── GnssVisibilityControl.cpp │ │ ├── GnssVisibilityControl.h │ │ ├── MeasurementCorrections.cpp │ │ ├── MeasurementCorrections.h │ │ ├── android.hardware.gnss@2.0-service-qti.rc │ │ ├── android.hardware.gnss@2.0-service-qti.xml │ │ ├── location_api │ │ │ ├── BatchingAPIClient.cpp │ │ │ ├── BatchingAPIClient.h │ │ │ ├── GeofenceAPIClient.cpp │ │ │ ├── GeofenceAPIClient.h │ │ │ ├── GnssAPIClient.cpp │ │ │ ├── GnssAPIClient.h │ │ │ ├── LocationUtil.cpp │ │ │ ├── LocationUtil.h │ │ │ ├── MeasurementAPIClient.cpp │ │ │ └── MeasurementAPIClient.h │ │ └── service.cpp │ ├── 2.1 │ │ ├── AGnss.cpp │ │ ├── AGnss.h │ │ ├── AGnssRil.cpp │ │ ├── AGnssRil.h │ │ ├── Android.mk │ │ ├── Gnss.cpp │ │ ├── Gnss.h │ │ ├── GnssAntennaInfo.cpp │ │ ├── GnssAntennaInfo.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 │ │ ├── GnssVisibilityControl.cpp │ │ ├── GnssVisibilityControl.h │ │ ├── MeasurementCorrections.cpp │ │ ├── MeasurementCorrections.h │ │ ├── android.hardware.gnss@2.1-service-qti.rc │ │ ├── android.hardware.gnss@2.1-service-qti.xml │ │ ├── location_api │ │ │ ├── BatchingAPIClient.cpp │ │ │ ├── BatchingAPIClient.h │ │ │ ├── GeofenceAPIClient.cpp │ │ │ ├── GeofenceAPIClient.h │ │ │ ├── GnssAPIClient.cpp │ │ │ ├── GnssAPIClient.h │ │ │ ├── LocationUtil.cpp │ │ │ ├── LocationUtil.h │ │ │ ├── MeasurementAPIClient.cpp │ │ │ └── MeasurementAPIClient.h │ │ └── service.cpp │ ├── Android.mk │ └── utils │ │ ├── Android.bp │ │ ├── battery_listener.cpp │ │ └── battery_listener.h ├── batching │ ├── Android.bp │ ├── BatchingAdapter.cpp │ ├── BatchingAdapter.h │ ├── Makefile.am │ ├── configure.ac │ ├── location-batching.pc.in │ └── location_batching.cpp ├── configure.ac ├── core │ ├── Android.bp │ ├── ContextBase.cpp │ ├── ContextBase.h │ ├── EngineHubProxyBase.h │ ├── LBSProxyBase.h │ ├── LocAdapterBase.cpp │ ├── LocAdapterBase.h │ ├── LocAdapterProxyBase.h │ ├── LocApiBase.cpp │ ├── LocApiBase.h │ ├── LocContext.cpp │ ├── LocContext.h │ ├── Makefile.am │ ├── SystemStatus.cpp │ ├── SystemStatus.h │ ├── SystemStatusOsObserver.cpp │ ├── SystemStatusOsObserver.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 ├── etc │ ├── Android.bp │ ├── apdr.conf │ ├── flp.conf │ ├── gnss_antenna_info.conf │ ├── gps.conf │ ├── izat.conf │ ├── lowi.conf │ ├── sap.conf │ └── seccomp_policy │ │ ├── gnss@2.0-base.policy │ │ └── gnss@2.0-xtra-daemon.policy ├── geofence │ ├── Android.bp │ ├── GeofenceAdapter.cpp │ ├── GeofenceAdapter.h │ ├── Makefile.am │ ├── configure.ac │ ├── location-geofence.pc.in │ └── location_geofence.cpp ├── gnss │ ├── Agps.cpp │ ├── Agps.h │ ├── Android.bp │ ├── GnssAdapter.cpp │ ├── GnssAdapter.h │ ├── Makefile.am │ ├── NativeAgpsHandler.cpp │ ├── NativeAgpsHandler.h │ ├── XtraSystemStatusObserver.cpp │ ├── XtraSystemStatusObserver.h │ └── location_gnss.cpp ├── gps_vendor_board.mk ├── gps_vendor_product.mk ├── loc-hal.pc.in ├── location │ ├── Android.bp │ ├── ILocationAPI.h │ ├── LocationAPI.cpp │ ├── LocationAPI.h │ ├── LocationAPIClientBase.cpp │ ├── LocationAPIClientBase.h │ ├── LocationDataTypes.h │ ├── Makefile.am │ ├── configure.ac │ ├── location-api.pc.in │ └── location_interface.h ├── pla │ ├── Android.bp │ ├── android │ │ └── loc_pla.h │ └── oe │ │ └── loc_pla.h └── utils │ ├── Android.bp │ ├── LocHeap.cpp │ ├── LocHeap.h │ ├── LocIpc.cpp │ ├── LocIpc.h │ ├── LocLoggerBase.h │ ├── LocSharedLock.h │ ├── LocThread.cpp │ ├── LocThread.h │ ├── LocTimer.cpp │ ├── LocTimer.h │ ├── LocUnorderedSetMap.h │ ├── LogBuffer.cpp │ ├── LogBuffer.h │ ├── Makefile.am │ ├── MsgTask.cpp │ ├── MsgTask.h │ ├── SkipList.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 ├── gpt-utils ├── Android.bp ├── gpt-utils.cpp ├── gpt-utils.h ├── recovery-ufs-bsg.cpp └── recovery-ufs-bsg.h ├── hidl ├── compatibility_matrix.xml ├── manifest_lahaina.xml ├── manifest_lineage.xml ├── manifest_xiaomi.xml ├── vendor_framework_compatibility_matrix.xml └── xiaomi_framework_compatibility_matrix.xml ├── lineage.dependencies ├── media ├── init.qti.media.rc ├── init.qti.media.sh ├── lahaina │ ├── media_codecs_lahaina.xml │ ├── media_codecs_performance_lahaina.xml │ └── media_profiles_lahaina.xml ├── media_codecs_vendor_audio.xml ├── shima │ ├── media_codecs_performance_shima_v1.xml │ ├── media_codecs_shima_v1.xml │ └── media_profiles_shima_v1.xml └── yupik │ ├── media_codecs_performance_yupik_v1.xml │ ├── media_codecs_yupik_v1.xml │ └── media_profiles_yupik_v1.xml ├── odm.prop ├── overlay-lineage ├── 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 │ │ │ └── config.xml │ │ └── packages │ │ └── SystemUI │ │ └── res │ │ ├── values-sw372dp │ │ └── dimens.xml │ │ └── values │ │ └── config.xml └── packages │ ├── apps │ └── Settings │ │ └── res │ │ └── values │ │ └── config.xml │ └── services │ └── Telephony │ └── res │ └── values │ └── config.xml ├── power └── power-mode.cpp ├── proprietary-files.txt ├── rootdir ├── bin │ ├── init.kernel.post_boot-lahaina.sh │ ├── init.kernel.post_boot-shima.sh │ ├── init.kernel.post_boot-yupik.sh │ ├── init.kernel.post_boot.sh │ ├── init.qcom.sh │ └── vendor_modprobe.sh └── etc │ ├── charger_fstab.qcom │ ├── fstab.qcom │ ├── init.batterysecret.rc │ ├── init.mi_thermald.rc │ ├── init.qcom.rc │ ├── init.qcom.usb.rc │ ├── init.qti.kernel.rc │ ├── init.recovery.qcom.rc │ ├── init.target.rc │ └── ueventd.rc ├── rro_overlays ├── CarrierConfigOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── xml │ │ └── vendor.xml └── WifiOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ └── values │ └── config.xml ├── sensors ├── Android.bp ├── HalProxy.cpp ├── HalProxyCallback.cpp ├── android.hardware.sensors@2.1-service.xiaomi_sm8350-multihal.rc ├── android.hardware.sensors@2.1-xiaomi_sm8350-multihal.xml └── service.cpp ├── sepolicy ├── public │ └── attributes └── vendor │ ├── app.te │ ├── attributes │ ├── battery.te │ ├── file_contexts │ ├── genfs_contexts │ ├── hal_audio_default.te │ ├── hal_bluetooth_default.te │ ├── hal_bootctl_default.te │ ├── hal_camera_default.te │ ├── hal_fingerprint_default.te │ ├── hal_ir_default.te │ ├── hal_lineage_powershare_default.te │ ├── hal_mlipay.te │ ├── hal_nfc_default.te │ ├── hal_perf_default.te │ ├── hal_power_default.te │ ├── hal_sensors_default.te │ ├── hal_wifi_default.te │ ├── hwservice_contexts │ ├── mi_thermald.te │ ├── property_contexts │ ├── qti_init_shell.te │ ├── sensors.te │ ├── tee.te │ └── vendor_hal_citsensorservice_xiaomi.te ├── setup-makefiles.sh ├── system.prop ├── system_ext.prop ├── udfps ├── Android.bp └── UdfpsHandler.cpp ├── vendor.prop ├── vibrator ├── aidl │ ├── Android.bp │ ├── Vibrator.cpp │ ├── include │ │ └── Vibrator.h │ ├── service.cpp │ ├── vendor.qti.hardware.vibrator.service.xiaomi_sm8350.rc │ └── vendor.qti.hardware.vibrator.service.xiaomi_sm8350.xml ├── effect │ ├── Android.bp │ ├── effect.cpp │ └── effect.h └── excluded-input-devices.xml └── wifi ├── WCNSS_qcom_cfg.ini ├── p2p_supplicant_overlay.conf └── wpa_supplicant_overlay.conf /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/Android.bp -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/Android.mk -------------------------------------------------------------------------------- /BoardConfigCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/BoardConfigCommon.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/README.md -------------------------------------------------------------------------------- /audio/audio_effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/audio/audio_effects.xml -------------------------------------------------------------------------------- /audio/audio_io_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/audio/audio_io_policy.conf -------------------------------------------------------------------------------- /audio/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/audio/audio_policy_configuration.xml -------------------------------------------------------------------------------- /audio/audio_tuning_mixer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/audio/audio_tuning_mixer.txt -------------------------------------------------------------------------------- /audio/bluetooth_qti_hearing_aid_audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/audio/bluetooth_qti_hearing_aid_audio_policy_configuration.xml -------------------------------------------------------------------------------- /bluetooth/include/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/bluetooth/include/bdroid_buildcfg.h -------------------------------------------------------------------------------- /bootctrl/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/bootctrl/Android.bp -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/common.mk -------------------------------------------------------------------------------- /config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/config.fs -------------------------------------------------------------------------------- /configs/camera_cnf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/configs/camera_cnf.txt -------------------------------------------------------------------------------- /configs/privapp-permissions-hotword.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/configs/privapp-permissions-hotword.xml -------------------------------------------------------------------------------- /configs/qti_whitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/configs/qti_whitelist.xml -------------------------------------------------------------------------------- /configs/telephony_system-ext_privapp-permissions-qti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/configs/telephony_system-ext_privapp-permissions-qti.xml -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/extract-files.sh -------------------------------------------------------------------------------- /gps/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/Android.bp -------------------------------------------------------------------------------- /gps/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/Android.mk -------------------------------------------------------------------------------- /gps/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/CleanSpec.mk -------------------------------------------------------------------------------- /gps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/Makefile.am -------------------------------------------------------------------------------- /gps/android/1.0/AGnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/AGnss.cpp -------------------------------------------------------------------------------- /gps/android/1.0/AGnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/AGnss.h -------------------------------------------------------------------------------- /gps/android/1.0/AGnssRil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/AGnssRil.cpp -------------------------------------------------------------------------------- /gps/android/1.0/AGnssRil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/AGnssRil.h -------------------------------------------------------------------------------- /gps/android/1.0/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/Android.mk -------------------------------------------------------------------------------- /gps/android/1.0/Gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/Gnss.cpp -------------------------------------------------------------------------------- /gps/android/1.0/Gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/Gnss.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssBatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssBatching.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssBatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssBatching.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssConfiguration.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssConfiguration.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssDebug.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssDebug.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssGeofencing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssGeofencing.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssGeofencing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssGeofencing.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssMeasurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssMeasurement.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssMeasurement.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssNi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssNi.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssNi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/GnssNi.h -------------------------------------------------------------------------------- /gps/android/1.0/android.hardware.gnss@1.0-service-qti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/android.hardware.gnss@1.0-service-qti.rc -------------------------------------------------------------------------------- /gps/android/1.0/android.hardware.gnss@1.0-service-qti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/android.hardware.gnss@1.0-service-qti.xml -------------------------------------------------------------------------------- /gps/android/1.0/location_api/BatchingAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/location_api/BatchingAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.0/location_api/BatchingAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/location_api/BatchingAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.0/location_api/GeofenceAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/location_api/GeofenceAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.0/location_api/GeofenceAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/location_api/GeofenceAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.0/location_api/GnssAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/location_api/GnssAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.0/location_api/GnssAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/location_api/GnssAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.0/location_api/LocationUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/location_api/LocationUtil.cpp -------------------------------------------------------------------------------- /gps/android/1.0/location_api/LocationUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/location_api/LocationUtil.h -------------------------------------------------------------------------------- /gps/android/1.0/location_api/MeasurementAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/location_api/MeasurementAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.0/location_api/MeasurementAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/location_api/MeasurementAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.0/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.0/service.cpp -------------------------------------------------------------------------------- /gps/android/1.1/AGnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/AGnss.cpp -------------------------------------------------------------------------------- /gps/android/1.1/AGnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/AGnss.h -------------------------------------------------------------------------------- /gps/android/1.1/AGnssRil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/AGnssRil.cpp -------------------------------------------------------------------------------- /gps/android/1.1/AGnssRil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/AGnssRil.h -------------------------------------------------------------------------------- /gps/android/1.1/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/Android.mk -------------------------------------------------------------------------------- /gps/android/1.1/Gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/Gnss.cpp -------------------------------------------------------------------------------- /gps/android/1.1/Gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/Gnss.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssBatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssBatching.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssBatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssBatching.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssConfiguration.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssConfiguration.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssDebug.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssDebug.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssGeofencing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssGeofencing.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssGeofencing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssGeofencing.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssMeasurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssMeasurement.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssMeasurement.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssNi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssNi.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssNi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/GnssNi.h -------------------------------------------------------------------------------- /gps/android/1.1/android.hardware.gnss@1.1-service-qti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/android.hardware.gnss@1.1-service-qti.rc -------------------------------------------------------------------------------- /gps/android/1.1/android.hardware.gnss@1.1-service-qti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/android.hardware.gnss@1.1-service-qti.xml -------------------------------------------------------------------------------- /gps/android/1.1/location_api/BatchingAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/location_api/BatchingAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.1/location_api/BatchingAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/location_api/BatchingAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.1/location_api/GeofenceAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/location_api/GeofenceAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.1/location_api/GeofenceAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/location_api/GeofenceAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.1/location_api/GnssAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/location_api/GnssAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.1/location_api/GnssAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/location_api/GnssAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.1/location_api/LocationUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/location_api/LocationUtil.cpp -------------------------------------------------------------------------------- /gps/android/1.1/location_api/LocationUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/location_api/LocationUtil.h -------------------------------------------------------------------------------- /gps/android/1.1/location_api/MeasurementAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/location_api/MeasurementAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.1/location_api/MeasurementAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/location_api/MeasurementAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.1/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/1.1/service.cpp -------------------------------------------------------------------------------- /gps/android/2.0/AGnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/AGnss.cpp -------------------------------------------------------------------------------- /gps/android/2.0/AGnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/AGnss.h -------------------------------------------------------------------------------- /gps/android/2.0/AGnssRil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/AGnssRil.cpp -------------------------------------------------------------------------------- /gps/android/2.0/AGnssRil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/AGnssRil.h -------------------------------------------------------------------------------- /gps/android/2.0/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/Android.mk -------------------------------------------------------------------------------- /gps/android/2.0/Gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/Gnss.cpp -------------------------------------------------------------------------------- /gps/android/2.0/Gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/Gnss.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssBatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssBatching.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssBatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssBatching.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssConfiguration.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssConfiguration.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssDebug.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssDebug.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssGeofencing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssGeofencing.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssGeofencing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssGeofencing.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssMeasurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssMeasurement.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssMeasurement.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssNi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssNi.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssNi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssNi.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssVisibilityControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssVisibilityControl.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssVisibilityControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/GnssVisibilityControl.h -------------------------------------------------------------------------------- /gps/android/2.0/MeasurementCorrections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/MeasurementCorrections.cpp -------------------------------------------------------------------------------- /gps/android/2.0/MeasurementCorrections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/MeasurementCorrections.h -------------------------------------------------------------------------------- /gps/android/2.0/android.hardware.gnss@2.0-service-qti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/android.hardware.gnss@2.0-service-qti.rc -------------------------------------------------------------------------------- /gps/android/2.0/android.hardware.gnss@2.0-service-qti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/android.hardware.gnss@2.0-service-qti.xml -------------------------------------------------------------------------------- /gps/android/2.0/location_api/BatchingAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/location_api/BatchingAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.0/location_api/BatchingAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/location_api/BatchingAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.0/location_api/GeofenceAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/location_api/GeofenceAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.0/location_api/GeofenceAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/location_api/GeofenceAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.0/location_api/GnssAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/location_api/GnssAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.0/location_api/GnssAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/location_api/GnssAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.0/location_api/LocationUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/location_api/LocationUtil.cpp -------------------------------------------------------------------------------- /gps/android/2.0/location_api/LocationUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/location_api/LocationUtil.h -------------------------------------------------------------------------------- /gps/android/2.0/location_api/MeasurementAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/location_api/MeasurementAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.0/location_api/MeasurementAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/location_api/MeasurementAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.0/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.0/service.cpp -------------------------------------------------------------------------------- /gps/android/2.1/AGnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/AGnss.cpp -------------------------------------------------------------------------------- /gps/android/2.1/AGnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/AGnss.h -------------------------------------------------------------------------------- /gps/android/2.1/AGnssRil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/AGnssRil.cpp -------------------------------------------------------------------------------- /gps/android/2.1/AGnssRil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/AGnssRil.h -------------------------------------------------------------------------------- /gps/android/2.1/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/Android.mk -------------------------------------------------------------------------------- /gps/android/2.1/Gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/Gnss.cpp -------------------------------------------------------------------------------- /gps/android/2.1/Gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/Gnss.h -------------------------------------------------------------------------------- /gps/android/2.1/GnssAntennaInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssAntennaInfo.cpp -------------------------------------------------------------------------------- /gps/android/2.1/GnssAntennaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssAntennaInfo.h -------------------------------------------------------------------------------- /gps/android/2.1/GnssBatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssBatching.cpp -------------------------------------------------------------------------------- /gps/android/2.1/GnssBatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssBatching.h -------------------------------------------------------------------------------- /gps/android/2.1/GnssConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssConfiguration.cpp -------------------------------------------------------------------------------- /gps/android/2.1/GnssConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssConfiguration.h -------------------------------------------------------------------------------- /gps/android/2.1/GnssDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssDebug.cpp -------------------------------------------------------------------------------- /gps/android/2.1/GnssDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssDebug.h -------------------------------------------------------------------------------- /gps/android/2.1/GnssGeofencing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssGeofencing.cpp -------------------------------------------------------------------------------- /gps/android/2.1/GnssGeofencing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssGeofencing.h -------------------------------------------------------------------------------- /gps/android/2.1/GnssMeasurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssMeasurement.cpp -------------------------------------------------------------------------------- /gps/android/2.1/GnssMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssMeasurement.h -------------------------------------------------------------------------------- /gps/android/2.1/GnssNi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssNi.cpp -------------------------------------------------------------------------------- /gps/android/2.1/GnssNi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssNi.h -------------------------------------------------------------------------------- /gps/android/2.1/GnssVisibilityControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssVisibilityControl.cpp -------------------------------------------------------------------------------- /gps/android/2.1/GnssVisibilityControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/GnssVisibilityControl.h -------------------------------------------------------------------------------- /gps/android/2.1/MeasurementCorrections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/MeasurementCorrections.cpp -------------------------------------------------------------------------------- /gps/android/2.1/MeasurementCorrections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/MeasurementCorrections.h -------------------------------------------------------------------------------- /gps/android/2.1/android.hardware.gnss@2.1-service-qti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/android.hardware.gnss@2.1-service-qti.rc -------------------------------------------------------------------------------- /gps/android/2.1/android.hardware.gnss@2.1-service-qti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/android.hardware.gnss@2.1-service-qti.xml -------------------------------------------------------------------------------- /gps/android/2.1/location_api/BatchingAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/location_api/BatchingAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.1/location_api/BatchingAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/location_api/BatchingAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.1/location_api/GeofenceAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/location_api/GeofenceAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.1/location_api/GeofenceAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/location_api/GeofenceAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.1/location_api/GnssAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/location_api/GnssAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.1/location_api/GnssAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/location_api/GnssAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.1/location_api/LocationUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/location_api/LocationUtil.cpp -------------------------------------------------------------------------------- /gps/android/2.1/location_api/LocationUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/location_api/LocationUtil.h -------------------------------------------------------------------------------- /gps/android/2.1/location_api/MeasurementAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/location_api/MeasurementAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.1/location_api/MeasurementAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/location_api/MeasurementAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.1/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/2.1/service.cpp -------------------------------------------------------------------------------- /gps/android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/Android.mk -------------------------------------------------------------------------------- /gps/android/utils/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/utils/Android.bp -------------------------------------------------------------------------------- /gps/android/utils/battery_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/utils/battery_listener.cpp -------------------------------------------------------------------------------- /gps/android/utils/battery_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/android/utils/battery_listener.h -------------------------------------------------------------------------------- /gps/batching/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/batching/Android.bp -------------------------------------------------------------------------------- /gps/batching/BatchingAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/batching/BatchingAdapter.cpp -------------------------------------------------------------------------------- /gps/batching/BatchingAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/batching/BatchingAdapter.h -------------------------------------------------------------------------------- /gps/batching/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/batching/Makefile.am -------------------------------------------------------------------------------- /gps/batching/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/batching/configure.ac -------------------------------------------------------------------------------- /gps/batching/location-batching.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/batching/location-batching.pc.in -------------------------------------------------------------------------------- /gps/batching/location_batching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/batching/location_batching.cpp -------------------------------------------------------------------------------- /gps/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/configure.ac -------------------------------------------------------------------------------- /gps/core/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/Android.bp -------------------------------------------------------------------------------- /gps/core/ContextBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/ContextBase.cpp -------------------------------------------------------------------------------- /gps/core/ContextBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/ContextBase.h -------------------------------------------------------------------------------- /gps/core/EngineHubProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/EngineHubProxyBase.h -------------------------------------------------------------------------------- /gps/core/LBSProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/LBSProxyBase.h -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/LocAdapterBase.cpp -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/LocAdapterBase.h -------------------------------------------------------------------------------- /gps/core/LocAdapterProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/LocAdapterProxyBase.h -------------------------------------------------------------------------------- /gps/core/LocApiBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/LocApiBase.cpp -------------------------------------------------------------------------------- /gps/core/LocApiBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/LocApiBase.h -------------------------------------------------------------------------------- /gps/core/LocContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/LocContext.cpp -------------------------------------------------------------------------------- /gps/core/LocContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/LocContext.h -------------------------------------------------------------------------------- /gps/core/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/Makefile.am -------------------------------------------------------------------------------- /gps/core/SystemStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/SystemStatus.cpp -------------------------------------------------------------------------------- /gps/core/SystemStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/SystemStatus.h -------------------------------------------------------------------------------- /gps/core/SystemStatusOsObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/SystemStatusOsObserver.cpp -------------------------------------------------------------------------------- /gps/core/SystemStatusOsObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/SystemStatusOsObserver.h -------------------------------------------------------------------------------- /gps/core/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/configure.ac -------------------------------------------------------------------------------- /gps/core/data-items/DataItemConcreteTypesBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/data-items/DataItemConcreteTypesBase.h -------------------------------------------------------------------------------- /gps/core/data-items/DataItemId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/data-items/DataItemId.h -------------------------------------------------------------------------------- /gps/core/data-items/DataItemsFactoryProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/data-items/DataItemsFactoryProxy.cpp -------------------------------------------------------------------------------- /gps/core/data-items/DataItemsFactoryProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/data-items/DataItemsFactoryProxy.h -------------------------------------------------------------------------------- /gps/core/data-items/IDataItemCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/data-items/IDataItemCore.h -------------------------------------------------------------------------------- /gps/core/loc-core.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/loc-core.pc.in -------------------------------------------------------------------------------- /gps/core/loc_core_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/loc_core_log.cpp -------------------------------------------------------------------------------- /gps/core/loc_core_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/loc_core_log.h -------------------------------------------------------------------------------- /gps/core/observer/IDataItemObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/observer/IDataItemObserver.h -------------------------------------------------------------------------------- /gps/core/observer/IDataItemSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/observer/IDataItemSubscription.h -------------------------------------------------------------------------------- /gps/core/observer/IFrameworkActionReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/observer/IFrameworkActionReq.h -------------------------------------------------------------------------------- /gps/core/observer/IOsObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/core/observer/IOsObserver.h -------------------------------------------------------------------------------- /gps/etc/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/etc/Android.bp -------------------------------------------------------------------------------- /gps/etc/apdr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/etc/apdr.conf -------------------------------------------------------------------------------- /gps/etc/flp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/etc/flp.conf -------------------------------------------------------------------------------- /gps/etc/gnss_antenna_info.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/etc/gnss_antenna_info.conf -------------------------------------------------------------------------------- /gps/etc/gps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/etc/gps.conf -------------------------------------------------------------------------------- /gps/etc/izat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/etc/izat.conf -------------------------------------------------------------------------------- /gps/etc/lowi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/etc/lowi.conf -------------------------------------------------------------------------------- /gps/etc/sap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/etc/sap.conf -------------------------------------------------------------------------------- /gps/etc/seccomp_policy/gnss@2.0-base.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/etc/seccomp_policy/gnss@2.0-base.policy -------------------------------------------------------------------------------- /gps/etc/seccomp_policy/gnss@2.0-xtra-daemon.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/etc/seccomp_policy/gnss@2.0-xtra-daemon.policy -------------------------------------------------------------------------------- /gps/geofence/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/geofence/Android.bp -------------------------------------------------------------------------------- /gps/geofence/GeofenceAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/geofence/GeofenceAdapter.cpp -------------------------------------------------------------------------------- /gps/geofence/GeofenceAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/geofence/GeofenceAdapter.h -------------------------------------------------------------------------------- /gps/geofence/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/geofence/Makefile.am -------------------------------------------------------------------------------- /gps/geofence/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/geofence/configure.ac -------------------------------------------------------------------------------- /gps/geofence/location-geofence.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/geofence/location-geofence.pc.in -------------------------------------------------------------------------------- /gps/geofence/location_geofence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/geofence/location_geofence.cpp -------------------------------------------------------------------------------- /gps/gnss/Agps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gnss/Agps.cpp -------------------------------------------------------------------------------- /gps/gnss/Agps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gnss/Agps.h -------------------------------------------------------------------------------- /gps/gnss/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gnss/Android.bp -------------------------------------------------------------------------------- /gps/gnss/GnssAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gnss/GnssAdapter.cpp -------------------------------------------------------------------------------- /gps/gnss/GnssAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gnss/GnssAdapter.h -------------------------------------------------------------------------------- /gps/gnss/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gnss/Makefile.am -------------------------------------------------------------------------------- /gps/gnss/NativeAgpsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gnss/NativeAgpsHandler.cpp -------------------------------------------------------------------------------- /gps/gnss/NativeAgpsHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gnss/NativeAgpsHandler.h -------------------------------------------------------------------------------- /gps/gnss/XtraSystemStatusObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gnss/XtraSystemStatusObserver.cpp -------------------------------------------------------------------------------- /gps/gnss/XtraSystemStatusObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gnss/XtraSystemStatusObserver.h -------------------------------------------------------------------------------- /gps/gnss/location_gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gnss/location_gnss.cpp -------------------------------------------------------------------------------- /gps/gps_vendor_board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gps_vendor_board.mk -------------------------------------------------------------------------------- /gps/gps_vendor_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/gps_vendor_product.mk -------------------------------------------------------------------------------- /gps/loc-hal.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/loc-hal.pc.in -------------------------------------------------------------------------------- /gps/location/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/location/Android.bp -------------------------------------------------------------------------------- /gps/location/ILocationAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/location/ILocationAPI.h -------------------------------------------------------------------------------- /gps/location/LocationAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/location/LocationAPI.cpp -------------------------------------------------------------------------------- /gps/location/LocationAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/location/LocationAPI.h -------------------------------------------------------------------------------- /gps/location/LocationAPIClientBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/location/LocationAPIClientBase.cpp -------------------------------------------------------------------------------- /gps/location/LocationAPIClientBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/location/LocationAPIClientBase.h -------------------------------------------------------------------------------- /gps/location/LocationDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/location/LocationDataTypes.h -------------------------------------------------------------------------------- /gps/location/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/location/Makefile.am -------------------------------------------------------------------------------- /gps/location/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/location/configure.ac -------------------------------------------------------------------------------- /gps/location/location-api.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/location/location-api.pc.in -------------------------------------------------------------------------------- /gps/location/location_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/location/location_interface.h -------------------------------------------------------------------------------- /gps/pla/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/pla/Android.bp -------------------------------------------------------------------------------- /gps/pla/android/loc_pla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/pla/android/loc_pla.h -------------------------------------------------------------------------------- /gps/pla/oe/loc_pla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/pla/oe/loc_pla.h -------------------------------------------------------------------------------- /gps/utils/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/Android.bp -------------------------------------------------------------------------------- /gps/utils/LocHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LocHeap.cpp -------------------------------------------------------------------------------- /gps/utils/LocHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LocHeap.h -------------------------------------------------------------------------------- /gps/utils/LocIpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LocIpc.cpp -------------------------------------------------------------------------------- /gps/utils/LocIpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LocIpc.h -------------------------------------------------------------------------------- /gps/utils/LocLoggerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LocLoggerBase.h -------------------------------------------------------------------------------- /gps/utils/LocSharedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LocSharedLock.h -------------------------------------------------------------------------------- /gps/utils/LocThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LocThread.cpp -------------------------------------------------------------------------------- /gps/utils/LocThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LocThread.h -------------------------------------------------------------------------------- /gps/utils/LocTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LocTimer.cpp -------------------------------------------------------------------------------- /gps/utils/LocTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LocTimer.h -------------------------------------------------------------------------------- /gps/utils/LocUnorderedSetMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LocUnorderedSetMap.h -------------------------------------------------------------------------------- /gps/utils/LogBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LogBuffer.cpp -------------------------------------------------------------------------------- /gps/utils/LogBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/LogBuffer.h -------------------------------------------------------------------------------- /gps/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/Makefile.am -------------------------------------------------------------------------------- /gps/utils/MsgTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/MsgTask.cpp -------------------------------------------------------------------------------- /gps/utils/MsgTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/MsgTask.h -------------------------------------------------------------------------------- /gps/utils/SkipList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/SkipList.h -------------------------------------------------------------------------------- /gps/utils/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/configure.ac -------------------------------------------------------------------------------- /gps/utils/gps-utils.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/gps-utils.pc.in -------------------------------------------------------------------------------- /gps/utils/gps_extended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/gps_extended.h -------------------------------------------------------------------------------- /gps/utils/gps_extended_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/gps_extended_c.h -------------------------------------------------------------------------------- /gps/utils/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/linked_list.c -------------------------------------------------------------------------------- /gps/utils/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/linked_list.h -------------------------------------------------------------------------------- /gps/utils/loc_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_cfg.cpp -------------------------------------------------------------------------------- /gps/utils/loc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_cfg.h -------------------------------------------------------------------------------- /gps/utils/loc_gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_gps.h -------------------------------------------------------------------------------- /gps/utils/loc_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_log.cpp -------------------------------------------------------------------------------- /gps/utils/loc_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_log.h -------------------------------------------------------------------------------- /gps/utils/loc_misc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_misc_utils.cpp -------------------------------------------------------------------------------- /gps/utils/loc_misc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_misc_utils.h -------------------------------------------------------------------------------- /gps/utils/loc_nmea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_nmea.cpp -------------------------------------------------------------------------------- /gps/utils/loc_nmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_nmea.h -------------------------------------------------------------------------------- /gps/utils/loc_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_target.cpp -------------------------------------------------------------------------------- /gps/utils/loc_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_target.h -------------------------------------------------------------------------------- /gps/utils/loc_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/loc_timer.h -------------------------------------------------------------------------------- /gps/utils/log_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/log_util.h -------------------------------------------------------------------------------- /gps/utils/msg_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/msg_q.c -------------------------------------------------------------------------------- /gps/utils/msg_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gps/utils/msg_q.h -------------------------------------------------------------------------------- /gpt-utils/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gpt-utils/Android.bp -------------------------------------------------------------------------------- /gpt-utils/gpt-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gpt-utils/gpt-utils.cpp -------------------------------------------------------------------------------- /gpt-utils/gpt-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gpt-utils/gpt-utils.h -------------------------------------------------------------------------------- /gpt-utils/recovery-ufs-bsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gpt-utils/recovery-ufs-bsg.cpp -------------------------------------------------------------------------------- /gpt-utils/recovery-ufs-bsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/gpt-utils/recovery-ufs-bsg.h -------------------------------------------------------------------------------- /hidl/compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/hidl/compatibility_matrix.xml -------------------------------------------------------------------------------- /hidl/manifest_lahaina.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/hidl/manifest_lahaina.xml -------------------------------------------------------------------------------- /hidl/manifest_lineage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/hidl/manifest_lineage.xml -------------------------------------------------------------------------------- /hidl/manifest_xiaomi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/hidl/manifest_xiaomi.xml -------------------------------------------------------------------------------- /hidl/vendor_framework_compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/hidl/vendor_framework_compatibility_matrix.xml -------------------------------------------------------------------------------- /hidl/xiaomi_framework_compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/hidl/xiaomi_framework_compatibility_matrix.xml -------------------------------------------------------------------------------- /lineage.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/lineage.dependencies -------------------------------------------------------------------------------- /media/init.qti.media.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/init.qti.media.rc -------------------------------------------------------------------------------- /media/init.qti.media.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/init.qti.media.sh -------------------------------------------------------------------------------- /media/lahaina/media_codecs_lahaina.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/lahaina/media_codecs_lahaina.xml -------------------------------------------------------------------------------- /media/lahaina/media_codecs_performance_lahaina.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/lahaina/media_codecs_performance_lahaina.xml -------------------------------------------------------------------------------- /media/lahaina/media_profiles_lahaina.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/lahaina/media_profiles_lahaina.xml -------------------------------------------------------------------------------- /media/media_codecs_vendor_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/media_codecs_vendor_audio.xml -------------------------------------------------------------------------------- /media/shima/media_codecs_performance_shima_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/shima/media_codecs_performance_shima_v1.xml -------------------------------------------------------------------------------- /media/shima/media_codecs_shima_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/shima/media_codecs_shima_v1.xml -------------------------------------------------------------------------------- /media/shima/media_profiles_shima_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/shima/media_profiles_shima_v1.xml -------------------------------------------------------------------------------- /media/yupik/media_codecs_performance_yupik_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/yupik/media_codecs_performance_yupik_v1.xml -------------------------------------------------------------------------------- /media/yupik/media_codecs_yupik_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/yupik/media_codecs_yupik_v1.xml -------------------------------------------------------------------------------- /media/yupik/media_profiles_yupik_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/media/yupik/media_profiles_yupik_v1.xml -------------------------------------------------------------------------------- /odm.prop: -------------------------------------------------------------------------------- 1 | # Qcom 2 | ro.vendor.qti.va_odm.support=1 3 | -------------------------------------------------------------------------------- /overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/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/renoir-development/android_device_xiaomi_sm8350-common/HEAD/overlay-lineage/packages/apps/Dialer/java/com/android/dialer/callrecord/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values-sw372dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/overlay/frameworks/base/packages/SystemUI/res/values-sw372dp/dimens.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/overlay/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/overlay/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telephony/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/overlay/packages/services/Telephony/res/values/config.xml -------------------------------------------------------------------------------- /power/power-mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/power/power-mode.cpp -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /rootdir/bin/init.kernel.post_boot-lahaina.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/bin/init.kernel.post_boot-lahaina.sh -------------------------------------------------------------------------------- /rootdir/bin/init.kernel.post_boot-shima.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/bin/init.kernel.post_boot-shima.sh -------------------------------------------------------------------------------- /rootdir/bin/init.kernel.post_boot-yupik.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/bin/init.kernel.post_boot-yupik.sh -------------------------------------------------------------------------------- /rootdir/bin/init.kernel.post_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/bin/init.kernel.post_boot.sh -------------------------------------------------------------------------------- /rootdir/bin/init.qcom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/bin/init.qcom.sh -------------------------------------------------------------------------------- /rootdir/bin/vendor_modprobe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/bin/vendor_modprobe.sh -------------------------------------------------------------------------------- /rootdir/etc/charger_fstab.qcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/etc/charger_fstab.qcom -------------------------------------------------------------------------------- /rootdir/etc/fstab.qcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/etc/fstab.qcom -------------------------------------------------------------------------------- /rootdir/etc/init.batterysecret.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/etc/init.batterysecret.rc -------------------------------------------------------------------------------- /rootdir/etc/init.mi_thermald.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/etc/init.mi_thermald.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/etc/init.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/etc/init.qcom.usb.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qti.kernel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/etc/init.qti.kernel.rc -------------------------------------------------------------------------------- /rootdir/etc/init.recovery.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/etc/init.recovery.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/init.target.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/etc/init.target.rc -------------------------------------------------------------------------------- /rootdir/etc/ueventd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rootdir/etc/ueventd.rc -------------------------------------------------------------------------------- /rro_overlays/CarrierConfigOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rro_overlays/CarrierConfigOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/CarrierConfigOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rro_overlays/CarrierConfigOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/CarrierConfigOverlay/res/xml/vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rro_overlays/CarrierConfigOverlay/res/xml/vendor.xml -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rro_overlays/WifiOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rro_overlays/WifiOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/rro_overlays/WifiOverlay/res/values/config.xml -------------------------------------------------------------------------------- /sensors/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sensors/Android.bp -------------------------------------------------------------------------------- /sensors/HalProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sensors/HalProxy.cpp -------------------------------------------------------------------------------- /sensors/HalProxyCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sensors/HalProxyCallback.cpp -------------------------------------------------------------------------------- /sensors/android.hardware.sensors@2.1-service.xiaomi_sm8350-multihal.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sensors/android.hardware.sensors@2.1-service.xiaomi_sm8350-multihal.rc -------------------------------------------------------------------------------- /sensors/android.hardware.sensors@2.1-xiaomi_sm8350-multihal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sensors/android.hardware.sensors@2.1-xiaomi_sm8350-multihal.xml -------------------------------------------------------------------------------- /sensors/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sensors/service.cpp -------------------------------------------------------------------------------- /sepolicy/public/attributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/public/attributes -------------------------------------------------------------------------------- /sepolicy/vendor/app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/app.te -------------------------------------------------------------------------------- /sepolicy/vendor/attributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/attributes -------------------------------------------------------------------------------- /sepolicy/vendor/battery.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/battery.te -------------------------------------------------------------------------------- /sepolicy/vendor/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/file_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/genfs_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/genfs_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/hal_audio_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_audio_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_bluetooth_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_bluetooth_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_bootctl_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_bootctl_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_camera_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_camera_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_fingerprint_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_fingerprint_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_ir_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_ir_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_lineage_powershare_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_lineage_powershare_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_mlipay.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_mlipay.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_nfc_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_nfc_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_perf_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_perf_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_power_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_power_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_sensors_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hal_sensors_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_wifi_default.te: -------------------------------------------------------------------------------- 1 | allow hal_wifi_default self:capability sys_module; 2 | -------------------------------------------------------------------------------- /sepolicy/vendor/hwservice_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/hwservice_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/mi_thermald.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/mi_thermald.te -------------------------------------------------------------------------------- /sepolicy/vendor/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/property_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/qti_init_shell.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/qti_init_shell.te -------------------------------------------------------------------------------- /sepolicy/vendor/sensors.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/sensors.te -------------------------------------------------------------------------------- /sepolicy/vendor/tee.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/tee.te -------------------------------------------------------------------------------- /sepolicy/vendor/vendor_hal_citsensorservice_xiaomi.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/sepolicy/vendor/vendor_hal_citsensorservice_xiaomi.te -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/setup-makefiles.sh -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/system.prop -------------------------------------------------------------------------------- /system_ext.prop: -------------------------------------------------------------------------------- 1 | # DPM 2 | persist.vendor.dpm.feature=11 3 | -------------------------------------------------------------------------------- /udfps/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/udfps/Android.bp -------------------------------------------------------------------------------- /udfps/UdfpsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/udfps/UdfpsHandler.cpp -------------------------------------------------------------------------------- /vendor.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/vendor.prop -------------------------------------------------------------------------------- /vibrator/aidl/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/vibrator/aidl/Android.bp -------------------------------------------------------------------------------- /vibrator/aidl/Vibrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/vibrator/aidl/Vibrator.cpp -------------------------------------------------------------------------------- /vibrator/aidl/include/Vibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/vibrator/aidl/include/Vibrator.h -------------------------------------------------------------------------------- /vibrator/aidl/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/vibrator/aidl/service.cpp -------------------------------------------------------------------------------- /vibrator/aidl/vendor.qti.hardware.vibrator.service.xiaomi_sm8350.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/vibrator/aidl/vendor.qti.hardware.vibrator.service.xiaomi_sm8350.rc -------------------------------------------------------------------------------- /vibrator/aidl/vendor.qti.hardware.vibrator.service.xiaomi_sm8350.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/vibrator/aidl/vendor.qti.hardware.vibrator.service.xiaomi_sm8350.xml -------------------------------------------------------------------------------- /vibrator/effect/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/vibrator/effect/Android.bp -------------------------------------------------------------------------------- /vibrator/effect/effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/vibrator/effect/effect.cpp -------------------------------------------------------------------------------- /vibrator/effect/effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/vibrator/effect/effect.h -------------------------------------------------------------------------------- /vibrator/excluded-input-devices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/vibrator/excluded-input-devices.xml -------------------------------------------------------------------------------- /wifi/WCNSS_qcom_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/wifi/WCNSS_qcom_cfg.ini -------------------------------------------------------------------------------- /wifi/p2p_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/wifi/p2p_supplicant_overlay.conf -------------------------------------------------------------------------------- /wifi/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renoir-development/android_device_xiaomi_sm8350-common/HEAD/wifi/wpa_supplicant_overlay.conf --------------------------------------------------------------------------------