├── .gitignore ├── Android.bp ├── Android.mk ├── BoardConfigCommon.mk ├── README.md ├── audio ├── audio_effects.xml ├── audio_output_policy.conf ├── audio_platform_info_i2s.xml ├── audio_policy_configuration.xml ├── audio_policy_volumes.xml ├── audio_tuning_mixer_tasha.txt ├── default_volume_tables.xml ├── listen_platform_info.xml ├── sound_trigger_mixer_paths_wcd9330.xml └── sound_trigger_platform_info.xml ├── bluetooth └── bdroid_buildcfg.h ├── camera ├── Android.mk ├── CleanSpec.mk ├── MODULE_LICENSE_BSD ├── QCamera2 │ ├── Android.mk │ ├── HAL │ │ ├── QCamera2HWI.cpp │ │ ├── QCamera2HWI.h │ │ ├── QCamera2HWICallbacks.cpp │ │ ├── QCameraAllocator.h │ │ ├── QCameraChannel.cpp │ │ ├── QCameraChannel.h │ │ ├── QCameraMem.cpp │ │ ├── QCameraMem.h │ │ ├── QCameraMuxer.cpp │ │ ├── QCameraMuxer.h │ │ ├── QCameraParameters.cpp │ │ ├── QCameraParameters.h │ │ ├── QCameraParametersIntf.cpp │ │ ├── QCameraParametersIntf.h │ │ ├── QCameraPostProc.cpp │ │ ├── QCameraPostProc.h │ │ ├── QCameraStateMachine.cpp │ │ ├── QCameraStateMachine.h │ │ ├── QCameraStream.cpp │ │ ├── QCameraStream.h │ │ ├── QCameraThermalAdapter.cpp │ │ ├── QCameraThermalAdapter.h │ │ ├── android │ │ │ └── QCamera2External.h │ │ ├── test │ │ │ └── qcamera_test.h │ │ ├── tsMakeuplib │ │ │ └── include │ │ │ │ ├── ts_detectface_engine.h │ │ │ │ ├── ts_makeup_data.h │ │ │ │ ├── ts_makeup_engine.h │ │ │ │ └── ts_makeup_image.h │ │ └── wrapper │ │ │ ├── QualcommCamera.cpp │ │ │ └── QualcommCamera.h │ ├── HAL3 │ │ ├── QCamera3Channel.cpp │ │ ├── QCamera3Channel.h │ │ ├── QCamera3CropRegionMapper.cpp │ │ ├── QCamera3CropRegionMapper.h │ │ ├── QCamera3HALHeader.h │ │ ├── QCamera3HWI.cpp │ │ ├── QCamera3HWI.h │ │ ├── QCamera3Mem.cpp │ │ ├── QCamera3Mem.h │ │ ├── QCamera3PostProc.cpp │ │ ├── QCamera3PostProc.h │ │ ├── QCamera3Stream.cpp │ │ ├── QCamera3Stream.h │ │ ├── QCamera3StreamMem.cpp │ │ ├── QCamera3StreamMem.h │ │ ├── QCamera3VendorTags.cpp │ │ ├── QCamera3VendorTags.h │ │ ├── QCameraFormat.h │ │ └── android │ │ │ └── QCamera3External.h │ ├── QCamera2Factory.cpp │ ├── QCamera2Factory.h │ ├── QCamera2Hal.cpp │ ├── stack │ │ ├── Android.mk │ │ ├── common │ │ │ ├── cam_intf.h │ │ │ ├── cam_list.h │ │ │ ├── cam_queue.h │ │ │ ├── cam_semaphore.h │ │ │ ├── cam_types.h │ │ │ ├── mm_camera_interface.h │ │ │ └── mm_jpeg_interface.h │ │ ├── mm-camera-interface │ │ │ ├── Android.mk │ │ │ ├── inc │ │ │ │ ├── mm_camera.h │ │ │ │ ├── mm_camera_dbg.h │ │ │ │ └── mm_camera_sock.h │ │ │ └── src │ │ │ │ ├── mm_camera.c │ │ │ │ ├── mm_camera_channel.c │ │ │ │ ├── mm_camera_interface.c │ │ │ │ ├── mm_camera_sock.c │ │ │ │ ├── mm_camera_stream.c │ │ │ │ └── mm_camera_thread.c │ │ ├── mm-jpeg-interface │ │ │ ├── Android.mk │ │ │ ├── inc │ │ │ │ ├── mm_jpeg.h │ │ │ │ ├── mm_jpeg_dbg.h │ │ │ │ ├── mm_jpeg_inlines.h │ │ │ │ ├── mm_jpeg_ionbuf.h │ │ │ │ └── mm_jpeg_mpo.h │ │ │ └── src │ │ │ │ ├── mm_jpeg.c │ │ │ │ ├── mm_jpeg_exif.c │ │ │ │ ├── mm_jpeg_interface.c │ │ │ │ ├── mm_jpeg_ionbuf.c │ │ │ │ ├── mm_jpeg_mpo_composer.c │ │ │ │ ├── mm_jpeg_queue.c │ │ │ │ ├── mm_jpegdec.c │ │ │ │ └── mm_jpegdec_interface.c │ │ └── mm-lib2d-interface │ │ │ ├── Android.mk │ │ │ ├── inc │ │ │ └── mm_lib2d.h │ │ │ └── src │ │ │ └── mm_lib2d.c │ └── util │ │ ├── QCameraBufferMaps.cpp │ │ ├── QCameraBufferMaps.h │ │ ├── QCameraCmdThread.cpp │ │ ├── QCameraCmdThread.h │ │ ├── QCameraCommon.cpp │ │ ├── QCameraCommon.h │ │ ├── QCameraDisplay.cpp │ │ ├── QCameraDisplay.h │ │ ├── QCameraFlash.cpp │ │ ├── QCameraFlash.h │ │ ├── QCameraPerf.cpp │ │ ├── QCameraPerf.h │ │ ├── QCameraQueue.cpp │ │ ├── QCameraQueue.h │ │ └── QCameraTrace.h ├── QCameraParameters.h ├── QCamera_Intf.h ├── mm-image-codec │ ├── Android.mk │ ├── qexif │ │ ├── qexif.h │ │ └── qmpo.h │ └── qomx_core │ │ ├── Android.mk │ │ ├── QOMX_JpegExtensions.h │ │ ├── qomx_core.c │ │ └── qomx_core.h └── usbcamcore │ ├── inc │ ├── QCameraMjpegDecode.h │ ├── QCameraUsbParm.h │ ├── QCameraUsbPriv.h │ └── QualcommUsbCamera.h │ └── src │ ├── QCameraMjpegDecode.cpp │ ├── QCameraUsbParm.cpp │ └── QualcommUsbCamera.cpp ├── charger └── images │ ├── battery_fail.png │ ├── battery_scale.png │ └── cap_nums.png ├── compatibility_matrix.xml ├── config.fs ├── configs ├── component-overrides.xml ├── media_codecs.xml ├── media_codecs_performance.xml ├── media_profiles_V1_0.xml ├── msm_irqbalance.conf ├── nfc │ ├── libnfc-nci.conf │ ├── libnfc-nxp.conf │ └── libnfc-nxp_RF.conf ├── powerhint.xml ├── public.libraries.txt ├── qti_whitelist.xml ├── sec_config ├── system-privapp-permissions-qti.xml ├── system_ext-privapp-permissions-qti.xml └── thermal-engine.conf ├── consumerir-transmitter ├── .clang-format ├── .gitignore ├── Android.mk ├── AndroidManifest.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystore.jks ├── proguard.flags └── src │ └── org │ └── lineageos │ └── consumerirtransmitter │ ├── Constants.java │ ├── ConsumerirTransmitterService.java │ ├── IControl.java │ ├── MainApplication.java │ ├── Startup.java │ ├── beans │ └── IRCMDBean.java │ └── utils │ ├── IRCMDCacheManager.java │ ├── Log.java │ └── ReflectionUtils.java ├── consumerir ├── .clang-format ├── Android.bp ├── ConsumerIr.cpp ├── ConsumerIr.h ├── android.hardware.ir@1.0-service.leeco_8996.rc └── service.cpp ├── devicesettings ├── .clang-format ├── Android.mk ├── AndroidManifest.xml ├── proguard.flags ├── res │ ├── drawable │ │ ├── ic_camera_alt.xml │ │ └── ic_settings_lepref.xml │ ├── values │ │ └── styles.xml │ └── xml │ │ └── leeco_settings_panel.xml └── src │ └── org │ └── lineageos │ └── settings │ └── device │ ├── BootCompletedReceiver.java │ ├── CameraFocusPreferenceActivity.java │ ├── CameraFocusPreferenceFragment.java │ ├── LeecoPreferenceActivity.java │ ├── LeecoPreferenceFragment.java │ └── SettingsUtils.java ├── doze ├── Android.mk ├── AndroidManifest.xml ├── proguard.flags ├── res │ ├── color │ │ └── switch_bar_bg.xml │ ├── drawable │ │ ├── ic_hand.xml │ │ ├── ic_pickup.xml │ │ ├── ic_pocket.xml │ │ └── switchbar_background.xml │ ├── layout │ │ ├── doze.xml │ │ └── switch_bar.xml │ ├── values-night │ │ └── colors.xml │ ├── values │ │ ├── colors.xml │ │ └── styles.xml │ └── xml │ │ └── doze_settings.xml └── src │ └── org │ └── lineageos │ └── settings │ └── doze │ ├── BootCompletedReceiver.java │ ├── DozeService.java │ ├── DozeSettingsActivity.java │ ├── DozeSettingsFragment.java │ ├── ProximitySensor.java │ ├── TiltSensor.java │ └── Utils.java ├── extract-files.sh ├── framework_manifest.xml ├── gps ├── 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 │ │ ├── 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 │ ├── Android.mk │ ├── measurement_corrections │ │ └── 1.0 │ │ │ ├── MeasurementCorrections.cpp │ │ │ └── MeasurementCorrections.h │ ├── utils │ │ ├── Android.mk │ │ ├── battery_listener.cpp │ │ └── battery_listener.h │ └── visibility_control │ │ └── 1.0 │ │ ├── GnssVisibilityControl.cpp │ │ └── GnssVisibilityControl.h ├── batching │ ├── Android.mk │ ├── BatchingAdapter.cpp │ ├── BatchingAdapter.h │ ├── Makefile.am │ ├── configure.ac │ ├── location-batching.pc.in │ └── location_batching.cpp ├── build │ └── target_specific_features.mk ├── configure.ac ├── core │ ├── Android.mk │ ├── 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 │ ├── flp.conf │ ├── gps.conf │ ├── izat.conf │ ├── lowi.conf │ ├── sap.conf │ └── xtwifi.conf ├── geofence │ ├── Android.mk │ ├── GeofenceAdapter.cpp │ ├── GeofenceAdapter.h │ ├── Makefile.am │ ├── configure.ac │ ├── location-geofence.pc.in │ └── location_geofence.cpp ├── gnss │ ├── Agps.cpp │ ├── Agps.h │ ├── Android.mk │ ├── GnssAdapter.cpp │ ├── GnssAdapter.h │ ├── Makefile.am │ ├── XtraSystemStatusObserver.cpp │ ├── XtraSystemStatusObserver.h │ └── location_gnss.cpp ├── gps_vendor_board.mk ├── gps_vendor_product.mk ├── loc-hal.pc.in ├── location │ ├── Android.mk │ ├── 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.mk │ ├── android │ │ └── loc_pla.h │ └── oe │ │ └── loc_pla.h └── utils │ ├── Android.mk │ ├── LocHeap.cpp │ ├── LocHeap.h │ ├── LocIpc.cpp │ ├── LocIpc.h │ ├── LocSharedLock.h │ ├── LocThread.cpp │ ├── LocThread.h │ ├── LocTimer.cpp │ ├── LocTimer.h │ ├── LocUnorderedSetMap.h │ ├── Makefile.am │ ├── MsgTask.cpp │ ├── MsgTask.h │ ├── configure.ac │ ├── gps-utils.pc.in │ ├── gps_extended.h │ ├── gps_extended_c.h │ ├── linked_list.c │ ├── linked_list.h │ ├── loc_cfg.cpp │ ├── loc_cfg.h │ ├── loc_gps.h │ ├── loc_log.cpp │ ├── loc_log.h │ ├── loc_misc_utils.cpp │ ├── loc_misc_utils.h │ ├── loc_nmea.cpp │ ├── loc_nmea.h │ ├── loc_target.cpp │ ├── loc_target.h │ ├── loc_timer.h │ ├── log_util.h │ ├── msg_q.c │ └── msg_q.h ├── health ├── Android.bp ├── CycleCountBackupRestore.cpp ├── CycleCountBackupRestore.h ├── HealthService.cpp ├── LearnedCapacityBackupRestore.cpp ├── LearnedCapacityBackupRestore.h └── android.hardware.health@2.0-service.leeco_8996.rc ├── include └── camera │ └── CameraParametersExtra.h ├── init ├── Android.bp └── init_leeco_msm8996.cpp ├── keylayout ├── atmel_ts_key.kl ├── gpio-keys.kl └── qpnp_pon.kl ├── libhidl └── Android.mk ├── liblight ├── Android.bp ├── Light.cpp ├── Light.h ├── android.hardware.light@2.0-service.leeco_8996.rc ├── android.hardware.light@2.0-service.leeco_8996.xml └── service.cpp ├── libshims ├── Android.bp ├── jstring.h ├── libshims.cpp ├── logging.cpp ├── strdup16to8.cpp └── strdup8to16.cpp ├── lineage.dependencies ├── manifest.xml ├── msm8996.mk ├── overlay-lineage ├── frameworks │ └── base │ │ └── packages │ │ └── SystemUI │ │ └── res │ │ └── values │ │ └── config.xml └── lineage-sdk │ └── lineage │ └── res │ └── res │ └── values │ └── config.xml ├── overlay ├── frameworks │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ ├── values-mcc234-mnc15-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc234-mnc15-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc234-mnc15 │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc02-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc02-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc02 │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc04-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc04-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc04 │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc09-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc09-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc09 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc004 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc120 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc260 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc410 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc480 │ │ │ └── config.xml │ │ │ ├── values-mcc312-mnc530 │ │ │ └── config.xml │ │ │ ├── values-mcc313-mnc100 │ │ │ └── config.xml │ │ │ ├── values-mcc454-mnc03 │ │ │ └── config.xml │ │ │ ├── values-mcc454-mnc04 │ │ │ └── config.xml │ │ │ ├── values-mcc455-mnc02 │ │ │ └── config.xml │ │ │ ├── values-mcc455-mnc07 │ │ │ └── config.xml │ │ │ ├── values-mcc460-mnc03 │ │ │ └── config.xml │ │ │ ├── values-mcc460-mnc11 │ │ │ └── config.xml │ │ │ └── values │ │ │ └── config.xml │ │ └── packages │ │ ├── SettingsProvider │ │ └── res │ │ │ └── values │ │ │ └── defaults.xml │ │ └── SystemUI │ │ └── res │ │ └── values │ │ └── config.xml └── packages │ ├── apps │ ├── CarrierConfig │ │ └── res │ │ │ └── xml │ │ │ └── vendor.xml │ ├── CellBroadcastReceiver │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── Dialer │ │ └── java │ │ │ └── com │ │ │ └── android │ │ │ └── dialer │ │ │ └── callrecord │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── Mms │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── Settings │ │ └── res │ │ │ └── values │ │ │ ├── arrays.xml │ │ │ ├── config.xml │ │ │ └── dimens.xml │ └── Snap │ │ └── res │ │ └── values │ │ └── config.xml │ └── services │ ├── Telecomm │ └── res │ │ └── values │ │ └── config.xml │ └── Telephony │ └── res │ └── values │ └── config.xml ├── prebuilt ├── deunify.sh ├── devinfo.sh ├── partprobe.sh ├── sgdisk ├── toybox └── unlock-vendor.sh ├── proprietary-files.txt ├── recovery ├── Android.mk └── recovery_updater.cpp ├── releasetools.py ├── rootdir ├── Android.mk └── etc │ ├── fstab.qcom │ ├── init.proc_touchpanel.sh │ ├── init.qcom.early_boot.sh │ ├── init.qcom.power.rc │ ├── init.qcom.rc │ ├── init.qcom.sh │ ├── init.qcom.usb.rc │ ├── init.recovery.qcom.rc │ └── ueventd.qcom.rc ├── rro_overlays ├── TetheringOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml └── WifiOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ └── values │ └── config.xml ├── seccomp_policy ├── mediacodec-seccomp.policy └── mediaextractor-seccomp.policy ├── sepolicy ├── private │ └── hwservice_contexts └── vendor │ ├── bootanim.te │ ├── cameraserver.te │ ├── cnd.te │ ├── consumer_ir_device.te │ ├── device.te │ ├── domain.te │ ├── energyawareness.te │ ├── file.te │ ├── file_contexts │ ├── genfs_contexts │ ├── hal_audio_default.te │ ├── hal_camera_default.te │ ├── hal_cas_default.te │ ├── hal_drm_widevine.te │ ├── hal_graphics_composer_default.te │ ├── hal_health_default.te │ ├── hal_ir_leeco_msm8996.te │ ├── hal_light_default.te │ ├── hal_lineage_touch_default.te │ ├── hal_memtrack_default.te │ ├── hal_nfc_default.te │ ├── hal_perf_default.te │ ├── hal_sensors_default.te │ ├── hal_wifi_default.te │ ├── hostapd.te │ ├── hvdcp.te │ ├── hwservice.te │ ├── ifaa_daemon.te │ ├── ims.te │ ├── init.te │ ├── ipacm.te │ ├── keystore.te │ ├── mm-qcamerad.te │ ├── netmgrd.te │ ├── platform_app.te │ ├── ppd.te │ ├── property.te │ ├── property_contexts │ ├── qseeproxy.te │ ├── qti.te │ ├── qti_init_shell.te │ ├── quicksetsdk_app.te │ ├── radio.te │ ├── rild.te │ ├── seapp_contexts │ ├── sensors.te │ ├── service.te │ ├── servicemanager.te │ ├── surfaceflinger.te │ ├── system_app.te │ ├── system_server.te │ ├── thermal_engine.te │ ├── time_daemon.te │ ├── ueventd.te │ ├── untrusted_app.te │ ├── vendor_charger.te │ ├── vendor_init.te │ ├── vendor_init_proc_touchpanel.te │ ├── vold.te │ └── zygote.te ├── setup-makefiles.sh ├── touch ├── Android.bp ├── KeyDisabler.cpp ├── KeyDisabler.h ├── service.cpp ├── vendor.lineage.touch@1.0-service.leeco_8996.rc └── vendor.lineage.touch@1.0-service.leeco_8996.xml ├── update-sha1sums.py ├── vendor_prop.mk └── wifi ├── WCNSS_qcom_cfg.ini ├── p2p_supplicant_overlay.conf └── wpa_supplicant_overlay.conf /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- 1 | soong_namespace { 2 | } 3 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/Android.mk -------------------------------------------------------------------------------- /BoardConfigCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/BoardConfigCommon.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/README.md -------------------------------------------------------------------------------- /audio/audio_effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/audio/audio_effects.xml -------------------------------------------------------------------------------- /audio/audio_output_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/audio/audio_output_policy.conf -------------------------------------------------------------------------------- /audio/audio_platform_info_i2s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/audio/audio_platform_info_i2s.xml -------------------------------------------------------------------------------- /audio/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/audio/audio_policy_configuration.xml -------------------------------------------------------------------------------- /audio/audio_policy_volumes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/audio/audio_policy_volumes.xml -------------------------------------------------------------------------------- /audio/audio_tuning_mixer_tasha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/audio/audio_tuning_mixer_tasha.txt -------------------------------------------------------------------------------- /audio/default_volume_tables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/audio/default_volume_tables.xml -------------------------------------------------------------------------------- /audio/listen_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/audio/listen_platform_info.xml -------------------------------------------------------------------------------- /audio/sound_trigger_mixer_paths_wcd9330.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/audio/sound_trigger_mixer_paths_wcd9330.xml -------------------------------------------------------------------------------- /audio/sound_trigger_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/audio/sound_trigger_platform_info.xml -------------------------------------------------------------------------------- /bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/bluetooth/bdroid_buildcfg.h -------------------------------------------------------------------------------- /camera/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /camera/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/CleanSpec.mk -------------------------------------------------------------------------------- /camera/MODULE_LICENSE_BSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /camera/QCamera2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCamera2HWI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCamera2HWI.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCamera2HWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCamera2HWI.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCamera2HWICallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCamera2HWICallbacks.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraAllocator.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraChannel.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraChannel.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraMem.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraMem.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraMuxer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraMuxer.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraMuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraMuxer.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraParameters.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraParameters.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraParametersIntf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraParametersIntf.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraParametersIntf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraParametersIntf.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraPostProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraPostProc.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraPostProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraPostProc.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraStateMachine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraStateMachine.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraStateMachine.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraStream.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraStream.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraThermalAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraThermalAdapter.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraThermalAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/QCameraThermalAdapter.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/android/QCamera2External.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/android/QCamera2External.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/test/qcamera_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/test/qcamera_test.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/tsMakeuplib/include/ts_detectface_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/tsMakeuplib/include/ts_detectface_engine.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_data.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_engine.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_image.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/wrapper/QualcommCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/wrapper/QualcommCamera.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/wrapper/QualcommCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL/wrapper/QualcommCamera.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3Channel.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3Channel.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3CropRegionMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3CropRegionMapper.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3CropRegionMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3CropRegionMapper.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3HALHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3HALHeader.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3HWI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3HWI.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3HWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3HWI.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3Mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3Mem.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3Mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3Mem.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3PostProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3PostProc.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3PostProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3PostProc.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3Stream.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3Stream.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3StreamMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3StreamMem.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3StreamMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3StreamMem.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3VendorTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3VendorTags.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCamera3VendorTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCamera3VendorTags.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/QCameraFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/QCameraFormat.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL3/android/QCamera3External.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/HAL3/android/QCamera3External.h -------------------------------------------------------------------------------- /camera/QCamera2/QCamera2Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/QCamera2Factory.cpp -------------------------------------------------------------------------------- /camera/QCamera2/QCamera2Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/QCamera2Factory.h -------------------------------------------------------------------------------- /camera/QCamera2/QCamera2Hal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/QCamera2Hal.cpp -------------------------------------------------------------------------------- /camera/QCamera2/stack/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/cam_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/common/cam_intf.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/cam_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/common/cam_list.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/cam_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/common/cam_queue.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/cam_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/common/cam_semaphore.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/cam_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/common/cam_types.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/mm_camera_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/common/mm_camera_interface.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/mm_jpeg_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/common/mm_jpeg_interface.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-camera-interface/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/inc/mm_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-camera-interface/inc/mm_camera.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/inc/mm_camera_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-camera-interface/inc/mm_camera_dbg.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/inc/mm_camera_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-camera-interface/inc/mm_camera_sock.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/src/mm_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-camera-interface/src/mm_camera.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/src/mm_camera_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-camera-interface/src/mm_camera_channel.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/src/mm_camera_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-camera-interface/src/mm_camera_interface.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/src/mm_camera_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-camera-interface/src/mm_camera_sock.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/src/mm_camera_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-camera-interface/src/mm_camera_stream.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/src/mm_camera_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-camera-interface/src/mm_camera_thread.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_dbg.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_inlines.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_ionbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_ionbuf.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_mpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_mpo.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_exif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_exif.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_interface.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_ionbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_ionbuf.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_mpo_composer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_mpo_composer.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_queue.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpegdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpegdec.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpegdec_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpegdec_interface.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-lib2d-interface/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-lib2d-interface/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-lib2d-interface/inc/mm_lib2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-lib2d-interface/inc/mm_lib2d.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-lib2d-interface/src/mm_lib2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/stack/mm-lib2d-interface/src/mm_lib2d.c -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraBufferMaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraBufferMaps.cpp -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraBufferMaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraBufferMaps.h -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraCmdThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraCmdThread.cpp -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraCmdThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraCmdThread.h -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraCommon.cpp -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraCommon.h -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraDisplay.cpp -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraDisplay.h -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraFlash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraFlash.cpp -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraFlash.h -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraPerf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraPerf.cpp -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraPerf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraPerf.h -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraQueue.cpp -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraQueue.h -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera2/util/QCameraTrace.h -------------------------------------------------------------------------------- /camera/QCameraParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCameraParameters.h -------------------------------------------------------------------------------- /camera/QCamera_Intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/QCamera_Intf.h -------------------------------------------------------------------------------- /camera/mm-image-codec/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/mm-image-codec/Android.mk -------------------------------------------------------------------------------- /camera/mm-image-codec/qexif/qexif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/mm-image-codec/qexif/qexif.h -------------------------------------------------------------------------------- /camera/mm-image-codec/qexif/qmpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/mm-image-codec/qexif/qmpo.h -------------------------------------------------------------------------------- /camera/mm-image-codec/qomx_core/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/mm-image-codec/qomx_core/Android.mk -------------------------------------------------------------------------------- /camera/mm-image-codec/qomx_core/QOMX_JpegExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/mm-image-codec/qomx_core/QOMX_JpegExtensions.h -------------------------------------------------------------------------------- /camera/mm-image-codec/qomx_core/qomx_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/mm-image-codec/qomx_core/qomx_core.c -------------------------------------------------------------------------------- /camera/mm-image-codec/qomx_core/qomx_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/mm-image-codec/qomx_core/qomx_core.h -------------------------------------------------------------------------------- /camera/usbcamcore/inc/QCameraMjpegDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/usbcamcore/inc/QCameraMjpegDecode.h -------------------------------------------------------------------------------- /camera/usbcamcore/inc/QCameraUsbParm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/usbcamcore/inc/QCameraUsbParm.h -------------------------------------------------------------------------------- /camera/usbcamcore/inc/QCameraUsbPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/usbcamcore/inc/QCameraUsbPriv.h -------------------------------------------------------------------------------- /camera/usbcamcore/inc/QualcommUsbCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/usbcamcore/inc/QualcommUsbCamera.h -------------------------------------------------------------------------------- /camera/usbcamcore/src/QCameraMjpegDecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/usbcamcore/src/QCameraMjpegDecode.cpp -------------------------------------------------------------------------------- /camera/usbcamcore/src/QCameraUsbParm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/usbcamcore/src/QCameraUsbParm.cpp -------------------------------------------------------------------------------- /camera/usbcamcore/src/QualcommUsbCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/camera/usbcamcore/src/QualcommUsbCamera.cpp -------------------------------------------------------------------------------- /charger/images/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/charger/images/battery_fail.png -------------------------------------------------------------------------------- /charger/images/battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/charger/images/battery_scale.png -------------------------------------------------------------------------------- /charger/images/cap_nums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/charger/images/cap_nums.png -------------------------------------------------------------------------------- /compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/compatibility_matrix.xml -------------------------------------------------------------------------------- /config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/config.fs -------------------------------------------------------------------------------- /configs/component-overrides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/component-overrides.xml -------------------------------------------------------------------------------- /configs/media_codecs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/media_codecs.xml -------------------------------------------------------------------------------- /configs/media_codecs_performance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/media_codecs_performance.xml -------------------------------------------------------------------------------- /configs/media_profiles_V1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/media_profiles_V1_0.xml -------------------------------------------------------------------------------- /configs/msm_irqbalance.conf: -------------------------------------------------------------------------------- 1 | PRIO=1,1,0,0 2 | IGNORED_IRQ=27,62,171 3 | -------------------------------------------------------------------------------- /configs/nfc/libnfc-nci.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/nfc/libnfc-nci.conf -------------------------------------------------------------------------------- /configs/nfc/libnfc-nxp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/nfc/libnfc-nxp.conf -------------------------------------------------------------------------------- /configs/nfc/libnfc-nxp_RF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/nfc/libnfc-nxp_RF.conf -------------------------------------------------------------------------------- /configs/powerhint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/powerhint.xml -------------------------------------------------------------------------------- /configs/public.libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/public.libraries.txt -------------------------------------------------------------------------------- /configs/qti_whitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/qti_whitelist.xml -------------------------------------------------------------------------------- /configs/sec_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/sec_config -------------------------------------------------------------------------------- /configs/system-privapp-permissions-qti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/system-privapp-permissions-qti.xml -------------------------------------------------------------------------------- /configs/system_ext-privapp-permissions-qti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/system_ext-privapp-permissions-qti.xml -------------------------------------------------------------------------------- /configs/thermal-engine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/configs/thermal-engine.conf -------------------------------------------------------------------------------- /consumerir-transmitter/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/.clang-format -------------------------------------------------------------------------------- /consumerir-transmitter/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .idea 3 | build 4 | .gradle 5 | local.properties 6 | -------------------------------------------------------------------------------- /consumerir-transmitter/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/Android.mk -------------------------------------------------------------------------------- /consumerir-transmitter/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/AndroidManifest.xml -------------------------------------------------------------------------------- /consumerir-transmitter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/build.gradle -------------------------------------------------------------------------------- /consumerir-transmitter/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /consumerir-transmitter/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /consumerir-transmitter/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/gradlew -------------------------------------------------------------------------------- /consumerir-transmitter/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/gradlew.bat -------------------------------------------------------------------------------- /consumerir-transmitter/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/keystore.jks -------------------------------------------------------------------------------- /consumerir-transmitter/proguard.flags: -------------------------------------------------------------------------------- 1 | -keep class org.lineageos.consumerirtransmitter.* { 2 | *; 3 | } 4 | -------------------------------------------------------------------------------- /consumerir-transmitter/src/org/lineageos/consumerirtransmitter/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/src/org/lineageos/consumerirtransmitter/Constants.java -------------------------------------------------------------------------------- /consumerir-transmitter/src/org/lineageos/consumerirtransmitter/ConsumerirTransmitterService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/src/org/lineageos/consumerirtransmitter/ConsumerirTransmitterService.java -------------------------------------------------------------------------------- /consumerir-transmitter/src/org/lineageos/consumerirtransmitter/IControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/src/org/lineageos/consumerirtransmitter/IControl.java -------------------------------------------------------------------------------- /consumerir-transmitter/src/org/lineageos/consumerirtransmitter/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/src/org/lineageos/consumerirtransmitter/MainApplication.java -------------------------------------------------------------------------------- /consumerir-transmitter/src/org/lineageos/consumerirtransmitter/Startup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/src/org/lineageos/consumerirtransmitter/Startup.java -------------------------------------------------------------------------------- /consumerir-transmitter/src/org/lineageos/consumerirtransmitter/beans/IRCMDBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/src/org/lineageos/consumerirtransmitter/beans/IRCMDBean.java -------------------------------------------------------------------------------- /consumerir-transmitter/src/org/lineageos/consumerirtransmitter/utils/IRCMDCacheManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/src/org/lineageos/consumerirtransmitter/utils/IRCMDCacheManager.java -------------------------------------------------------------------------------- /consumerir-transmitter/src/org/lineageos/consumerirtransmitter/utils/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/src/org/lineageos/consumerirtransmitter/utils/Log.java -------------------------------------------------------------------------------- /consumerir-transmitter/src/org/lineageos/consumerirtransmitter/utils/ReflectionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir-transmitter/src/org/lineageos/consumerirtransmitter/utils/ReflectionUtils.java -------------------------------------------------------------------------------- /consumerir/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir/.clang-format -------------------------------------------------------------------------------- /consumerir/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir/Android.bp -------------------------------------------------------------------------------- /consumerir/ConsumerIr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir/ConsumerIr.cpp -------------------------------------------------------------------------------- /consumerir/ConsumerIr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir/ConsumerIr.h -------------------------------------------------------------------------------- /consumerir/android.hardware.ir@1.0-service.leeco_8996.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir/android.hardware.ir@1.0-service.leeco_8996.rc -------------------------------------------------------------------------------- /consumerir/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/consumerir/service.cpp -------------------------------------------------------------------------------- /devicesettings/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/.clang-format -------------------------------------------------------------------------------- /devicesettings/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/Android.mk -------------------------------------------------------------------------------- /devicesettings/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/AndroidManifest.xml -------------------------------------------------------------------------------- /devicesettings/proguard.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/proguard.flags -------------------------------------------------------------------------------- /devicesettings/res/drawable/ic_camera_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/res/drawable/ic_camera_alt.xml -------------------------------------------------------------------------------- /devicesettings/res/drawable/ic_settings_lepref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/res/drawable/ic_settings_lepref.xml -------------------------------------------------------------------------------- /devicesettings/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/res/values/styles.xml -------------------------------------------------------------------------------- /devicesettings/res/xml/leeco_settings_panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/res/xml/leeco_settings_panel.xml -------------------------------------------------------------------------------- /devicesettings/src/org/lineageos/settings/device/BootCompletedReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/src/org/lineageos/settings/device/BootCompletedReceiver.java -------------------------------------------------------------------------------- /devicesettings/src/org/lineageos/settings/device/CameraFocusPreferenceActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/src/org/lineageos/settings/device/CameraFocusPreferenceActivity.java -------------------------------------------------------------------------------- /devicesettings/src/org/lineageos/settings/device/CameraFocusPreferenceFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/src/org/lineageos/settings/device/CameraFocusPreferenceFragment.java -------------------------------------------------------------------------------- /devicesettings/src/org/lineageos/settings/device/LeecoPreferenceActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/src/org/lineageos/settings/device/LeecoPreferenceActivity.java -------------------------------------------------------------------------------- /devicesettings/src/org/lineageos/settings/device/LeecoPreferenceFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/src/org/lineageos/settings/device/LeecoPreferenceFragment.java -------------------------------------------------------------------------------- /devicesettings/src/org/lineageos/settings/device/SettingsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/devicesettings/src/org/lineageos/settings/device/SettingsUtils.java -------------------------------------------------------------------------------- /doze/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/Android.mk -------------------------------------------------------------------------------- /doze/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/AndroidManifest.xml -------------------------------------------------------------------------------- /doze/proguard.flags: -------------------------------------------------------------------------------- 1 | -keep class org.lineageos.settings.doze.* { 2 | *; 3 | } 4 | -------------------------------------------------------------------------------- /doze/res/color/switch_bar_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/res/color/switch_bar_bg.xml -------------------------------------------------------------------------------- /doze/res/drawable/ic_hand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/res/drawable/ic_hand.xml -------------------------------------------------------------------------------- /doze/res/drawable/ic_pickup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/res/drawable/ic_pickup.xml -------------------------------------------------------------------------------- /doze/res/drawable/ic_pocket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/res/drawable/ic_pocket.xml -------------------------------------------------------------------------------- /doze/res/drawable/switchbar_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/res/drawable/switchbar_background.xml -------------------------------------------------------------------------------- /doze/res/layout/doze.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/res/layout/doze.xml -------------------------------------------------------------------------------- /doze/res/layout/switch_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/res/layout/switch_bar.xml -------------------------------------------------------------------------------- /doze/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/res/values-night/colors.xml -------------------------------------------------------------------------------- /doze/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/res/values/colors.xml -------------------------------------------------------------------------------- /doze/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/res/values/styles.xml -------------------------------------------------------------------------------- /doze/res/xml/doze_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/res/xml/doze_settings.xml -------------------------------------------------------------------------------- /doze/src/org/lineageos/settings/doze/BootCompletedReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/src/org/lineageos/settings/doze/BootCompletedReceiver.java -------------------------------------------------------------------------------- /doze/src/org/lineageos/settings/doze/DozeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/src/org/lineageos/settings/doze/DozeService.java -------------------------------------------------------------------------------- /doze/src/org/lineageos/settings/doze/DozeSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/src/org/lineageos/settings/doze/DozeSettingsActivity.java -------------------------------------------------------------------------------- /doze/src/org/lineageos/settings/doze/DozeSettingsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/src/org/lineageos/settings/doze/DozeSettingsFragment.java -------------------------------------------------------------------------------- /doze/src/org/lineageos/settings/doze/ProximitySensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/src/org/lineageos/settings/doze/ProximitySensor.java -------------------------------------------------------------------------------- /doze/src/org/lineageos/settings/doze/TiltSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/src/org/lineageos/settings/doze/TiltSensor.java -------------------------------------------------------------------------------- /doze/src/org/lineageos/settings/doze/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/doze/src/org/lineageos/settings/doze/Utils.java -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/extract-files.sh -------------------------------------------------------------------------------- /framework_manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/framework_manifest.xml -------------------------------------------------------------------------------- /gps/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/Android.mk -------------------------------------------------------------------------------- /gps/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/CleanSpec.mk -------------------------------------------------------------------------------- /gps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/Makefile.am -------------------------------------------------------------------------------- /gps/android/1.0/AGnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/AGnss.cpp -------------------------------------------------------------------------------- /gps/android/1.0/AGnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/AGnss.h -------------------------------------------------------------------------------- /gps/android/1.0/AGnssRil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/AGnssRil.cpp -------------------------------------------------------------------------------- /gps/android/1.0/AGnssRil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/AGnssRil.h -------------------------------------------------------------------------------- /gps/android/1.0/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/Android.mk -------------------------------------------------------------------------------- /gps/android/1.0/Gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/Gnss.cpp -------------------------------------------------------------------------------- /gps/android/1.0/Gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/Gnss.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssBatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssBatching.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssBatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssBatching.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssConfiguration.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssConfiguration.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssDebug.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssDebug.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssGeofencing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssGeofencing.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssGeofencing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssGeofencing.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssMeasurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssMeasurement.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssMeasurement.h -------------------------------------------------------------------------------- /gps/android/1.0/GnssNi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssNi.cpp -------------------------------------------------------------------------------- /gps/android/1.0/GnssNi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/GnssNi.h -------------------------------------------------------------------------------- /gps/android/1.0/android.hardware.gnss@1.0-service-qti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-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/LineageOS/android_device_leeco_msm8996-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/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/location_api/BatchingAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.0/location_api/BatchingAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/location_api/BatchingAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.0/location_api/GeofenceAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/location_api/GeofenceAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.0/location_api/GeofenceAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/location_api/GeofenceAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.0/location_api/GnssAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/location_api/GnssAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.0/location_api/GnssAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/location_api/GnssAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.0/location_api/LocationUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/location_api/LocationUtil.cpp -------------------------------------------------------------------------------- /gps/android/1.0/location_api/LocationUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/location_api/LocationUtil.h -------------------------------------------------------------------------------- /gps/android/1.0/location_api/MeasurementAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/location_api/MeasurementAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.0/location_api/MeasurementAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/location_api/MeasurementAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.0/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.0/service.cpp -------------------------------------------------------------------------------- /gps/android/1.1/AGnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/AGnss.cpp -------------------------------------------------------------------------------- /gps/android/1.1/AGnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/AGnss.h -------------------------------------------------------------------------------- /gps/android/1.1/AGnssRil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/AGnssRil.cpp -------------------------------------------------------------------------------- /gps/android/1.1/AGnssRil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/AGnssRil.h -------------------------------------------------------------------------------- /gps/android/1.1/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/Android.mk -------------------------------------------------------------------------------- /gps/android/1.1/Gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/Gnss.cpp -------------------------------------------------------------------------------- /gps/android/1.1/Gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/Gnss.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssBatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssBatching.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssBatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssBatching.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssConfiguration.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssConfiguration.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssDebug.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssDebug.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssGeofencing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssGeofencing.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssGeofencing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssGeofencing.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssMeasurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssMeasurement.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssMeasurement.h -------------------------------------------------------------------------------- /gps/android/1.1/GnssNi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssNi.cpp -------------------------------------------------------------------------------- /gps/android/1.1/GnssNi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/GnssNi.h -------------------------------------------------------------------------------- /gps/android/1.1/android.hardware.gnss@1.1-service-qti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-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/LineageOS/android_device_leeco_msm8996-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/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/location_api/BatchingAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.1/location_api/BatchingAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/location_api/BatchingAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.1/location_api/GeofenceAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/location_api/GeofenceAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.1/location_api/GeofenceAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/location_api/GeofenceAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.1/location_api/GnssAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/location_api/GnssAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.1/location_api/GnssAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/location_api/GnssAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.1/location_api/LocationUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/location_api/LocationUtil.cpp -------------------------------------------------------------------------------- /gps/android/1.1/location_api/LocationUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/location_api/LocationUtil.h -------------------------------------------------------------------------------- /gps/android/1.1/location_api/MeasurementAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/location_api/MeasurementAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/1.1/location_api/MeasurementAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/location_api/MeasurementAPIClient.h -------------------------------------------------------------------------------- /gps/android/1.1/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/1.1/service.cpp -------------------------------------------------------------------------------- /gps/android/2.0/AGnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/AGnss.cpp -------------------------------------------------------------------------------- /gps/android/2.0/AGnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/AGnss.h -------------------------------------------------------------------------------- /gps/android/2.0/AGnssRil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/AGnssRil.cpp -------------------------------------------------------------------------------- /gps/android/2.0/AGnssRil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/AGnssRil.h -------------------------------------------------------------------------------- /gps/android/2.0/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/Android.mk -------------------------------------------------------------------------------- /gps/android/2.0/Gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/Gnss.cpp -------------------------------------------------------------------------------- /gps/android/2.0/Gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/Gnss.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssBatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssBatching.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssBatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssBatching.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssConfiguration.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssConfiguration.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssDebug.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssDebug.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssGeofencing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssGeofencing.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssGeofencing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssGeofencing.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssMeasurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssMeasurement.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssMeasurement.h -------------------------------------------------------------------------------- /gps/android/2.0/GnssNi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssNi.cpp -------------------------------------------------------------------------------- /gps/android/2.0/GnssNi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/GnssNi.h -------------------------------------------------------------------------------- /gps/android/2.0/android.hardware.gnss@2.0-service-qti.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-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/LineageOS/android_device_leeco_msm8996-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/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/location_api/BatchingAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.0/location_api/BatchingAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/location_api/BatchingAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.0/location_api/GeofenceAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/location_api/GeofenceAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.0/location_api/GeofenceAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/location_api/GeofenceAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.0/location_api/GnssAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/location_api/GnssAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.0/location_api/GnssAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/location_api/GnssAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.0/location_api/LocationUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/location_api/LocationUtil.cpp -------------------------------------------------------------------------------- /gps/android/2.0/location_api/LocationUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/location_api/LocationUtil.h -------------------------------------------------------------------------------- /gps/android/2.0/location_api/MeasurementAPIClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/location_api/MeasurementAPIClient.cpp -------------------------------------------------------------------------------- /gps/android/2.0/location_api/MeasurementAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/location_api/MeasurementAPIClient.h -------------------------------------------------------------------------------- /gps/android/2.0/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/2.0/service.cpp -------------------------------------------------------------------------------- /gps/android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/Android.mk -------------------------------------------------------------------------------- /gps/android/measurement_corrections/1.0/MeasurementCorrections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/measurement_corrections/1.0/MeasurementCorrections.cpp -------------------------------------------------------------------------------- /gps/android/measurement_corrections/1.0/MeasurementCorrections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/measurement_corrections/1.0/MeasurementCorrections.h -------------------------------------------------------------------------------- /gps/android/utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/utils/Android.mk -------------------------------------------------------------------------------- /gps/android/utils/battery_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/utils/battery_listener.cpp -------------------------------------------------------------------------------- /gps/android/utils/battery_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/utils/battery_listener.h -------------------------------------------------------------------------------- /gps/android/visibility_control/1.0/GnssVisibilityControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/visibility_control/1.0/GnssVisibilityControl.cpp -------------------------------------------------------------------------------- /gps/android/visibility_control/1.0/GnssVisibilityControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/android/visibility_control/1.0/GnssVisibilityControl.h -------------------------------------------------------------------------------- /gps/batching/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/batching/Android.mk -------------------------------------------------------------------------------- /gps/batching/BatchingAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/batching/BatchingAdapter.cpp -------------------------------------------------------------------------------- /gps/batching/BatchingAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/batching/BatchingAdapter.h -------------------------------------------------------------------------------- /gps/batching/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/batching/Makefile.am -------------------------------------------------------------------------------- /gps/batching/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/batching/configure.ac -------------------------------------------------------------------------------- /gps/batching/location-batching.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/batching/location-batching.pc.in -------------------------------------------------------------------------------- /gps/batching/location_batching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/batching/location_batching.cpp -------------------------------------------------------------------------------- /gps/build/target_specific_features.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/build/target_specific_features.mk -------------------------------------------------------------------------------- /gps/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/configure.ac -------------------------------------------------------------------------------- /gps/core/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/Android.mk -------------------------------------------------------------------------------- /gps/core/ContextBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/ContextBase.cpp -------------------------------------------------------------------------------- /gps/core/ContextBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/ContextBase.h -------------------------------------------------------------------------------- /gps/core/EngineHubProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/EngineHubProxyBase.h -------------------------------------------------------------------------------- /gps/core/LBSProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/LBSProxyBase.h -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/LocAdapterBase.cpp -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/LocAdapterBase.h -------------------------------------------------------------------------------- /gps/core/LocAdapterProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/LocAdapterProxyBase.h -------------------------------------------------------------------------------- /gps/core/LocApiBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/LocApiBase.cpp -------------------------------------------------------------------------------- /gps/core/LocApiBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/LocApiBase.h -------------------------------------------------------------------------------- /gps/core/LocContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/LocContext.cpp -------------------------------------------------------------------------------- /gps/core/LocContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/LocContext.h -------------------------------------------------------------------------------- /gps/core/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/Makefile.am -------------------------------------------------------------------------------- /gps/core/SystemStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/SystemStatus.cpp -------------------------------------------------------------------------------- /gps/core/SystemStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/SystemStatus.h -------------------------------------------------------------------------------- /gps/core/SystemStatusOsObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/SystemStatusOsObserver.cpp -------------------------------------------------------------------------------- /gps/core/SystemStatusOsObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/SystemStatusOsObserver.h -------------------------------------------------------------------------------- /gps/core/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/configure.ac -------------------------------------------------------------------------------- /gps/core/data-items/DataItemConcreteTypesBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/data-items/DataItemConcreteTypesBase.h -------------------------------------------------------------------------------- /gps/core/data-items/DataItemId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/data-items/DataItemId.h -------------------------------------------------------------------------------- /gps/core/data-items/DataItemsFactoryProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/data-items/DataItemsFactoryProxy.cpp -------------------------------------------------------------------------------- /gps/core/data-items/DataItemsFactoryProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/data-items/DataItemsFactoryProxy.h -------------------------------------------------------------------------------- /gps/core/data-items/IDataItemCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/data-items/IDataItemCore.h -------------------------------------------------------------------------------- /gps/core/loc-core.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/loc-core.pc.in -------------------------------------------------------------------------------- /gps/core/loc_core_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/loc_core_log.cpp -------------------------------------------------------------------------------- /gps/core/loc_core_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/loc_core_log.h -------------------------------------------------------------------------------- /gps/core/observer/IDataItemObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/observer/IDataItemObserver.h -------------------------------------------------------------------------------- /gps/core/observer/IDataItemSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/observer/IDataItemSubscription.h -------------------------------------------------------------------------------- /gps/core/observer/IFrameworkActionReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/observer/IFrameworkActionReq.h -------------------------------------------------------------------------------- /gps/core/observer/IOsObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/core/observer/IOsObserver.h -------------------------------------------------------------------------------- /gps/etc/flp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/etc/flp.conf -------------------------------------------------------------------------------- /gps/etc/gps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/etc/gps.conf -------------------------------------------------------------------------------- /gps/etc/izat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/etc/izat.conf -------------------------------------------------------------------------------- /gps/etc/lowi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/etc/lowi.conf -------------------------------------------------------------------------------- /gps/etc/sap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/etc/sap.conf -------------------------------------------------------------------------------- /gps/etc/xtwifi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/etc/xtwifi.conf -------------------------------------------------------------------------------- /gps/geofence/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/geofence/Android.mk -------------------------------------------------------------------------------- /gps/geofence/GeofenceAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/geofence/GeofenceAdapter.cpp -------------------------------------------------------------------------------- /gps/geofence/GeofenceAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/geofence/GeofenceAdapter.h -------------------------------------------------------------------------------- /gps/geofence/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/geofence/Makefile.am -------------------------------------------------------------------------------- /gps/geofence/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/geofence/configure.ac -------------------------------------------------------------------------------- /gps/geofence/location-geofence.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/geofence/location-geofence.pc.in -------------------------------------------------------------------------------- /gps/geofence/location_geofence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/geofence/location_geofence.cpp -------------------------------------------------------------------------------- /gps/gnss/Agps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/gnss/Agps.cpp -------------------------------------------------------------------------------- /gps/gnss/Agps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/gnss/Agps.h -------------------------------------------------------------------------------- /gps/gnss/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/gnss/Android.mk -------------------------------------------------------------------------------- /gps/gnss/GnssAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/gnss/GnssAdapter.cpp -------------------------------------------------------------------------------- /gps/gnss/GnssAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/gnss/GnssAdapter.h -------------------------------------------------------------------------------- /gps/gnss/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/gnss/Makefile.am -------------------------------------------------------------------------------- /gps/gnss/XtraSystemStatusObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/gnss/XtraSystemStatusObserver.cpp -------------------------------------------------------------------------------- /gps/gnss/XtraSystemStatusObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/gnss/XtraSystemStatusObserver.h -------------------------------------------------------------------------------- /gps/gnss/location_gnss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/gnss/location_gnss.cpp -------------------------------------------------------------------------------- /gps/gps_vendor_board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/gps_vendor_board.mk -------------------------------------------------------------------------------- /gps/gps_vendor_product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/gps_vendor_product.mk -------------------------------------------------------------------------------- /gps/loc-hal.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/loc-hal.pc.in -------------------------------------------------------------------------------- /gps/location/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/location/Android.mk -------------------------------------------------------------------------------- /gps/location/ILocationAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/location/ILocationAPI.h -------------------------------------------------------------------------------- /gps/location/LocationAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/location/LocationAPI.cpp -------------------------------------------------------------------------------- /gps/location/LocationAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/location/LocationAPI.h -------------------------------------------------------------------------------- /gps/location/LocationAPIClientBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/location/LocationAPIClientBase.cpp -------------------------------------------------------------------------------- /gps/location/LocationAPIClientBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/location/LocationAPIClientBase.h -------------------------------------------------------------------------------- /gps/location/LocationDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/location/LocationDataTypes.h -------------------------------------------------------------------------------- /gps/location/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/location/Makefile.am -------------------------------------------------------------------------------- /gps/location/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/location/configure.ac -------------------------------------------------------------------------------- /gps/location/location-api.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/location/location-api.pc.in -------------------------------------------------------------------------------- /gps/location/location_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/location/location_interface.h -------------------------------------------------------------------------------- /gps/pla/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/pla/Android.mk -------------------------------------------------------------------------------- /gps/pla/android/loc_pla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/pla/android/loc_pla.h -------------------------------------------------------------------------------- /gps/pla/oe/loc_pla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/pla/oe/loc_pla.h -------------------------------------------------------------------------------- /gps/utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/Android.mk -------------------------------------------------------------------------------- /gps/utils/LocHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/LocHeap.cpp -------------------------------------------------------------------------------- /gps/utils/LocHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/LocHeap.h -------------------------------------------------------------------------------- /gps/utils/LocIpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/LocIpc.cpp -------------------------------------------------------------------------------- /gps/utils/LocIpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/LocIpc.h -------------------------------------------------------------------------------- /gps/utils/LocSharedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/LocSharedLock.h -------------------------------------------------------------------------------- /gps/utils/LocThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/LocThread.cpp -------------------------------------------------------------------------------- /gps/utils/LocThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/LocThread.h -------------------------------------------------------------------------------- /gps/utils/LocTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/LocTimer.cpp -------------------------------------------------------------------------------- /gps/utils/LocTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/LocTimer.h -------------------------------------------------------------------------------- /gps/utils/LocUnorderedSetMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/LocUnorderedSetMap.h -------------------------------------------------------------------------------- /gps/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/Makefile.am -------------------------------------------------------------------------------- /gps/utils/MsgTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/MsgTask.cpp -------------------------------------------------------------------------------- /gps/utils/MsgTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/MsgTask.h -------------------------------------------------------------------------------- /gps/utils/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/configure.ac -------------------------------------------------------------------------------- /gps/utils/gps-utils.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/gps-utils.pc.in -------------------------------------------------------------------------------- /gps/utils/gps_extended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/gps_extended.h -------------------------------------------------------------------------------- /gps/utils/gps_extended_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/gps_extended_c.h -------------------------------------------------------------------------------- /gps/utils/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/linked_list.c -------------------------------------------------------------------------------- /gps/utils/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/linked_list.h -------------------------------------------------------------------------------- /gps/utils/loc_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_cfg.cpp -------------------------------------------------------------------------------- /gps/utils/loc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_cfg.h -------------------------------------------------------------------------------- /gps/utils/loc_gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_gps.h -------------------------------------------------------------------------------- /gps/utils/loc_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_log.cpp -------------------------------------------------------------------------------- /gps/utils/loc_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_log.h -------------------------------------------------------------------------------- /gps/utils/loc_misc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_misc_utils.cpp -------------------------------------------------------------------------------- /gps/utils/loc_misc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_misc_utils.h -------------------------------------------------------------------------------- /gps/utils/loc_nmea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_nmea.cpp -------------------------------------------------------------------------------- /gps/utils/loc_nmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_nmea.h -------------------------------------------------------------------------------- /gps/utils/loc_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_target.cpp -------------------------------------------------------------------------------- /gps/utils/loc_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_target.h -------------------------------------------------------------------------------- /gps/utils/loc_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/loc_timer.h -------------------------------------------------------------------------------- /gps/utils/log_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/log_util.h -------------------------------------------------------------------------------- /gps/utils/msg_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/msg_q.c -------------------------------------------------------------------------------- /gps/utils/msg_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/gps/utils/msg_q.h -------------------------------------------------------------------------------- /health/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/health/Android.bp -------------------------------------------------------------------------------- /health/CycleCountBackupRestore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/health/CycleCountBackupRestore.cpp -------------------------------------------------------------------------------- /health/CycleCountBackupRestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/health/CycleCountBackupRestore.h -------------------------------------------------------------------------------- /health/HealthService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/health/HealthService.cpp -------------------------------------------------------------------------------- /health/LearnedCapacityBackupRestore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/health/LearnedCapacityBackupRestore.cpp -------------------------------------------------------------------------------- /health/LearnedCapacityBackupRestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/health/LearnedCapacityBackupRestore.h -------------------------------------------------------------------------------- /health/android.hardware.health@2.0-service.leeco_8996.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/health/android.hardware.health@2.0-service.leeco_8996.rc -------------------------------------------------------------------------------- /include/camera/CameraParametersExtra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/include/camera/CameraParametersExtra.h -------------------------------------------------------------------------------- /init/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/init/Android.bp -------------------------------------------------------------------------------- /init/init_leeco_msm8996.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/init/init_leeco_msm8996.cpp -------------------------------------------------------------------------------- /keylayout/atmel_ts_key.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/keylayout/atmel_ts_key.kl -------------------------------------------------------------------------------- /keylayout/gpio-keys.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/keylayout/gpio-keys.kl -------------------------------------------------------------------------------- /keylayout/qpnp_pon.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/keylayout/qpnp_pon.kl -------------------------------------------------------------------------------- /libhidl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/libhidl/Android.mk -------------------------------------------------------------------------------- /liblight/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/liblight/Android.bp -------------------------------------------------------------------------------- /liblight/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/liblight/Light.cpp -------------------------------------------------------------------------------- /liblight/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/liblight/Light.h -------------------------------------------------------------------------------- /liblight/android.hardware.light@2.0-service.leeco_8996.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/liblight/android.hardware.light@2.0-service.leeco_8996.rc -------------------------------------------------------------------------------- /liblight/android.hardware.light@2.0-service.leeco_8996.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/liblight/android.hardware.light@2.0-service.leeco_8996.xml -------------------------------------------------------------------------------- /liblight/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/liblight/service.cpp -------------------------------------------------------------------------------- /libshims/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/libshims/Android.bp -------------------------------------------------------------------------------- /libshims/jstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/libshims/jstring.h -------------------------------------------------------------------------------- /libshims/libshims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/libshims/libshims.cpp -------------------------------------------------------------------------------- /libshims/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/libshims/logging.cpp -------------------------------------------------------------------------------- /libshims/strdup16to8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/libshims/strdup16to8.cpp -------------------------------------------------------------------------------- /libshims/strdup8to16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/libshims/strdup8to16.cpp -------------------------------------------------------------------------------- /lineage.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/lineage.dependencies -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/manifest.xml -------------------------------------------------------------------------------- /msm8996.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/msm8996.mk -------------------------------------------------------------------------------- /overlay-lineage/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay-lineage/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc234-mnc15-en-rGB/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc234-mnc15-en-rGB/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc234-mnc15-en-rIN/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc234-mnc15-en-rIN/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc234-mnc15/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc234-mnc15/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc02-en-rGB/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc02-en-rGB/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc02-en-rIN/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc02-en-rIN/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc02/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc02/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc04-en-rGB/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc04-en-rGB/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc04-en-rIN/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc04-en-rIN/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc04/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc04/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc09-en-rGB/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc09-en-rGB/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc09-en-rIN/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc09-en-rIN/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc262-mnc09/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc262-mnc09/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc310-mnc004/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc310-mnc004/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc310-mnc120/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc310-mnc120/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc310-mnc260/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc310-mnc260/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc310-mnc410/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc310-mnc410/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc311-mnc480/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc311-mnc480/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc312-mnc530/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc312-mnc530/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc313-mnc100/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc313-mnc100/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc454-mnc03/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc454-mnc03/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc454-mnc04/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc454-mnc04/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc455-mnc02/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc455-mnc02/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc455-mnc07/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc455-mnc07/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc460-mnc03/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc460-mnc03/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values-mcc460-mnc11/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values-mcc460-mnc11/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/CarrierConfig/res/xml/vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/packages/apps/CarrierConfig/res/xml/vendor.xml -------------------------------------------------------------------------------- /overlay/packages/apps/CellBroadcastReceiver/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/packages/apps/CellBroadcastReceiver/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Dialer/java/com/android/dialer/callrecord/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/packages/apps/Dialer/java/com/android/dialer/callrecord/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Mms/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/packages/apps/Mms/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/packages/apps/Settings/res/values/arrays.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/packages/apps/Settings/res/values/dimens.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Snap/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/packages/apps/Snap/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telecomm/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/packages/services/Telecomm/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telephony/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/overlay/packages/services/Telephony/res/values/config.xml -------------------------------------------------------------------------------- /prebuilt/deunify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/prebuilt/deunify.sh -------------------------------------------------------------------------------- /prebuilt/devinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/prebuilt/devinfo.sh -------------------------------------------------------------------------------- /prebuilt/partprobe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/prebuilt/partprobe.sh -------------------------------------------------------------------------------- /prebuilt/sgdisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/prebuilt/sgdisk -------------------------------------------------------------------------------- /prebuilt/toybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/prebuilt/toybox -------------------------------------------------------------------------------- /prebuilt/unlock-vendor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/prebuilt/unlock-vendor.sh -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /recovery/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/recovery/Android.mk -------------------------------------------------------------------------------- /recovery/recovery_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/recovery/recovery_updater.cpp -------------------------------------------------------------------------------- /releasetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/releasetools.py -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rootdir/Android.mk -------------------------------------------------------------------------------- /rootdir/etc/fstab.qcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rootdir/etc/fstab.qcom -------------------------------------------------------------------------------- /rootdir/etc/init.proc_touchpanel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rootdir/etc/init.proc_touchpanel.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.early_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rootdir/etc/init.qcom.early_boot.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.power.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rootdir/etc/init.qcom.power.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rootdir/etc/init.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rootdir/etc/init.qcom.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rootdir/etc/init.qcom.usb.rc -------------------------------------------------------------------------------- /rootdir/etc/init.recovery.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rootdir/etc/init.recovery.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/ueventd.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rootdir/etc/ueventd.qcom.rc -------------------------------------------------------------------------------- /rro_overlays/TetheringOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rro_overlays/TetheringOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/TetheringOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rro_overlays/TetheringOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/TetheringOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rro_overlays/TetheringOverlay/res/values/config.xml -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rro_overlays/WifiOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rro_overlays/WifiOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/rro_overlays/WifiOverlay/res/values/config.xml -------------------------------------------------------------------------------- /seccomp_policy/mediacodec-seccomp.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/seccomp_policy/mediacodec-seccomp.policy -------------------------------------------------------------------------------- /seccomp_policy/mediaextractor-seccomp.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/seccomp_policy/mediaextractor-seccomp.policy -------------------------------------------------------------------------------- /sepolicy/private/hwservice_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/private/hwservice_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/bootanim.te: -------------------------------------------------------------------------------- 1 | allow bootanim sysfs_kgsl:dir search; 2 | -------------------------------------------------------------------------------- /sepolicy/vendor/cameraserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/cameraserver.te -------------------------------------------------------------------------------- /sepolicy/vendor/cnd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/cnd.te -------------------------------------------------------------------------------- /sepolicy/vendor/consumer_ir_device.te: -------------------------------------------------------------------------------- 1 | allow consumer_ir_device sysfs:filesystem { associate }; 2 | -------------------------------------------------------------------------------- /sepolicy/vendor/device.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/device.te -------------------------------------------------------------------------------- /sepolicy/vendor/domain.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/domain.te -------------------------------------------------------------------------------- /sepolicy/vendor/energyawareness.te: -------------------------------------------------------------------------------- 1 | r_dir_file(energyawareness, sysfs) 2 | -------------------------------------------------------------------------------- /sepolicy/vendor/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/file.te -------------------------------------------------------------------------------- /sepolicy/vendor/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/file_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/genfs_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/genfs_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/hal_audio_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_audio_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_camera_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_camera_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_cas_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_cas_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_drm_widevine.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_drm_widevine.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_graphics_composer_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_graphics_composer_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_health_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_health_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_ir_leeco_msm8996.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_ir_leeco_msm8996.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_light_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_light_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_lineage_touch_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_lineage_touch_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_memtrack_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_memtrack_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_nfc_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_nfc_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_perf_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_perf_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_sensors_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hal_sensors_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_wifi_default.te: -------------------------------------------------------------------------------- 1 | allow hal_wifi_default proc_net:file write; 2 | -------------------------------------------------------------------------------- /sepolicy/vendor/hostapd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hostapd.te -------------------------------------------------------------------------------- /sepolicy/vendor/hvdcp.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hvdcp.te -------------------------------------------------------------------------------- /sepolicy/vendor/hwservice.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/hwservice.te -------------------------------------------------------------------------------- /sepolicy/vendor/ifaa_daemon.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/ifaa_daemon.te -------------------------------------------------------------------------------- /sepolicy/vendor/ims.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/ims.te -------------------------------------------------------------------------------- /sepolicy/vendor/init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/init.te -------------------------------------------------------------------------------- /sepolicy/vendor/ipacm.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/ipacm.te -------------------------------------------------------------------------------- /sepolicy/vendor/keystore.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/keystore.te -------------------------------------------------------------------------------- /sepolicy/vendor/mm-qcamerad.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/mm-qcamerad.te -------------------------------------------------------------------------------- /sepolicy/vendor/netmgrd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/netmgrd.te -------------------------------------------------------------------------------- /sepolicy/vendor/platform_app.te: -------------------------------------------------------------------------------- 1 | allow platform_app sysfs_kgsl:dir search; 2 | -------------------------------------------------------------------------------- /sepolicy/vendor/ppd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/ppd.te -------------------------------------------------------------------------------- /sepolicy/vendor/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/property.te -------------------------------------------------------------------------------- /sepolicy/vendor/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/property_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/qseeproxy.te: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sepolicy/vendor/qti.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/qti.te -------------------------------------------------------------------------------- /sepolicy/vendor/qti_init_shell.te: -------------------------------------------------------------------------------- 1 | r_dir_file(qti_init_shell, vfat) 2 | -------------------------------------------------------------------------------- /sepolicy/vendor/quicksetsdk_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/quicksetsdk_app.te -------------------------------------------------------------------------------- /sepolicy/vendor/radio.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/radio.te -------------------------------------------------------------------------------- /sepolicy/vendor/rild.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/rild.te -------------------------------------------------------------------------------- /sepolicy/vendor/seapp_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/seapp_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/sensors.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/sensors.te -------------------------------------------------------------------------------- /sepolicy/vendor/service.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/service.te -------------------------------------------------------------------------------- /sepolicy/vendor/servicemanager.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/servicemanager.te -------------------------------------------------------------------------------- /sepolicy/vendor/surfaceflinger.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/surfaceflinger.te -------------------------------------------------------------------------------- /sepolicy/vendor/system_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/system_app.te -------------------------------------------------------------------------------- /sepolicy/vendor/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/system_server.te -------------------------------------------------------------------------------- /sepolicy/vendor/thermal_engine.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/thermal_engine.te -------------------------------------------------------------------------------- /sepolicy/vendor/time_daemon.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/time_daemon.te -------------------------------------------------------------------------------- /sepolicy/vendor/ueventd.te: -------------------------------------------------------------------------------- 1 | r_dir_file(ueventd, vfat) 2 | -------------------------------------------------------------------------------- /sepolicy/vendor/untrusted_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/untrusted_app.te -------------------------------------------------------------------------------- /sepolicy/vendor/vendor_charger.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/vendor_charger.te -------------------------------------------------------------------------------- /sepolicy/vendor/vendor_init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/vendor_init.te -------------------------------------------------------------------------------- /sepolicy/vendor/vendor_init_proc_touchpanel.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/vendor_init_proc_touchpanel.te -------------------------------------------------------------------------------- /sepolicy/vendor/vold.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/vold.te -------------------------------------------------------------------------------- /sepolicy/vendor/zygote.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/sepolicy/vendor/zygote.te -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/setup-makefiles.sh -------------------------------------------------------------------------------- /touch/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/touch/Android.bp -------------------------------------------------------------------------------- /touch/KeyDisabler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/touch/KeyDisabler.cpp -------------------------------------------------------------------------------- /touch/KeyDisabler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/touch/KeyDisabler.h -------------------------------------------------------------------------------- /touch/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/touch/service.cpp -------------------------------------------------------------------------------- /touch/vendor.lineage.touch@1.0-service.leeco_8996.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/touch/vendor.lineage.touch@1.0-service.leeco_8996.rc -------------------------------------------------------------------------------- /touch/vendor.lineage.touch@1.0-service.leeco_8996.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/touch/vendor.lineage.touch@1.0-service.leeco_8996.xml -------------------------------------------------------------------------------- /update-sha1sums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/update-sha1sums.py -------------------------------------------------------------------------------- /vendor_prop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/vendor_prop.mk -------------------------------------------------------------------------------- /wifi/WCNSS_qcom_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/wifi/WCNSS_qcom_cfg.ini -------------------------------------------------------------------------------- /wifi/p2p_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/wifi/p2p_supplicant_overlay.conf -------------------------------------------------------------------------------- /wifi/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/android_device_leeco_msm8996-common/HEAD/wifi/wpa_supplicant_overlay.conf --------------------------------------------------------------------------------