├── Android.mk ├── BoardConfigCommon.mk ├── CMActions ├── Android.mk ├── AndroidManifest.xml ├── proguard.flags ├── res │ ├── drawable │ │ └── ic_settings_gestures.xml │ ├── values │ │ └── styles.xml │ └── xml │ │ └── gesture_panel.xml └── src │ └── com │ └── cyanogenmod │ └── cmactions │ ├── BootCompletedReceiver.java │ ├── CMActionsService.java │ ├── GesturePreferenceActivity.java │ └── GesturePreferenceFragment.java ├── README.md ├── bluetooth └── bdroid_buildcfg.h ├── camera ├── Android.mk └── CameraWrapper.cpp ├── cm.dependencies ├── cmhw └── org │ └── cyanogenmod │ └── hardware │ ├── SunlightEnhancement.java │ └── VibratorHW.java ├── configs ├── audio_effects.conf ├── audio_policy.conf ├── media_codecs.xml ├── media_codecs_performance.xml ├── media_profiles.xml └── sec_config ├── extract-files.sh ├── gps ├── Android.mk ├── core │ ├── Android.mk │ ├── ContextBase.cpp │ ├── ContextBase.h │ ├── LBSProxyBase.h │ ├── LocAdapterBase.cpp │ ├── LocAdapterBase.h │ ├── LocApiBase.cpp │ ├── LocApiBase.h │ ├── LocDualContext.cpp │ ├── LocDualContext.h │ ├── MsgTask.cpp │ ├── MsgTask.h │ ├── UlpProxyBase.h │ ├── gps_extended.h │ ├── gps_extended_c.h │ ├── loc_core_log.cpp │ └── loc_core_log.h ├── loc_api │ ├── Android.mk │ └── libloc_api_50001 │ │ ├── Android.mk │ │ ├── LocEngAdapter.cpp │ │ ├── LocEngAdapter.h │ │ ├── Makefile.am │ │ ├── gps.c │ │ ├── loc.cpp │ │ ├── loc.h │ │ ├── loc_eng.cpp │ │ ├── loc_eng.h │ │ ├── loc_eng_agps.cpp │ │ ├── loc_eng_agps.h │ │ ├── loc_eng_dmn_conn.cpp │ │ ├── loc_eng_dmn_conn.h │ │ ├── loc_eng_dmn_conn_glue_msg.c │ │ ├── loc_eng_dmn_conn_glue_msg.h │ │ ├── loc_eng_dmn_conn_glue_pipe.c │ │ ├── loc_eng_dmn_conn_glue_pipe.h │ │ ├── loc_eng_dmn_conn_handler.cpp │ │ ├── loc_eng_dmn_conn_handler.h │ │ ├── loc_eng_dmn_conn_thread_helper.c │ │ ├── loc_eng_dmn_conn_thread_helper.h │ │ ├── loc_eng_log.cpp │ │ ├── loc_eng_log.h │ │ ├── loc_eng_msg.h │ │ ├── loc_eng_ni.cpp │ │ ├── loc_eng_ni.h │ │ ├── loc_eng_nmea.cpp │ │ ├── loc_eng_nmea.h │ │ ├── loc_eng_xtra.cpp │ │ └── loc_eng_xtra.h ├── platform_lib_abstractions │ ├── elapsed_millis_since_boot.cpp │ ├── platform_lib_includes.h │ ├── platform_lib_macros.h │ └── platform_lib_time.h └── utils │ ├── Android.mk │ ├── Makefile.am │ ├── linked_list.c │ ├── linked_list.h │ ├── loc_cfg.cpp │ ├── loc_cfg.h │ ├── loc_log.cpp │ ├── loc_log.h │ ├── loc_target.cpp │ ├── loc_target.h │ ├── loc_timer.c │ ├── loc_timer.h │ ├── log_util.h │ ├── msg_q.c │ └── msg_q.h ├── include ├── camera │ └── CameraParametersExtra.h └── private │ └── android_filesystem_config.h ├── liblight ├── Android.mk ├── NOTICE └── lights.c ├── libsensors ├── Android.mk ├── bst │ ├── Android.mk │ ├── daemon │ │ ├── Android.mk │ │ ├── algo │ │ │ ├── inc │ │ │ │ ├── BsxFusionLibrary.h │ │ │ │ ├── BsxLibraryCalibConstants.h │ │ │ │ ├── BsxLibraryConstants.h │ │ │ │ ├── BsxLibraryDataTypes.h │ │ │ │ ├── BsxLibraryErrorConstants.h │ │ │ │ ├── cust.h │ │ │ │ └── feature.h │ │ │ └── lib │ │ │ │ ├── bosch_lib32 │ │ │ │ ├── NOTICE │ │ │ │ └── libalgobsx.a │ │ │ │ └── bosch_lib64 │ │ │ │ └── libalgobsx.a │ │ ├── inc │ │ │ ├── algo.h │ │ │ ├── algo_adapter.h │ │ │ ├── bs_log.h │ │ │ ├── channel.h │ │ │ ├── configure.h │ │ │ ├── configure_hw.h │ │ │ ├── event_handler.h │ │ │ ├── hw_cntl.h │ │ │ ├── hw_def.h │ │ │ ├── options.h │ │ │ ├── sensor_cfg.h │ │ │ ├── sensor_data_type.h │ │ │ ├── sensor_def.h │ │ │ ├── sensor_hw.h │ │ │ ├── sensor_priv.h │ │ │ ├── sensor_provider.h │ │ │ ├── sensord.h │ │ │ ├── trace.h │ │ │ ├── util_input_dev.h │ │ │ ├── util_misc.h │ │ │ ├── util_sysfs.h │ │ │ └── util_time.h │ │ └── src │ │ │ ├── algo │ │ │ ├── Android.mk │ │ │ ├── algo_adapter.c │ │ │ ├── algo_data_log.h │ │ │ ├── algo_if.h │ │ │ └── algo_init.c │ │ │ ├── channel_a.c │ │ │ ├── channel_cntl.c │ │ │ ├── channel_g.c │ │ │ ├── channel_geom_rv.c │ │ │ ├── channel_gest_flip.c │ │ │ ├── channel_grv.c │ │ │ ├── channel_gu.c │ │ │ ├── channel_m.c │ │ │ ├── channel_mu.c │ │ │ ├── channel_o.c │ │ │ ├── channel_sgm.c │ │ │ ├── channel_stc.c │ │ │ ├── channel_std.c │ │ │ ├── channel_vg.c │ │ │ ├── channel_vla.c │ │ │ ├── channel_vrv.c │ │ │ ├── channels.c │ │ │ ├── event_handler.c │ │ │ ├── hw │ │ │ ├── Android.mk │ │ │ ├── a │ │ │ │ ├── Android.mk │ │ │ │ ├── axis_remap_a.c │ │ │ │ ├── hw_cntl_a.c │ │ │ │ ├── hw_if_a.h │ │ │ │ └── hw_info_a.h │ │ │ ├── g │ │ │ │ ├── Android.mk │ │ │ │ ├── axis_remap_g.c │ │ │ │ ├── hw_cntl_g.c │ │ │ │ ├── hw_if_g.h │ │ │ │ └── hw_info_g.h │ │ │ ├── hw_cntl.c │ │ │ ├── hw_if.h │ │ │ ├── hw_info.h │ │ │ └── m │ │ │ │ ├── Android.mk │ │ │ │ ├── axis_remap_m.c │ │ │ │ ├── hw_cntl_m.c │ │ │ │ ├── hw_if_m.h │ │ │ │ └── hw_info_m.h │ │ │ ├── lib │ │ │ ├── util_input_dev.c │ │ │ ├── util_misc.c │ │ │ ├── util_sysfs.c │ │ │ └── util_time.c │ │ │ ├── main.c │ │ │ ├── misc.c │ │ │ ├── sensor_cfg.c │ │ │ ├── sensor_fusion.c │ │ │ ├── sensor_provider.c │ │ │ └── trace.c │ ├── hal │ │ ├── Android.mk │ │ ├── BstSensor.cpp │ │ ├── BstSensor.h │ │ ├── BstSensorAccel.cpp │ │ ├── BstSensorAccel.h │ │ ├── BstSensorDataType.h │ │ ├── BstSensorExt.cpp │ │ ├── BstSensorExt.h │ │ ├── BstSensorInfo.cpp │ │ ├── BstSensorInfo.h │ │ ├── BstSensorPressure.cpp │ │ ├── BstSensorPressure.h │ │ ├── BstSensorPriv.h │ │ ├── BstSensorType.h │ │ ├── InputEventReader.cpp │ │ ├── InputEventReader.h │ │ ├── LightSensor.cpp │ │ ├── LightSensor.h │ │ ├── ProximitySensor.cpp │ │ ├── ProximitySensor.h │ │ ├── SensorBase.cpp │ │ ├── SensorBase.h │ │ ├── TargetPlatform.h │ │ ├── sensors.cpp │ │ └── sensors.h │ ├── tools │ │ ├── buildversion.mk │ │ ├── cm_build.sh │ │ ├── config.mk │ │ ├── cppcheck_daemon.sh │ │ ├── cppcheck_hal.sh │ │ ├── cppcheck_suppress_daemon.lst │ │ ├── get_hal_version.bat │ │ ├── get_sensord_data.bat │ │ ├── get_sensord_log.bat │ │ ├── get_sensord_version.bat │ │ ├── install.bat │ │ ├── l8150_config.mk │ │ ├── l8720_config.mk │ │ ├── moto_config.mk │ │ └── options.mk │ └── version │ │ ├── version.c │ │ └── version.h └── falcon-peregrine │ ├── AccelerometerSensor.cpp │ ├── AccelerometerSensor.h │ ├── Android.mk │ ├── CompOriSensor.cpp │ ├── CompOriSensor.h │ ├── GyroscopeSensor.cpp │ ├── GyroscopeSensor.h │ ├── InputEventReader.cpp │ ├── InputEventReader.h │ ├── LightProxSensor.cpp │ ├── LightProxSensor.h │ ├── SensorBase.cpp │ ├── SensorBase.h │ ├── sensors.cpp │ └── sensors.h ├── libshims ├── Android.mk └── thermal.c ├── mkbootimg.mk ├── msm8226.mk ├── overlay ├── frameworks │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ ├── values │ │ │ └── config.xml │ │ │ └── xml │ │ │ └── power_profile.xml │ │ └── packages │ │ ├── SettingsProvider │ │ └── res │ │ │ └── values │ │ │ └── defaults.xml │ │ └── SystemUI │ │ └── res │ │ └── values │ │ └── config.xml ├── packages │ ├── apps │ │ ├── CarrierConfig │ │ │ └── res │ │ │ │ └── xml │ │ │ │ └── vendor.xml │ │ ├── Dialer │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── config.xml │ │ └── Snap │ │ │ └── res │ │ │ └── values │ │ │ └── qcomstrings.xml │ └── services │ │ ├── Telecomm │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ │ └── Telephony │ │ └── res │ │ ├── values-mcc310-mnc120 │ │ └── config.xml │ │ └── values │ │ └── config.xml └── vendor │ └── cmsdk │ └── cm │ └── res │ └── res │ └── values │ └── config.xml ├── power ├── Android.mk ├── power.c └── power.h ├── proprietary-files.txt ├── releasetools.py ├── rootdir ├── Android.mk └── etc │ ├── dump_pds.sh │ ├── fstab.qcom │ ├── init.mmi.boot.sh │ ├── init.mmi.touch.sh │ ├── init.qcom.bt.sh │ ├── init.qcom.rc │ ├── init.qcom.ril.sh │ ├── init.qcom.usb.rc │ ├── init.recovery.qcom.rc │ └── ueventd.qcom.rc ├── sepolicy ├── akmd8963.te ├── atvc.te ├── batt_health.te ├── device.te ├── dump_pds.te ├── file.te ├── file_contexts ├── healthd.te ├── init.te ├── kernel.te ├── keystore.te ├── mediaserver.te ├── mm-qcamerad.te ├── mpdecision.te ├── netmgrd.te ├── property.te ├── property_contexts ├── qti_init_shell.te ├── rild.te ├── rmt_storage.te ├── sensord.te ├── system_app.te ├── system_server.te ├── thermal-engine.te ├── ueventd.te └── vold.te ├── setup-makefiles.sh ├── system.prop ├── thermal ├── thermal-engine-8226.conf ├── thermal-engine-thea.conf └── thermal-engine-titan.conf └── wifi ├── Android.mk ├── WCNSS_cfg.dat ├── WCNSS_qcom_cfg.ini ├── hostapd_default.conf ├── p2p_supplicant_overlay.conf └── wpa_supplicant_overlay.conf /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/Android.mk -------------------------------------------------------------------------------- /BoardConfigCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/BoardConfigCommon.mk -------------------------------------------------------------------------------- /CMActions/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/CMActions/Android.mk -------------------------------------------------------------------------------- /CMActions/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/CMActions/AndroidManifest.xml -------------------------------------------------------------------------------- /CMActions/proguard.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/CMActions/proguard.flags -------------------------------------------------------------------------------- /CMActions/res/drawable/ic_settings_gestures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/CMActions/res/drawable/ic_settings_gestures.xml -------------------------------------------------------------------------------- /CMActions/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/CMActions/res/values/styles.xml -------------------------------------------------------------------------------- /CMActions/res/xml/gesture_panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/CMActions/res/xml/gesture_panel.xml -------------------------------------------------------------------------------- /CMActions/src/com/cyanogenmod/cmactions/BootCompletedReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/CMActions/src/com/cyanogenmod/cmactions/BootCompletedReceiver.java -------------------------------------------------------------------------------- /CMActions/src/com/cyanogenmod/cmactions/CMActionsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/CMActions/src/com/cyanogenmod/cmactions/CMActionsService.java -------------------------------------------------------------------------------- /CMActions/src/com/cyanogenmod/cmactions/GesturePreferenceActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/CMActions/src/com/cyanogenmod/cmactions/GesturePreferenceActivity.java -------------------------------------------------------------------------------- /CMActions/src/com/cyanogenmod/cmactions/GesturePreferenceFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/CMActions/src/com/cyanogenmod/cmactions/GesturePreferenceFragment.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/README.md -------------------------------------------------------------------------------- /bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/bluetooth/bdroid_buildcfg.h -------------------------------------------------------------------------------- /camera/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/camera/Android.mk -------------------------------------------------------------------------------- /camera/CameraWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/camera/CameraWrapper.cpp -------------------------------------------------------------------------------- /cm.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/cm.dependencies -------------------------------------------------------------------------------- /cmhw/org/cyanogenmod/hardware/SunlightEnhancement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/cmhw/org/cyanogenmod/hardware/SunlightEnhancement.java -------------------------------------------------------------------------------- /cmhw/org/cyanogenmod/hardware/VibratorHW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/cmhw/org/cyanogenmod/hardware/VibratorHW.java -------------------------------------------------------------------------------- /configs/audio_effects.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/configs/audio_effects.conf -------------------------------------------------------------------------------- /configs/audio_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/configs/audio_policy.conf -------------------------------------------------------------------------------- /configs/media_codecs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/configs/media_codecs.xml -------------------------------------------------------------------------------- /configs/media_codecs_performance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/configs/media_codecs_performance.xml -------------------------------------------------------------------------------- /configs/media_profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/configs/media_profiles.xml -------------------------------------------------------------------------------- /configs/sec_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/configs/sec_config -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/extract-files.sh -------------------------------------------------------------------------------- /gps/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/Android.mk -------------------------------------------------------------------------------- /gps/core/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/Android.mk -------------------------------------------------------------------------------- /gps/core/ContextBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/ContextBase.cpp -------------------------------------------------------------------------------- /gps/core/ContextBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/ContextBase.h -------------------------------------------------------------------------------- /gps/core/LBSProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/LBSProxyBase.h -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/LocAdapterBase.cpp -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/LocAdapterBase.h -------------------------------------------------------------------------------- /gps/core/LocApiBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/LocApiBase.cpp -------------------------------------------------------------------------------- /gps/core/LocApiBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/LocApiBase.h -------------------------------------------------------------------------------- /gps/core/LocDualContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/LocDualContext.cpp -------------------------------------------------------------------------------- /gps/core/LocDualContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/LocDualContext.h -------------------------------------------------------------------------------- /gps/core/MsgTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/MsgTask.cpp -------------------------------------------------------------------------------- /gps/core/MsgTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/MsgTask.h -------------------------------------------------------------------------------- /gps/core/UlpProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/UlpProxyBase.h -------------------------------------------------------------------------------- /gps/core/gps_extended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/gps_extended.h -------------------------------------------------------------------------------- /gps/core/gps_extended_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/gps_extended_c.h -------------------------------------------------------------------------------- /gps/core/loc_core_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/loc_core_log.cpp -------------------------------------------------------------------------------- /gps/core/loc_core_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/core/loc_core_log.h -------------------------------------------------------------------------------- /gps/loc_api/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/Android.mk -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/Android.mk -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/LocEngAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/LocEngAdapter.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/LocEngAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/LocEngAdapter.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/Makefile.am -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/gps.c -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_agps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_agps.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_agps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_agps.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_dmn_conn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_dmn_conn.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_dmn_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_dmn_conn.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_glue_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_glue_msg.c -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_glue_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_glue_msg.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_glue_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_glue_pipe.c -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_glue_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_glue_pipe.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_handler.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_handler.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_thread_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_thread_helper.c -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_thread_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_dmn_conn_thread_helper.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_log.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_log.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_msg.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_ni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_ni.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_ni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_ni.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_nmea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_nmea.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_nmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_nmea.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_xtra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_xtra.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng_xtra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_xtra.h -------------------------------------------------------------------------------- /gps/platform_lib_abstractions/elapsed_millis_since_boot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/platform_lib_abstractions/elapsed_millis_since_boot.cpp -------------------------------------------------------------------------------- /gps/platform_lib_abstractions/platform_lib_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/platform_lib_abstractions/platform_lib_includes.h -------------------------------------------------------------------------------- /gps/platform_lib_abstractions/platform_lib_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/platform_lib_abstractions/platform_lib_macros.h -------------------------------------------------------------------------------- /gps/platform_lib_abstractions/platform_lib_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/platform_lib_abstractions/platform_lib_time.h -------------------------------------------------------------------------------- /gps/utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/Android.mk -------------------------------------------------------------------------------- /gps/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/Makefile.am -------------------------------------------------------------------------------- /gps/utils/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/linked_list.c -------------------------------------------------------------------------------- /gps/utils/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/linked_list.h -------------------------------------------------------------------------------- /gps/utils/loc_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/loc_cfg.cpp -------------------------------------------------------------------------------- /gps/utils/loc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/loc_cfg.h -------------------------------------------------------------------------------- /gps/utils/loc_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/loc_log.cpp -------------------------------------------------------------------------------- /gps/utils/loc_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/loc_log.h -------------------------------------------------------------------------------- /gps/utils/loc_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/loc_target.cpp -------------------------------------------------------------------------------- /gps/utils/loc_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/loc_target.h -------------------------------------------------------------------------------- /gps/utils/loc_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/loc_timer.c -------------------------------------------------------------------------------- /gps/utils/loc_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/loc_timer.h -------------------------------------------------------------------------------- /gps/utils/log_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/log_util.h -------------------------------------------------------------------------------- /gps/utils/msg_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/msg_q.c -------------------------------------------------------------------------------- /gps/utils/msg_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/gps/utils/msg_q.h -------------------------------------------------------------------------------- /include/camera/CameraParametersExtra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/include/camera/CameraParametersExtra.h -------------------------------------------------------------------------------- /include/private/android_filesystem_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/include/private/android_filesystem_config.h -------------------------------------------------------------------------------- /liblight/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/liblight/Android.mk -------------------------------------------------------------------------------- /liblight/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/liblight/NOTICE -------------------------------------------------------------------------------- /liblight/lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/liblight/lights.c -------------------------------------------------------------------------------- /libsensors/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/Android.mk -------------------------------------------------------------------------------- /libsensors/bst/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /libsensors/bst/daemon/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/Android.mk -------------------------------------------------------------------------------- /libsensors/bst/daemon/algo/inc/BsxFusionLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/algo/inc/BsxFusionLibrary.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/algo/inc/BsxLibraryCalibConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/algo/inc/BsxLibraryCalibConstants.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/algo/inc/BsxLibraryConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/algo/inc/BsxLibraryConstants.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/algo/inc/BsxLibraryDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/algo/inc/BsxLibraryDataTypes.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/algo/inc/BsxLibraryErrorConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/algo/inc/BsxLibraryErrorConstants.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/algo/inc/cust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/algo/inc/cust.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/algo/inc/feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/algo/inc/feature.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/algo/lib/bosch_lib32/NOTICE: -------------------------------------------------------------------------------- 1 | # STOPSHIP Need notice / license text 2 | 3 | b/19712688 4 | -------------------------------------------------------------------------------- /libsensors/bst/daemon/algo/lib/bosch_lib32/libalgobsx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/algo/lib/bosch_lib32/libalgobsx.a -------------------------------------------------------------------------------- /libsensors/bst/daemon/algo/lib/bosch_lib64/libalgobsx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/algo/lib/bosch_lib64/libalgobsx.a -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/algo.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/algo_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/algo_adapter.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/bs_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/bs_log.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/channel.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/configure.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/configure_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/configure_hw.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/event_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/event_handler.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/hw_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/hw_cntl.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/hw_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/hw_def.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/options.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/sensor_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/sensor_cfg.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/sensor_data_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/sensor_data_type.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/sensor_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/sensor_def.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/sensor_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/sensor_hw.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/sensor_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/sensor_priv.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/sensor_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/sensor_provider.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/sensord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/sensord.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/trace.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/util_input_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/util_input_dev.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/util_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/util_misc.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/util_sysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/util_sysfs.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/inc/util_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/inc/util_time.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/algo/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/algo/Android.mk -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/algo/algo_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/algo/algo_adapter.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/algo/algo_data_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/algo/algo_data_log.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/algo/algo_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/algo/algo_if.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/algo/algo_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/algo/algo_init.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_a.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_cntl.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_g.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_geom_rv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_geom_rv.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_gest_flip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_gest_flip.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_grv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_grv.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_gu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_gu.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_m.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_mu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_mu.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_o.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_sgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_sgm.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_stc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_stc.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_std.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_vg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_vg.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_vla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_vla.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channel_vrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channel_vrv.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/channels.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/event_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/event_handler.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/Android.mk -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/a/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/a/Android.mk -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/a/axis_remap_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/a/axis_remap_a.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/a/hw_cntl_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/a/hw_cntl_a.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/a/hw_if_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/a/hw_if_a.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/a/hw_info_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/a/hw_info_a.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/g/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/g/Android.mk -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/g/axis_remap_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/g/axis_remap_g.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/g/hw_cntl_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/g/hw_cntl_g.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/g/hw_if_g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/g/hw_if_g.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/g/hw_info_g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/g/hw_info_g.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/hw_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/hw_cntl.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/hw_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/hw_if.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/hw_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/hw_info.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/m/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/m/Android.mk -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/m/axis_remap_m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/m/axis_remap_m.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/m/hw_cntl_m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/m/hw_cntl_m.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/m/hw_if_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/m/hw_if_m.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/hw/m/hw_info_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/hw/m/hw_info_m.h -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/lib/util_input_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/lib/util_input_dev.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/lib/util_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/lib/util_misc.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/lib/util_sysfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/lib/util_sysfs.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/lib/util_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/lib/util_time.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/main.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/misc.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/sensor_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/sensor_cfg.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/sensor_fusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/sensor_fusion.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/sensor_provider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/sensor_provider.c -------------------------------------------------------------------------------- /libsensors/bst/daemon/src/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/daemon/src/trace.c -------------------------------------------------------------------------------- /libsensors/bst/hal/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/Android.mk -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensor.cpp -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensor.h -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensorAccel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensorAccel.cpp -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensorAccel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensorAccel.h -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensorDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensorDataType.h -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensorExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensorExt.cpp -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensorExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensorExt.h -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensorInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensorInfo.cpp -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensorInfo.h -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensorPressure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensorPressure.cpp -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensorPressure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensorPressure.h -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensorPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensorPriv.h -------------------------------------------------------------------------------- /libsensors/bst/hal/BstSensorType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/BstSensorType.h -------------------------------------------------------------------------------- /libsensors/bst/hal/InputEventReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/InputEventReader.cpp -------------------------------------------------------------------------------- /libsensors/bst/hal/InputEventReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/InputEventReader.h -------------------------------------------------------------------------------- /libsensors/bst/hal/LightSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/LightSensor.cpp -------------------------------------------------------------------------------- /libsensors/bst/hal/LightSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/LightSensor.h -------------------------------------------------------------------------------- /libsensors/bst/hal/ProximitySensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/ProximitySensor.cpp -------------------------------------------------------------------------------- /libsensors/bst/hal/ProximitySensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/ProximitySensor.h -------------------------------------------------------------------------------- /libsensors/bst/hal/SensorBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/SensorBase.cpp -------------------------------------------------------------------------------- /libsensors/bst/hal/SensorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/SensorBase.h -------------------------------------------------------------------------------- /libsensors/bst/hal/TargetPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/TargetPlatform.h -------------------------------------------------------------------------------- /libsensors/bst/hal/sensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/sensors.cpp -------------------------------------------------------------------------------- /libsensors/bst/hal/sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/hal/sensors.h -------------------------------------------------------------------------------- /libsensors/bst/tools/buildversion.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/buildversion.mk -------------------------------------------------------------------------------- /libsensors/bst/tools/cm_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/cm_build.sh -------------------------------------------------------------------------------- /libsensors/bst/tools/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/config.mk -------------------------------------------------------------------------------- /libsensors/bst/tools/cppcheck_daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/cppcheck_daemon.sh -------------------------------------------------------------------------------- /libsensors/bst/tools/cppcheck_hal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/cppcheck_hal.sh -------------------------------------------------------------------------------- /libsensors/bst/tools/cppcheck_suppress_daemon.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/cppcheck_suppress_daemon.lst -------------------------------------------------------------------------------- /libsensors/bst/tools/get_hal_version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/get_hal_version.bat -------------------------------------------------------------------------------- /libsensors/bst/tools/get_sensord_data.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/get_sensord_data.bat -------------------------------------------------------------------------------- /libsensors/bst/tools/get_sensord_log.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/get_sensord_log.bat -------------------------------------------------------------------------------- /libsensors/bst/tools/get_sensord_version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/get_sensord_version.bat -------------------------------------------------------------------------------- /libsensors/bst/tools/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/install.bat -------------------------------------------------------------------------------- /libsensors/bst/tools/l8150_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/l8150_config.mk -------------------------------------------------------------------------------- /libsensors/bst/tools/l8720_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/l8720_config.mk -------------------------------------------------------------------------------- /libsensors/bst/tools/moto_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/moto_config.mk -------------------------------------------------------------------------------- /libsensors/bst/tools/options.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/tools/options.mk -------------------------------------------------------------------------------- /libsensors/bst/version/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/version/version.c -------------------------------------------------------------------------------- /libsensors/bst/version/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/bst/version/version.h -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/AccelerometerSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/AccelerometerSensor.cpp -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/AccelerometerSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/AccelerometerSensor.h -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/Android.mk -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/CompOriSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/CompOriSensor.cpp -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/CompOriSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/CompOriSensor.h -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/GyroscopeSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/GyroscopeSensor.cpp -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/GyroscopeSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/GyroscopeSensor.h -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/InputEventReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/InputEventReader.cpp -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/InputEventReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/InputEventReader.h -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/LightProxSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/LightProxSensor.cpp -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/LightProxSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/LightProxSensor.h -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/SensorBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/SensorBase.cpp -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/SensorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/SensorBase.h -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/sensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/sensors.cpp -------------------------------------------------------------------------------- /libsensors/falcon-peregrine/sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libsensors/falcon-peregrine/sensors.h -------------------------------------------------------------------------------- /libshims/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libshims/Android.mk -------------------------------------------------------------------------------- /libshims/thermal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/libshims/thermal.c -------------------------------------------------------------------------------- /mkbootimg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/mkbootimg.mk -------------------------------------------------------------------------------- /msm8226.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/msm8226.mk -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/power_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/overlay/frameworks/base/core/res/res/xml/power_profile.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/overlay/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/CarrierConfig/res/xml/vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/overlay/packages/apps/CarrierConfig/res/xml/vendor.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Dialer/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/overlay/packages/apps/Dialer/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Snap/res/values/qcomstrings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/overlay/packages/apps/Snap/res/values/qcomstrings.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telecomm/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/overlay/packages/services/Telecomm/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telephony/res/values-mcc310-mnc120/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/overlay/packages/services/Telephony/res/values-mcc310-mnc120/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telephony/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/overlay/packages/services/Telephony/res/values/config.xml -------------------------------------------------------------------------------- /overlay/vendor/cmsdk/cm/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/overlay/vendor/cmsdk/cm/res/res/values/config.xml -------------------------------------------------------------------------------- /power/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/power/Android.mk -------------------------------------------------------------------------------- /power/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/power/power.c -------------------------------------------------------------------------------- /power/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/power/power.h -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /releasetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/releasetools.py -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/rootdir/Android.mk -------------------------------------------------------------------------------- /rootdir/etc/dump_pds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/rootdir/etc/dump_pds.sh -------------------------------------------------------------------------------- /rootdir/etc/fstab.qcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/rootdir/etc/fstab.qcom -------------------------------------------------------------------------------- /rootdir/etc/init.mmi.boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/rootdir/etc/init.mmi.boot.sh -------------------------------------------------------------------------------- /rootdir/etc/init.mmi.touch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/rootdir/etc/init.mmi.touch.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.bt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/rootdir/etc/init.qcom.bt.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/rootdir/etc/init.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.ril.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/rootdir/etc/init.qcom.ril.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/rootdir/etc/init.qcom.usb.rc -------------------------------------------------------------------------------- /rootdir/etc/init.recovery.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/rootdir/etc/init.recovery.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/ueventd.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/rootdir/etc/ueventd.qcom.rc -------------------------------------------------------------------------------- /sepolicy/akmd8963.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/akmd8963.te -------------------------------------------------------------------------------- /sepolicy/atvc.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/atvc.te -------------------------------------------------------------------------------- /sepolicy/batt_health.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/batt_health.te -------------------------------------------------------------------------------- /sepolicy/device.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/device.te -------------------------------------------------------------------------------- /sepolicy/dump_pds.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/dump_pds.te -------------------------------------------------------------------------------- /sepolicy/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/file.te -------------------------------------------------------------------------------- /sepolicy/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/file_contexts -------------------------------------------------------------------------------- /sepolicy/healthd.te: -------------------------------------------------------------------------------- 1 | allow healthd device:dir r_dir_perms; 2 | -------------------------------------------------------------------------------- /sepolicy/init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/init.te -------------------------------------------------------------------------------- /sepolicy/kernel.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/kernel.te -------------------------------------------------------------------------------- /sepolicy/keystore.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/keystore.te -------------------------------------------------------------------------------- /sepolicy/mediaserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/mediaserver.te -------------------------------------------------------------------------------- /sepolicy/mm-qcamerad.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/mm-qcamerad.te -------------------------------------------------------------------------------- /sepolicy/mpdecision.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/mpdecision.te -------------------------------------------------------------------------------- /sepolicy/netmgrd.te: -------------------------------------------------------------------------------- 1 | allow netmgrd self:capability dac_override; 2 | -------------------------------------------------------------------------------- /sepolicy/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/property.te -------------------------------------------------------------------------------- /sepolicy/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/property_contexts -------------------------------------------------------------------------------- /sepolicy/qti_init_shell.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/qti_init_shell.te -------------------------------------------------------------------------------- /sepolicy/rild.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/rild.te -------------------------------------------------------------------------------- /sepolicy/rmt_storage.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/rmt_storage.te -------------------------------------------------------------------------------- /sepolicy/sensord.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/sensord.te -------------------------------------------------------------------------------- /sepolicy/system_app.te: -------------------------------------------------------------------------------- 1 | allow system_app shell_data_file:dir search; 2 | -------------------------------------------------------------------------------- /sepolicy/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/system_server.te -------------------------------------------------------------------------------- /sepolicy/thermal-engine.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/thermal-engine.te -------------------------------------------------------------------------------- /sepolicy/ueventd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/ueventd.te -------------------------------------------------------------------------------- /sepolicy/vold.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/sepolicy/vold.te -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/setup-makefiles.sh -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/system.prop -------------------------------------------------------------------------------- /thermal/thermal-engine-8226.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/thermal/thermal-engine-8226.conf -------------------------------------------------------------------------------- /thermal/thermal-engine-thea.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/thermal/thermal-engine-thea.conf -------------------------------------------------------------------------------- /thermal/thermal-engine-titan.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/thermal/thermal-engine-titan.conf -------------------------------------------------------------------------------- /wifi/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/wifi/Android.mk -------------------------------------------------------------------------------- /wifi/WCNSS_cfg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/wifi/WCNSS_cfg.dat -------------------------------------------------------------------------------- /wifi/WCNSS_qcom_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/wifi/WCNSS_qcom_cfg.ini -------------------------------------------------------------------------------- /wifi/hostapd_default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/wifi/hostapd_default.conf -------------------------------------------------------------------------------- /wifi/p2p_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/wifi/p2p_supplicant_overlay.conf -------------------------------------------------------------------------------- /wifi/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_motorola_msm8226-common/HEAD/wifi/wpa_supplicant_overlay.conf --------------------------------------------------------------------------------