├── Android.mk ├── BoardConfigCommon.mk ├── README ├── audio ├── audio_effects.conf ├── audio_platform_info.xml ├── audio_policy.conf └── mixer_paths.xml ├── bluetooth ├── bdroid_buildcfg.h └── vnd_hlte.txt ├── camera ├── Android.mk └── CameraWrapper.cpp ├── cm.dependencies ├── cmhw └── org │ └── cyanogenmod │ └── hardware │ └── DisplayColorCalibration.java ├── configs ├── libnfc-brcm-20791b04.conf ├── libnfc-brcm-20791b05.conf ├── libnfc-brcm.conf ├── media_profiles.xml ├── nfcee_access.xml ├── p2p_supplicant_overlay.conf ├── thermal-engine-8974.conf ├── wpa_supplicant.conf └── wpa_supplicant_overlay.conf ├── extract-files.sh ├── gps ├── Android.mk ├── CleanSpec.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 ├── etc │ ├── flp.conf │ ├── gps.conf │ └── sap.conf ├── loc_api │ ├── Android.mk │ ├── NOTICE │ └── 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 │ └── sec_gps.c ├── hlte.mk ├── idc └── sec_e-pen.idc ├── include ├── camera │ └── CameraParametersExtra.h ├── device_perms.h └── hardware │ └── gps.h ├── keylayout ├── Button_Jack.kl ├── gpio-keys.kl ├── philips_remote_ir.kl ├── samsung_remote_ir.kl ├── sec_touchkey.kl └── ue_rf4ce_remote.kl ├── liblights ├── Android.mk ├── NOTICE └── lights.c ├── mkbootimg.mk ├── overlay ├── frameworks │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ ├── drawable-xxhdpi │ │ │ └── pointer_arrow.png │ │ │ ├── drawable │ │ │ └── pointer_arrow_icon.xml │ │ │ ├── values │ │ │ └── config.xml │ │ │ └── xml │ │ │ ├── power_profile.xml │ │ │ └── storage_list.xml │ │ └── packages │ │ ├── SettingsProvider │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ │ └── SystemUI │ │ └── res │ │ └── values │ │ └── config.xml └── packages │ ├── apps │ └── Settings │ │ └── res │ │ └── values │ │ ├── bools.xml │ │ └── config.xml │ └── services │ └── Telephony │ └── res │ └── values │ └── config.xml ├── power └── power_ext.c ├── proprietary-files.txt ├── ril └── telephony │ └── java │ └── com │ └── android │ └── internal │ └── telephony │ └── hlteRIL.java ├── rootdir ├── Android.mk └── etc │ ├── fstab.qcom │ ├── init.crda.sh │ ├── init.qcom.rc │ ├── init.qcom.usb.rc │ ├── init.target.rc │ └── ueventd.qcom.rc ├── sepolicy ├── bluetooth.te ├── device.te ├── file.te ├── file_contexts ├── genfs_contexts ├── macloader.te ├── mediaserver.te ├── mm-qcamerad.te ├── rild.te ├── rmt_storage.te ├── system_app.te ├── system_server.te ├── time_daemon.te └── ueventd.te ├── setup-makefiles.sh └── system_prop.mk /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/Android.mk -------------------------------------------------------------------------------- /BoardConfigCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/BoardConfigCommon.mk -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/README -------------------------------------------------------------------------------- /audio/audio_effects.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/audio/audio_effects.conf -------------------------------------------------------------------------------- /audio/audio_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/audio/audio_platform_info.xml -------------------------------------------------------------------------------- /audio/audio_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/audio/audio_policy.conf -------------------------------------------------------------------------------- /audio/mixer_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/audio/mixer_paths.xml -------------------------------------------------------------------------------- /bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/bluetooth/bdroid_buildcfg.h -------------------------------------------------------------------------------- /bluetooth/vnd_hlte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/bluetooth/vnd_hlte.txt -------------------------------------------------------------------------------- /camera/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/camera/Android.mk -------------------------------------------------------------------------------- /camera/CameraWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/camera/CameraWrapper.cpp -------------------------------------------------------------------------------- /cm.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/cm.dependencies -------------------------------------------------------------------------------- /cmhw/org/cyanogenmod/hardware/DisplayColorCalibration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/cmhw/org/cyanogenmod/hardware/DisplayColorCalibration.java -------------------------------------------------------------------------------- /configs/libnfc-brcm-20791b04.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/configs/libnfc-brcm-20791b04.conf -------------------------------------------------------------------------------- /configs/libnfc-brcm-20791b05.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/configs/libnfc-brcm-20791b05.conf -------------------------------------------------------------------------------- /configs/libnfc-brcm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/configs/libnfc-brcm.conf -------------------------------------------------------------------------------- /configs/media_profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/configs/media_profiles.xml -------------------------------------------------------------------------------- /configs/nfcee_access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/configs/nfcee_access.xml -------------------------------------------------------------------------------- /configs/p2p_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/configs/p2p_supplicant_overlay.conf -------------------------------------------------------------------------------- /configs/thermal-engine-8974.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/configs/thermal-engine-8974.conf -------------------------------------------------------------------------------- /configs/wpa_supplicant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/configs/wpa_supplicant.conf -------------------------------------------------------------------------------- /configs/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- 1 | p2p_disabled=1 2 | update_config=1 3 | -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/extract-files.sh -------------------------------------------------------------------------------- /gps/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/Android.mk -------------------------------------------------------------------------------- /gps/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/CleanSpec.mk -------------------------------------------------------------------------------- /gps/core/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/Android.mk -------------------------------------------------------------------------------- /gps/core/ContextBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/ContextBase.cpp -------------------------------------------------------------------------------- /gps/core/ContextBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/ContextBase.h -------------------------------------------------------------------------------- /gps/core/LBSProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/LBSProxyBase.h -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/LocAdapterBase.cpp -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/LocAdapterBase.h -------------------------------------------------------------------------------- /gps/core/LocApiBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/LocApiBase.cpp -------------------------------------------------------------------------------- /gps/core/LocApiBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/LocApiBase.h -------------------------------------------------------------------------------- /gps/core/LocDualContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/LocDualContext.cpp -------------------------------------------------------------------------------- /gps/core/LocDualContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/LocDualContext.h -------------------------------------------------------------------------------- /gps/core/MsgTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/MsgTask.cpp -------------------------------------------------------------------------------- /gps/core/MsgTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/MsgTask.h -------------------------------------------------------------------------------- /gps/core/UlpProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/UlpProxyBase.h -------------------------------------------------------------------------------- /gps/core/gps_extended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/gps_extended.h -------------------------------------------------------------------------------- /gps/core/gps_extended_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/gps_extended_c.h -------------------------------------------------------------------------------- /gps/core/loc_core_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/loc_core_log.cpp -------------------------------------------------------------------------------- /gps/core/loc_core_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/core/loc_core_log.h -------------------------------------------------------------------------------- /gps/etc/flp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/etc/flp.conf -------------------------------------------------------------------------------- /gps/etc/gps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/etc/gps.conf -------------------------------------------------------------------------------- /gps/etc/sap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/etc/sap.conf -------------------------------------------------------------------------------- /gps/loc_api/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/loc_api/Android.mk -------------------------------------------------------------------------------- /gps/loc_api/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/loc_api/NOTICE -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-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_samsung_hlte-common/HEAD/gps/platform_lib_abstractions/platform_lib_time.h -------------------------------------------------------------------------------- /gps/utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/Android.mk -------------------------------------------------------------------------------- /gps/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/Makefile.am -------------------------------------------------------------------------------- /gps/utils/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/linked_list.c -------------------------------------------------------------------------------- /gps/utils/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/linked_list.h -------------------------------------------------------------------------------- /gps/utils/loc_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/loc_cfg.cpp -------------------------------------------------------------------------------- /gps/utils/loc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/loc_cfg.h -------------------------------------------------------------------------------- /gps/utils/loc_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/loc_log.cpp -------------------------------------------------------------------------------- /gps/utils/loc_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/loc_log.h -------------------------------------------------------------------------------- /gps/utils/loc_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/loc_target.cpp -------------------------------------------------------------------------------- /gps/utils/loc_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/loc_target.h -------------------------------------------------------------------------------- /gps/utils/loc_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/loc_timer.c -------------------------------------------------------------------------------- /gps/utils/loc_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/loc_timer.h -------------------------------------------------------------------------------- /gps/utils/log_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/log_util.h -------------------------------------------------------------------------------- /gps/utils/msg_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/msg_q.c -------------------------------------------------------------------------------- /gps/utils/msg_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/msg_q.h -------------------------------------------------------------------------------- /gps/utils/sec_gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/gps/utils/sec_gps.c -------------------------------------------------------------------------------- /hlte.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/hlte.mk -------------------------------------------------------------------------------- /idc/sec_e-pen.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/idc/sec_e-pen.idc -------------------------------------------------------------------------------- /include/camera/CameraParametersExtra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/include/camera/CameraParametersExtra.h -------------------------------------------------------------------------------- /include/device_perms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/include/device_perms.h -------------------------------------------------------------------------------- /include/hardware/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/include/hardware/gps.h -------------------------------------------------------------------------------- /keylayout/Button_Jack.kl: -------------------------------------------------------------------------------- 1 | key 256 HEADSETHOOK 2 | -------------------------------------------------------------------------------- /keylayout/gpio-keys.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/keylayout/gpio-keys.kl -------------------------------------------------------------------------------- /keylayout/philips_remote_ir.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/keylayout/philips_remote_ir.kl -------------------------------------------------------------------------------- /keylayout/samsung_remote_ir.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/keylayout/samsung_remote_ir.kl -------------------------------------------------------------------------------- /keylayout/sec_touchkey.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/keylayout/sec_touchkey.kl -------------------------------------------------------------------------------- /keylayout/ue_rf4ce_remote.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/keylayout/ue_rf4ce_remote.kl -------------------------------------------------------------------------------- /liblights/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/liblights/Android.mk -------------------------------------------------------------------------------- /liblights/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/liblights/NOTICE -------------------------------------------------------------------------------- /liblights/lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/liblights/lights.c -------------------------------------------------------------------------------- /mkbootimg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/mkbootimg.mk -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/drawable-xxhdpi/pointer_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/overlay/frameworks/base/core/res/res/drawable-xxhdpi/pointer_arrow.png -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/drawable/pointer_arrow_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/overlay/frameworks/base/core/res/res/drawable/pointer_arrow_icon.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-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_samsung_hlte-common/HEAD/overlay/frameworks/base/core/res/res/xml/power_profile.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/storage_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/overlay/frameworks/base/core/res/res/xml/storage_list.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SettingsProvider/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/overlay/frameworks/base/packages/SettingsProvider/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/overlay/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/overlay/packages/apps/Settings/res/values/bools.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/overlay/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telephony/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/overlay/packages/services/Telephony/res/values/config.xml -------------------------------------------------------------------------------- /power/power_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/power/power_ext.c -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /ril/telephony/java/com/android/internal/telephony/hlteRIL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/ril/telephony/java/com/android/internal/telephony/hlteRIL.java -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/rootdir/Android.mk -------------------------------------------------------------------------------- /rootdir/etc/fstab.qcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/rootdir/etc/fstab.qcom -------------------------------------------------------------------------------- /rootdir/etc/init.crda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/rootdir/etc/init.crda.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/rootdir/etc/init.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/rootdir/etc/init.qcom.usb.rc -------------------------------------------------------------------------------- /rootdir/etc/init.target.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/rootdir/etc/init.target.rc -------------------------------------------------------------------------------- /rootdir/etc/ueventd.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/rootdir/etc/ueventd.qcom.rc -------------------------------------------------------------------------------- /sepolicy/bluetooth.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/bluetooth.te -------------------------------------------------------------------------------- /sepolicy/device.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/device.te -------------------------------------------------------------------------------- /sepolicy/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/file.te -------------------------------------------------------------------------------- /sepolicy/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/file_contexts -------------------------------------------------------------------------------- /sepolicy/genfs_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/genfs_contexts -------------------------------------------------------------------------------- /sepolicy/macloader.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/macloader.te -------------------------------------------------------------------------------- /sepolicy/mediaserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/mediaserver.te -------------------------------------------------------------------------------- /sepolicy/mm-qcamerad.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/mm-qcamerad.te -------------------------------------------------------------------------------- /sepolicy/rild.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/rild.te -------------------------------------------------------------------------------- /sepolicy/rmt_storage.te: -------------------------------------------------------------------------------- 1 | allow rmt_storage ssd_device:blk_file { open read write }; 2 | -------------------------------------------------------------------------------- /sepolicy/system_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/system_app.te -------------------------------------------------------------------------------- /sepolicy/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/system_server.te -------------------------------------------------------------------------------- /sepolicy/time_daemon.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/time_daemon.te -------------------------------------------------------------------------------- /sepolicy/ueventd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/sepolicy/ueventd.te -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/setup-makefiles.sh -------------------------------------------------------------------------------- /system_prop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_device_samsung_hlte-common/HEAD/system_prop.mk --------------------------------------------------------------------------------