├── Android.bp ├── Android.mk ├── BoardConfigCommon.mk ├── README.md ├── camera ├── Android.mk └── CameraWrapper.cpp ├── compatibility_matrix.xml ├── config.fs ├── configs ├── audio │ ├── audio_effects.xml │ ├── audio_policy_configuration.xml │ └── mixer_paths.xml ├── data │ ├── dsi_config.xml │ ├── netmgr_config.xml │ └── qmi_config.xml ├── gps │ ├── flp.conf │ ├── gps.conf │ ├── izat.conf │ └── sap.conf ├── ld.config.txt ├── media │ ├── media_codecs.xml │ └── media_codecs_8929.xml ├── msm_irqbalance.conf ├── sec_config └── wifi │ ├── WCNSS_cfg.dat │ ├── WCNSS_qcom_cfg.ini │ ├── WCNSS_qcom_wlan_nv.bin │ ├── cred.conf │ ├── p2p_supplicant_overlay.conf │ ├── wpa_supplicant.conf │ └── wpa_supplicant_overlay.conf ├── extract-files.sh ├── gps ├── Android.mk ├── core │ ├── Android.mk │ ├── ContextBase.cpp │ ├── ContextBase.h │ ├── LBSProxyBase.h │ ├── LocAdapterBase.cpp │ ├── LocAdapterBase.h │ ├── LocAdapterProxyBase.h │ ├── LocApiBase.cpp │ ├── LocApiBase.h │ ├── LocDualContext.cpp │ ├── LocDualContext.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 └── utils │ ├── Android.mk │ ├── LocHeap.cpp │ ├── LocHeap.h │ ├── LocSharedLock.h │ ├── LocThread.cpp │ ├── LocThread.h │ ├── LocTimer.cpp │ ├── LocTimer.h │ ├── Makefile.am │ ├── MsgTask.cpp │ ├── MsgTask.h │ ├── linked_list.c │ ├── linked_list.h │ ├── loc_cfg.cpp │ ├── loc_cfg.h │ ├── loc_log.cpp │ ├── loc_log.h │ ├── loc_misc_utils.cpp │ ├── loc_misc_utils.h │ ├── loc_target.cpp │ ├── loc_target.h │ ├── loc_timer.h │ ├── log_util.h │ ├── msg_q.c │ ├── msg_q.h │ └── platform_lib_abstractions │ ├── elapsed_millis_since_boot.cpp │ ├── platform_lib_includes.h │ ├── platform_lib_macros.h │ └── platform_lib_time.h ├── include ├── cryptfs_hw.h └── fd_utils-inl-extra.h ├── keylayout ├── gpio-keys.kl ├── sec_touchkey.kl └── sec_touchscreen.kl ├── libhidl └── Android.mk ├── libshims ├── Android.mk ├── LocAdapterBase.cpp ├── camera_shim.c ├── gps_shim.cpp ├── logging.cpp └── secril_shim.cpp ├── libwcnss_qmi ├── Android.mk └── wcnss_qmi_client.c ├── light ├── Android.bp ├── Light.cpp ├── Light.h ├── android.hardware.light@2.0-service.msm8916.rc └── service.cpp ├── lineage.dependencies ├── manifest.xml ├── msm8916.mk ├── nfc ├── common │ ├── board.mk │ ├── manifest.xml │ ├── product.mk │ └── sepolicy │ │ ├── hal_nfc_default.te │ │ └── vendor_init.te └── pn547 │ ├── board.mk │ ├── libnfc-nci.conf │ ├── libnfc-nxp.conf │ ├── libnfc-nxp_RF.conf │ ├── manifest.xml │ └── product.mk ├── overlay-lineage ├── lineage-sdk │ └── lineage │ │ └── res │ │ └── res │ │ └── values │ │ └── config.xml └── packages │ └── apps │ └── Updater │ └── res │ └── values │ └── strings.xml ├── overlay ├── frameworks │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ │ └── packages │ │ └── SystemUI │ │ └── res │ │ └── values │ │ └── config.xml └── packages │ ├── apps │ ├── Bluetooth │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── CarrierConfig │ │ └── res │ │ │ └── xml │ │ │ └── vendor.xml │ ├── Dialer │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── Phone │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ └── Snap │ │ └── res │ │ └── values │ │ └── config.xml │ └── services │ ├── Telecomm │ └── res │ │ └── values │ │ └── config.xml │ └── Telephony │ └── res │ └── values │ └── config.xml ├── proprietary-files.txt ├── recovery ├── recovery.fstab ├── recovery_keys.c └── twrp.fstab ├── rootdir ├── Android.mk └── etc │ ├── fstab.qcom │ ├── init.class_main.sh │ ├── init.link_ril_db.sh │ ├── init.qcom.fm.sh │ ├── init.qcom.post_boot.sh │ ├── init.qcom.rc │ ├── init.qcom.sh │ ├── init.qcom.uicc.sh │ ├── init.qcom.usb.rc │ ├── init.qcom.usb.sh │ ├── init.recovery.qcom.rc │ └── ueventd.qcom.rc ├── seccomp └── mediacodec-seccomp.policy ├── sensors_wrapper ├── Android.mk └── sensorswrapper.c ├── sepolicy_tmp ├── file.te └── file_contexts └── setup-makefiles.sh /Android.bp: -------------------------------------------------------------------------------- 1 | subdirs = [ 2 | "light", 3 | ] 4 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/Android.mk -------------------------------------------------------------------------------- /BoardConfigCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/BoardConfigCommon.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # android_device_samsung_msm8916-common -------------------------------------------------------------------------------- /camera/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/camera/Android.mk -------------------------------------------------------------------------------- /camera/CameraWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/camera/CameraWrapper.cpp -------------------------------------------------------------------------------- /compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/compatibility_matrix.xml -------------------------------------------------------------------------------- /config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/config.fs -------------------------------------------------------------------------------- /configs/audio/audio_effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/audio/audio_effects.xml -------------------------------------------------------------------------------- /configs/audio/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/audio/audio_policy_configuration.xml -------------------------------------------------------------------------------- /configs/audio/mixer_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/audio/mixer_paths.xml -------------------------------------------------------------------------------- /configs/data/dsi_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/data/dsi_config.xml -------------------------------------------------------------------------------- /configs/data/netmgr_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/data/netmgr_config.xml -------------------------------------------------------------------------------- /configs/data/qmi_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/data/qmi_config.xml -------------------------------------------------------------------------------- /configs/gps/flp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/gps/flp.conf -------------------------------------------------------------------------------- /configs/gps/gps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/gps/gps.conf -------------------------------------------------------------------------------- /configs/gps/izat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/gps/izat.conf -------------------------------------------------------------------------------- /configs/gps/sap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/gps/sap.conf -------------------------------------------------------------------------------- /configs/ld.config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/ld.config.txt -------------------------------------------------------------------------------- /configs/media/media_codecs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/media/media_codecs.xml -------------------------------------------------------------------------------- /configs/media/media_codecs_8929.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/media/media_codecs_8929.xml -------------------------------------------------------------------------------- /configs/msm_irqbalance.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/msm_irqbalance.conf -------------------------------------------------------------------------------- /configs/sec_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/sec_config -------------------------------------------------------------------------------- /configs/wifi/WCNSS_cfg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/wifi/WCNSS_cfg.dat -------------------------------------------------------------------------------- /configs/wifi/WCNSS_qcom_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/wifi/WCNSS_qcom_cfg.ini -------------------------------------------------------------------------------- /configs/wifi/WCNSS_qcom_wlan_nv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/wifi/WCNSS_qcom_wlan_nv.bin -------------------------------------------------------------------------------- /configs/wifi/cred.conf: -------------------------------------------------------------------------------- 1 | cred={ 2 | imsi="?" 3 | } -------------------------------------------------------------------------------- /configs/wifi/p2p_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/wifi/p2p_supplicant_overlay.conf -------------------------------------------------------------------------------- /configs/wifi/wpa_supplicant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/wifi/wpa_supplicant.conf -------------------------------------------------------------------------------- /configs/wifi/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/configs/wifi/wpa_supplicant_overlay.conf -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/extract-files.sh -------------------------------------------------------------------------------- /gps/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/Android.mk -------------------------------------------------------------------------------- /gps/core/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/Android.mk -------------------------------------------------------------------------------- /gps/core/ContextBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/ContextBase.cpp -------------------------------------------------------------------------------- /gps/core/ContextBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/ContextBase.h -------------------------------------------------------------------------------- /gps/core/LBSProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/LBSProxyBase.h -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/LocAdapterBase.cpp -------------------------------------------------------------------------------- /gps/core/LocAdapterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/LocAdapterBase.h -------------------------------------------------------------------------------- /gps/core/LocAdapterProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/LocAdapterProxyBase.h -------------------------------------------------------------------------------- /gps/core/LocApiBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/LocApiBase.cpp -------------------------------------------------------------------------------- /gps/core/LocApiBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/LocApiBase.h -------------------------------------------------------------------------------- /gps/core/LocDualContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/LocDualContext.cpp -------------------------------------------------------------------------------- /gps/core/LocDualContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/LocDualContext.h -------------------------------------------------------------------------------- /gps/core/UlpProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/UlpProxyBase.h -------------------------------------------------------------------------------- /gps/core/gps_extended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/gps_extended.h -------------------------------------------------------------------------------- /gps/core/gps_extended_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/gps_extended_c.h -------------------------------------------------------------------------------- /gps/core/loc_core_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/loc_core_log.cpp -------------------------------------------------------------------------------- /gps/core/loc_core_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/core/loc_core_log.h -------------------------------------------------------------------------------- /gps/loc_api/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/loc_api/Android.mk -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/loc_api/libloc_api_50001/Android.mk -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/LocEngAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/loc_api/libloc_api_50001/LocEngAdapter.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/LocEngAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/loc_api/libloc_api_50001/LocEngAdapter.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/loc_api/libloc_api_50001/Makefile.am -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/loc_api/libloc_api_50001/gps.c -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/loc_api/libloc_api_50001/loc.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/loc_api/libloc_api_50001/loc.h -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng.cpp -------------------------------------------------------------------------------- /gps/loc_api/libloc_api_50001/loc_eng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-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/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/loc_api/libloc_api_50001/loc_eng_xtra.h -------------------------------------------------------------------------------- /gps/utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/Android.mk -------------------------------------------------------------------------------- /gps/utils/LocHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/LocHeap.cpp -------------------------------------------------------------------------------- /gps/utils/LocHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/LocHeap.h -------------------------------------------------------------------------------- /gps/utils/LocSharedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/LocSharedLock.h -------------------------------------------------------------------------------- /gps/utils/LocThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/LocThread.cpp -------------------------------------------------------------------------------- /gps/utils/LocThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/LocThread.h -------------------------------------------------------------------------------- /gps/utils/LocTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/LocTimer.cpp -------------------------------------------------------------------------------- /gps/utils/LocTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/LocTimer.h -------------------------------------------------------------------------------- /gps/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/Makefile.am -------------------------------------------------------------------------------- /gps/utils/MsgTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/MsgTask.cpp -------------------------------------------------------------------------------- /gps/utils/MsgTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/MsgTask.h -------------------------------------------------------------------------------- /gps/utils/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/linked_list.c -------------------------------------------------------------------------------- /gps/utils/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/linked_list.h -------------------------------------------------------------------------------- /gps/utils/loc_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/loc_cfg.cpp -------------------------------------------------------------------------------- /gps/utils/loc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/loc_cfg.h -------------------------------------------------------------------------------- /gps/utils/loc_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/loc_log.cpp -------------------------------------------------------------------------------- /gps/utils/loc_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/loc_log.h -------------------------------------------------------------------------------- /gps/utils/loc_misc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/loc_misc_utils.cpp -------------------------------------------------------------------------------- /gps/utils/loc_misc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/loc_misc_utils.h -------------------------------------------------------------------------------- /gps/utils/loc_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/loc_target.cpp -------------------------------------------------------------------------------- /gps/utils/loc_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/loc_target.h -------------------------------------------------------------------------------- /gps/utils/loc_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/loc_timer.h -------------------------------------------------------------------------------- /gps/utils/log_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/log_util.h -------------------------------------------------------------------------------- /gps/utils/msg_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/msg_q.c -------------------------------------------------------------------------------- /gps/utils/msg_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/msg_q.h -------------------------------------------------------------------------------- /gps/utils/platform_lib_abstractions/elapsed_millis_since_boot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/platform_lib_abstractions/elapsed_millis_since_boot.cpp -------------------------------------------------------------------------------- /gps/utils/platform_lib_abstractions/platform_lib_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/platform_lib_abstractions/platform_lib_includes.h -------------------------------------------------------------------------------- /gps/utils/platform_lib_abstractions/platform_lib_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/platform_lib_abstractions/platform_lib_macros.h -------------------------------------------------------------------------------- /gps/utils/platform_lib_abstractions/platform_lib_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/gps/utils/platform_lib_abstractions/platform_lib_time.h -------------------------------------------------------------------------------- /include/cryptfs_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/include/cryptfs_hw.h -------------------------------------------------------------------------------- /include/fd_utils-inl-extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/include/fd_utils-inl-extra.h -------------------------------------------------------------------------------- /keylayout/gpio-keys.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/keylayout/gpio-keys.kl -------------------------------------------------------------------------------- /keylayout/sec_touchkey.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/keylayout/sec_touchkey.kl -------------------------------------------------------------------------------- /keylayout/sec_touchscreen.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/keylayout/sec_touchscreen.kl -------------------------------------------------------------------------------- /libhidl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/libhidl/Android.mk -------------------------------------------------------------------------------- /libshims/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/libshims/Android.mk -------------------------------------------------------------------------------- /libshims/LocAdapterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/libshims/LocAdapterBase.cpp -------------------------------------------------------------------------------- /libshims/camera_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/libshims/camera_shim.c -------------------------------------------------------------------------------- /libshims/gps_shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/libshims/gps_shim.cpp -------------------------------------------------------------------------------- /libshims/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/libshims/logging.cpp -------------------------------------------------------------------------------- /libshims/secril_shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/libshims/secril_shim.cpp -------------------------------------------------------------------------------- /libwcnss_qmi/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/libwcnss_qmi/Android.mk -------------------------------------------------------------------------------- /libwcnss_qmi/wcnss_qmi_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/libwcnss_qmi/wcnss_qmi_client.c -------------------------------------------------------------------------------- /light/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/light/Android.bp -------------------------------------------------------------------------------- /light/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/light/Light.cpp -------------------------------------------------------------------------------- /light/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/light/Light.h -------------------------------------------------------------------------------- /light/android.hardware.light@2.0-service.msm8916.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/light/android.hardware.light@2.0-service.msm8916.rc -------------------------------------------------------------------------------- /light/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/light/service.cpp -------------------------------------------------------------------------------- /lineage.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/lineage.dependencies -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/manifest.xml -------------------------------------------------------------------------------- /msm8916.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/msm8916.mk -------------------------------------------------------------------------------- /nfc/common/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/nfc/common/board.mk -------------------------------------------------------------------------------- /nfc/common/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/nfc/common/manifest.xml -------------------------------------------------------------------------------- /nfc/common/product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/nfc/common/product.mk -------------------------------------------------------------------------------- /nfc/common/sepolicy/hal_nfc_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/nfc/common/sepolicy/hal_nfc_default.te -------------------------------------------------------------------------------- /nfc/common/sepolicy/vendor_init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/nfc/common/sepolicy/vendor_init.te -------------------------------------------------------------------------------- /nfc/pn547/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/nfc/pn547/board.mk -------------------------------------------------------------------------------- /nfc/pn547/libnfc-nci.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/nfc/pn547/libnfc-nci.conf -------------------------------------------------------------------------------- /nfc/pn547/libnfc-nxp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/nfc/pn547/libnfc-nxp.conf -------------------------------------------------------------------------------- /nfc/pn547/libnfc-nxp_RF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/nfc/pn547/libnfc-nxp_RF.conf -------------------------------------------------------------------------------- /nfc/pn547/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/nfc/pn547/manifest.xml -------------------------------------------------------------------------------- /nfc/pn547/product.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/nfc/pn547/product.mk -------------------------------------------------------------------------------- /overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay-lineage/packages/apps/Updater/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/overlay-lineage/packages/apps/Updater/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/overlay/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Bluetooth/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/overlay/packages/apps/Bluetooth/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/CarrierConfig/res/xml/vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/overlay/packages/apps/CarrierConfig/res/xml/vendor.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Dialer/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/overlay/packages/apps/Dialer/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Phone/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/overlay/packages/apps/Phone/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Snap/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/overlay/packages/apps/Snap/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telecomm/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/overlay/packages/services/Telecomm/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telephony/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/overlay/packages/services/Telephony/res/values/config.xml -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /recovery/recovery.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/recovery/recovery.fstab -------------------------------------------------------------------------------- /recovery/recovery_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/recovery/recovery_keys.c -------------------------------------------------------------------------------- /recovery/twrp.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/recovery/twrp.fstab -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/Android.mk -------------------------------------------------------------------------------- /rootdir/etc/fstab.qcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/fstab.qcom -------------------------------------------------------------------------------- /rootdir/etc/init.class_main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/init.class_main.sh -------------------------------------------------------------------------------- /rootdir/etc/init.link_ril_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/init.link_ril_db.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.fm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/init.qcom.fm.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.post_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/init.qcom.post_boot.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/init.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/init.qcom.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.uicc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/init.qcom.uicc.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/init.qcom.usb.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.usb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/init.qcom.usb.sh -------------------------------------------------------------------------------- /rootdir/etc/init.recovery.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/init.recovery.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/ueventd.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/rootdir/etc/ueventd.qcom.rc -------------------------------------------------------------------------------- /seccomp/mediacodec-seccomp.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/seccomp/mediacodec-seccomp.policy -------------------------------------------------------------------------------- /sensors_wrapper/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/sensors_wrapper/Android.mk -------------------------------------------------------------------------------- /sensors_wrapper/sensorswrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/sensors_wrapper/sensorswrapper.c -------------------------------------------------------------------------------- /sepolicy_tmp/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/sepolicy_tmp/file.te -------------------------------------------------------------------------------- /sepolicy_tmp/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/sepolicy_tmp/file_contexts -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxy-MSM8916/android_device_samsung_msm8916-common/HEAD/setup-makefiles.sh --------------------------------------------------------------------------------