├── .gitignore ├── Android.bp ├── Android.mk ├── AndroidProducts.mk ├── BoardConfig.mk ├── README.md ├── a6010.mk ├── aidl ├── touch │ ├── Android.bp │ ├── keydisabler_hal.rs │ ├── main.rs │ ├── vendor.lineage.touch-service.a6010.rc │ └── vendor.lineage.touch-service.a6010.xml └── vibrator │ ├── Android.bp │ ├── Vibrator.cpp │ ├── Vibrator.h │ ├── android.hardware.vibrator-service.msm8916.rc │ ├── android.hardware.vibrator-service.msm8916.xml │ └── main.cpp ├── audio ├── acdb │ ├── QRD_Bluetooth_cal.acdb │ ├── QRD_Handset_cal.acdb │ ├── QRD_Hdmi_cal.acdb │ ├── QRD_Headset_cal.acdb │ ├── a6000 │ │ ├── QRD_General_cal.acdb │ │ ├── QRD_Global_cal.acdb │ │ └── QRD_Speaker_cal.acdb │ ├── a6010 │ │ ├── QRD_General_cal.acdb │ │ ├── QRD_Global_cal.acdb │ │ └── QRD_Speaker_cal.acdb │ └── sisleyr │ │ ├── MTP_Bluetooth_cal.acdb │ │ ├── MTP_General_cal.acdb │ │ ├── MTP_Global_cal.acdb │ │ ├── MTP_Handset_cal.acdb │ │ ├── MTP_Hdmi_cal.acdb │ │ ├── MTP_Headset_cal.acdb │ │ └── MTP_Speaker_cal.acdb ├── audio_effects.xml ├── audio_output_policy.conf ├── audio_platform_info.xml ├── audio_policy_configuration.xml ├── mixer_paths.xml └── mixer_paths_mtp.xml ├── bluetooth ├── a6000 │ └── bdroid_buildcfg.h └── a6010 │ └── bdroid_buildcfg.h ├── camera ├── Android.mk ├── CleanSpec.mk ├── MODULE_LICENSE_BSD ├── QCamera2 │ ├── Android.mk │ ├── HAL │ │ ├── Android.mk │ │ ├── QCamera2Factory.cpp │ │ ├── QCamera2Factory.h │ │ ├── QCamera2HWI.cpp │ │ ├── QCamera2HWI.h │ │ ├── QCamera2HWICallbacks.cpp │ │ ├── QCamera2Hal.cpp │ │ ├── QCameraAllocator.h │ │ ├── QCameraChannel.cpp │ │ ├── QCameraChannel.h │ │ ├── QCameraMem.cpp │ │ ├── QCameraMem.h │ │ ├── QCameraParameters.cpp │ │ ├── QCameraParameters.h │ │ ├── QCameraPostProc.cpp │ │ ├── QCameraPostProc.h │ │ ├── QCameraStateMachine.cpp │ │ ├── QCameraStateMachine.h │ │ ├── QCameraStream.cpp │ │ ├── QCameraStream.h │ │ ├── QCameraThermalAdapter.cpp │ │ ├── QCameraThermalAdapter.h │ │ ├── test │ │ │ ├── Android.mk │ │ │ ├── qcamera_test.cpp │ │ │ └── qcamera_test.h │ │ ├── tsMakeuplib │ │ │ └── include │ │ │ │ ├── ts_detectface_engine.h │ │ │ │ ├── ts_makeup_data.h │ │ │ │ ├── ts_makeup_engine.h │ │ │ │ └── ts_makeup_image.h │ │ └── wrapper │ │ │ ├── QualcommCamera.cpp │ │ │ └── QualcommCamera.h │ ├── stack │ │ ├── Android.mk │ │ ├── common │ │ │ ├── cam_intf.h │ │ │ ├── cam_list.h │ │ │ ├── cam_queue.h │ │ │ ├── cam_semaphore.h │ │ │ ├── cam_types.h │ │ │ ├── mm_camera_interface.h │ │ │ └── mm_jpeg_interface.h │ │ ├── mm-camera-interface │ │ │ ├── Android.mk │ │ │ ├── inc │ │ │ │ ├── mm_camera.h │ │ │ │ ├── mm_camera_dbg.h │ │ │ │ └── mm_camera_sock.h │ │ │ └── src │ │ │ │ ├── cam_intf.c │ │ │ │ ├── mm_camera.c │ │ │ │ ├── mm_camera_channel.c │ │ │ │ ├── mm_camera_interface.c │ │ │ │ ├── mm_camera_sock.c │ │ │ │ ├── mm_camera_stream.c │ │ │ │ └── mm_camera_thread.c │ │ ├── mm-camera-test │ │ │ ├── Android.mk │ │ │ ├── inc │ │ │ │ ├── mm_qcamera_app.h │ │ │ │ ├── mm_qcamera_commands.h │ │ │ │ ├── mm_qcamera_dbg.h │ │ │ │ ├── mm_qcamera_main_menu.h │ │ │ │ └── mm_qcamera_socket.h │ │ │ └── src │ │ │ │ ├── mm_qcamera_app.c │ │ │ │ ├── mm_qcamera_commands.c │ │ │ │ ├── mm_qcamera_dual_test.c │ │ │ │ ├── mm_qcamera_main_menu.c │ │ │ │ ├── mm_qcamera_preview.c │ │ │ │ ├── mm_qcamera_queue.c │ │ │ │ ├── mm_qcamera_rdi.c │ │ │ │ ├── mm_qcamera_reprocess.c │ │ │ │ ├── mm_qcamera_snapshot.c │ │ │ │ ├── mm_qcamera_socket.c │ │ │ │ ├── mm_qcamera_unit_test.c │ │ │ │ └── mm_qcamera_video.c │ │ └── mm-jpeg-interface │ │ │ ├── Android.mk │ │ │ ├── inc │ │ │ ├── mm_jpeg.h │ │ │ ├── mm_jpeg_dbg.h │ │ │ ├── mm_jpeg_inlines.h │ │ │ └── mm_jpeg_ionbuf.h │ │ │ ├── src │ │ │ ├── mm_jpeg.c │ │ │ ├── mm_jpeg_exif.c │ │ │ ├── mm_jpeg_interface.c │ │ │ ├── mm_jpeg_ionbuf.c │ │ │ ├── mm_jpeg_queue.c │ │ │ ├── mm_jpegdec.c │ │ │ └── mm_jpegdec_interface.c │ │ │ └── test │ │ │ ├── Android.mk │ │ │ ├── mm_jpeg_test.c │ │ │ └── mm_jpegdec_test.c │ └── util │ │ ├── QCameraCmdThread.cpp │ │ ├── QCameraCmdThread.h │ │ ├── QCameraQueue.cpp │ │ └── QCameraQueue.h ├── chromatix │ ├── Android.mk │ ├── camera_defs_i.h │ ├── chromatix.h │ ├── chromatix_common.h │ ├── chromatix_ov13850_snapshot.c │ └── chromatix_ov13850_snapshot.h ├── hal3on1 │ ├── Android.mk │ ├── HAL3on1-adapter.cpp │ └── README ├── mm-image-codec │ ├── Android.mk │ ├── qexif │ │ └── qexif.h │ └── qomx_core │ │ ├── Android.mk │ │ ├── QOMX_JpegExtensions.h │ │ ├── qomx_core.c │ │ └── qomx_core.h └── sensor │ ├── Android.mk │ ├── dump_sensor_lib.c │ ├── includes │ └── sensor_lib.h │ └── ov13850_lib.c ├── config.fs ├── configs ├── WCNSS_qcom_cfg.ini ├── cgroups.json ├── data │ ├── dsi_config.xml │ ├── netmgr_config.xml │ └── qmi_config.xml ├── googledialergo-sysconfig.xml ├── gps │ ├── apdr.conf │ ├── flp.conf │ ├── gps.conf │ ├── izat.conf │ ├── izat_xtra.conf │ ├── lowi.conf │ ├── sap.conf │ └── xtwifi.conf ├── media_codecs.xml ├── media_codecs_performance.xml ├── media_profiles_V1_0.xml ├── msm_irqbalance.conf ├── p2p_supplicant_overlay.conf ├── public.libraries.txt ├── sec_config ├── sensors │ └── _hals.conf ├── task_profiles.json ├── thermal-engine.conf ├── thermal_info_config.json └── wpa_supplicant_overlay.conf ├── device.mk ├── hardware ├── audio │ ├── Android.mk │ ├── audiod │ │ ├── Android.mk │ │ ├── AudioDaemon.cpp │ │ ├── AudioDaemon.h │ │ └── audiod_main.cpp │ ├── configs │ │ ├── common │ │ │ ├── audio_policy_configuration.xml │ │ │ └── overlay │ │ │ │ └── frameworks │ │ │ │ └── base │ │ │ │ └── core │ │ │ │ └── res │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── config.xml │ │ ├── msm8916_32 │ │ │ ├── audio_effects.conf │ │ │ ├── audio_output_policy.conf │ │ │ ├── audio_platform_info.xml │ │ │ ├── audio_platform_info_extcodec.xml │ │ │ ├── audio_policy.conf │ │ │ ├── audio_policy_configuration.xml │ │ │ ├── mixer_paths.xml │ │ │ ├── mixer_paths_msm8952_polaris.xml │ │ │ ├── mixer_paths_mtp.xml │ │ │ ├── mixer_paths_qrd_skuh.xml │ │ │ ├── mixer_paths_qrd_skuhf.xml │ │ │ ├── mixer_paths_qrd_skui.xml │ │ │ ├── mixer_paths_qrd_skum.xml │ │ │ ├── mixer_paths_qrd_skun.xml │ │ │ ├── mixer_paths_qrd_skun_cajon.xml │ │ │ ├── mixer_paths_skuk.xml │ │ │ ├── mixer_paths_wcd9306.xml │ │ │ ├── mixer_paths_wcd9326.xml │ │ │ ├── mixer_paths_wcd9330.xml │ │ │ ├── mixer_paths_wcd9335.xml │ │ │ ├── msm8916_32.mk │ │ │ ├── sound_trigger_mixer_paths.xml │ │ │ ├── sound_trigger_mixer_paths_wcd9306.xml │ │ │ ├── sound_trigger_mixer_paths_wcd9330.xml │ │ │ ├── sound_trigger_mixer_paths_wcd9335.xml │ │ │ └── sound_trigger_platform_info.xml │ │ ├── msm8916_64 │ │ │ ├── audio_effects.conf │ │ │ ├── audio_output_policy.conf │ │ │ ├── audio_platform_info.xml │ │ │ ├── audio_platform_info_extcodec.xml │ │ │ ├── audio_policy.conf │ │ │ ├── audio_policy_configuration.xml │ │ │ ├── mixer_paths.xml │ │ │ ├── mixer_paths_msm8952_polaris.xml │ │ │ ├── mixer_paths_mtp.xml │ │ │ ├── mixer_paths_qrd_skuh.xml │ │ │ ├── mixer_paths_qrd_skuhf.xml │ │ │ ├── mixer_paths_qrd_skui.xml │ │ │ ├── mixer_paths_qrd_skum.xml │ │ │ ├── mixer_paths_qrd_skun.xml │ │ │ ├── mixer_paths_qrd_skun_cajon.xml │ │ │ ├── mixer_paths_skuk.xml │ │ │ ├── mixer_paths_wcd9306.xml │ │ │ ├── mixer_paths_wcd9326.xml │ │ │ ├── mixer_paths_wcd9330.xml │ │ │ ├── mixer_paths_wcd9335.xml │ │ │ ├── msm8916_64.mk │ │ │ ├── sound_trigger_mixer_paths.xml │ │ │ ├── sound_trigger_mixer_paths_wcd9306.xml │ │ │ ├── sound_trigger_mixer_paths_wcd9330.xml │ │ │ ├── sound_trigger_mixer_paths_wcd9335.xml │ │ │ └── sound_trigger_platform_info.xml │ │ ├── msm8952_32 │ │ │ ├── audio_effects.conf │ │ │ ├── audio_output_policy.conf │ │ │ ├── audio_platform_info.xml │ │ │ ├── audio_platform_info_extcodec.xml │ │ │ ├── audio_policy.conf │ │ │ ├── audio_policy_configuration.xml │ │ │ ├── mixer_paths.xml │ │ │ ├── mixer_paths_msm8952_polaris.xml │ │ │ ├── mixer_paths_mtp.xml │ │ │ ├── mixer_paths_qrd_skuh.xml │ │ │ ├── mixer_paths_qrd_skuhf.xml │ │ │ ├── mixer_paths_qrd_skui.xml │ │ │ ├── mixer_paths_qrd_skum.xml │ │ │ ├── mixer_paths_qrd_skun.xml │ │ │ ├── mixer_paths_qrd_skun_cajon.xml │ │ │ ├── mixer_paths_skuk.xml │ │ │ ├── mixer_paths_wcd9306.xml │ │ │ ├── mixer_paths_wcd9326.xml │ │ │ ├── mixer_paths_wcd9330.xml │ │ │ ├── mixer_paths_wcd9335.xml │ │ │ ├── msm8952_32.mk │ │ │ ├── sound_trigger_mixer_paths.xml │ │ │ ├── sound_trigger_mixer_paths_wcd9306.xml │ │ │ ├── sound_trigger_mixer_paths_wcd9330.xml │ │ │ ├── sound_trigger_mixer_paths_wcd9335.xml │ │ │ └── sound_trigger_platform_info.xml │ │ └── msm8952_64 │ │ │ ├── aanc_tuning_mixer.txt │ │ │ └── msm8952_64.mk │ ├── hal │ │ ├── Android.mk │ │ ├── acdb.c │ │ ├── acdb.h │ │ ├── audio_extn │ │ │ ├── audio_amplifier.c │ │ │ ├── audio_amplifier.h │ │ │ ├── audio_defs.h │ │ │ ├── audio_extn.c │ │ │ ├── audio_extn.h │ │ │ ├── compress_capture.c │ │ │ ├── dev_arbi.c │ │ │ ├── dolby.c │ │ │ ├── dts_eagle.c │ │ │ ├── fm.c │ │ │ ├── hfp.c │ │ │ ├── listen.c │ │ │ ├── pm.c │ │ │ ├── pm.h │ │ │ ├── sndmonitor.c │ │ │ ├── sound_trigger_prop_intf.h │ │ │ ├── soundtrigger.c │ │ │ ├── source_track.c │ │ │ ├── spkr_protection.c │ │ │ ├── ssr.c │ │ │ ├── usb.c │ │ │ └── utils.c │ │ ├── audio_hw.c │ │ ├── audio_hw.h │ │ ├── edid.c │ │ ├── edid.h │ │ ├── msm8916 │ │ │ ├── hw_info.c │ │ │ ├── platform.c │ │ │ └── platform.h │ │ ├── msm8960 │ │ │ ├── platform.c │ │ │ └── platform.h │ │ ├── msm8974 │ │ │ ├── hw_info.c │ │ │ ├── platform.c │ │ │ └── platform.h │ │ ├── platform_api.h │ │ ├── platform_info.c │ │ ├── voice.c │ │ ├── voice.h │ │ └── voice_extn │ │ │ ├── compress_voip.c │ │ │ ├── msim_voice_extn.c │ │ │ ├── msim_voice_extn.h │ │ │ ├── voice_extn.c │ │ │ └── voice_extn.h │ ├── mm-audio │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── aenc-aac │ │ │ ├── Android.mk │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ └── qdsp6 │ │ │ │ ├── Android.mk │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── inc │ │ │ │ ├── Map.h │ │ │ │ ├── aenc_svr.h │ │ │ │ └── omx_aac_aenc.h │ │ │ │ └── src │ │ │ │ ├── aenc_svr.c │ │ │ │ └── omx_aac_aenc.cpp │ │ ├── aenc-amrnb │ │ │ ├── Android.mk │ │ │ ├── Makefile │ │ │ └── qdsp6 │ │ │ │ ├── Android.mk │ │ │ │ ├── Makefile │ │ │ │ ├── inc │ │ │ │ ├── Map.h │ │ │ │ ├── aenc_svr.h │ │ │ │ └── omx_amr_aenc.h │ │ │ │ └── src │ │ │ │ ├── aenc_svr.c │ │ │ │ └── omx_amr_aenc.cpp │ │ ├── aenc-evrc │ │ │ ├── Android.mk │ │ │ ├── Makefile │ │ │ └── qdsp6 │ │ │ │ ├── Android.mk │ │ │ │ ├── Makefile │ │ │ │ ├── inc │ │ │ │ ├── Map.h │ │ │ │ ├── aenc_svr.h │ │ │ │ └── omx_evrc_aenc.h │ │ │ │ └── src │ │ │ │ ├── aenc_svr.c │ │ │ │ └── omx_evrc_aenc.cpp │ │ ├── aenc-qcelp13 │ │ │ ├── Android.mk │ │ │ ├── Makefile │ │ │ └── qdsp6 │ │ │ │ ├── Android.mk │ │ │ │ ├── Makefile │ │ │ │ ├── inc │ │ │ │ ├── Map.h │ │ │ │ ├── aenc_svr.h │ │ │ │ └── omx_qcelp13_aenc.h │ │ │ │ └── src │ │ │ │ ├── aenc_svr.c │ │ │ │ └── omx_qcelp13_aenc.cpp │ │ ├── autogen.sh │ │ └── configure.ac │ ├── post_proc │ │ ├── Android.mk │ │ ├── EffectsHwAcc.cpp │ │ ├── EffectsHwAcc.h │ │ ├── asphere.c │ │ ├── asphere.h │ │ ├── bass_boost.c │ │ ├── bass_boost.h │ │ ├── bundle.c │ │ ├── bundle.h │ │ ├── effect_api.c │ │ ├── effect_api.h │ │ ├── effect_util.c │ │ ├── effect_util.h │ │ ├── equalizer.c │ │ ├── equalizer.h │ │ ├── hw_accelerator.c │ │ ├── hw_accelerator.h │ │ ├── reverb.c │ │ ├── reverb.h │ │ ├── virtualizer.c │ │ └── virtualizer.h │ ├── visualizer │ │ ├── Android.mk │ │ ├── MODULE_LICENSE_APACHE2 │ │ ├── NOTICE │ │ └── offload_visualizer.c │ └── voice_processing │ │ ├── Android.mk │ │ └── voice_processing.c ├── display │ ├── Android.mk │ ├── Makefile.am │ ├── common.mk │ ├── configure.ac │ ├── include │ │ └── color_metadata.h │ ├── libcopybit │ │ ├── Android.mk │ │ ├── MODULE_LICENSE_APACHE2 │ │ ├── NOTICE │ │ ├── c2d2.h │ │ ├── copybit.cpp │ │ ├── copybit.h │ │ ├── copybit_c2d.cpp │ │ ├── copybit_priv.h │ │ ├── software_converter.cpp │ │ └── software_converter.h │ ├── libgralloc │ │ ├── Android.mk │ │ ├── MODULE_LICENSE_APACHE2 │ │ ├── Makefile.am │ │ ├── NOTICE │ │ ├── alloc_controller.cpp │ │ ├── alloc_controller.h │ │ ├── fb_priv.h │ │ ├── framebuffer.cpp │ │ ├── gpu.cpp │ │ ├── gpu.h │ │ ├── gr.h │ │ ├── gralloc.cpp │ │ ├── gralloc_priv.h │ │ ├── ionalloc.cpp │ │ ├── ionalloc.h │ │ ├── mapper.cpp │ │ └── memalloc.h │ ├── libhdmi │ │ ├── Android.mk │ │ ├── hdmi.cpp │ │ └── hdmi.h │ ├── libhwcomposer │ │ ├── Android.mk │ │ ├── hwc.cpp │ │ ├── hwc_ad.cpp │ │ ├── hwc_ad.h │ │ ├── hwc_copybit.cpp │ │ ├── hwc_copybit.h │ │ ├── hwc_dump_layers.cpp │ │ ├── hwc_dump_layers.h │ │ ├── hwc_fbupdate.cpp │ │ ├── hwc_fbupdate.h │ │ ├── hwc_mdpcomp.cpp │ │ ├── hwc_mdpcomp.h │ │ ├── hwc_qclient.cpp │ │ ├── hwc_qclient.h │ │ ├── hwc_qdcm.cpp │ │ ├── hwc_qdcm.h │ │ ├── hwc_qdcm_legacy.cpp │ │ ├── hwc_uevents.cpp │ │ ├── hwc_utils.cpp │ │ ├── hwc_utils.h │ │ ├── hwc_virtual.cpp │ │ ├── hwc_virtual.h │ │ └── hwc_vsync.cpp │ ├── liblight │ │ ├── Android.mk │ │ ├── NOTICE │ │ └── lights.c │ ├── libmemtrack │ │ ├── Android.mk │ │ ├── kgsl.c │ │ ├── memtrack_msm.c │ │ └── memtrack_msm.h │ ├── liboverlay │ │ ├── Android.mk │ │ ├── mdpWrapper.h │ │ ├── overlay.cpp │ │ ├── overlay.h │ │ ├── overlayCtrlData.h │ │ ├── overlayMdp.cpp │ │ ├── overlayMdp.h │ │ ├── overlayMdpRot.cpp │ │ ├── overlayMdssRot.cpp │ │ ├── overlayMem.h │ │ ├── overlayRotator.cpp │ │ ├── overlayRotator.h │ │ ├── overlayUtils.cpp │ │ ├── overlayUtils.h │ │ ├── overlayWriteback.cpp │ │ ├── overlayWriteback.h │ │ └── pipes │ │ │ ├── overlayGenPipe.cpp │ │ │ └── overlayGenPipe.h │ ├── libqdutils │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── cb_swap_rect.cpp │ │ ├── cb_swap_rect.h │ │ ├── cb_utils.cpp │ │ ├── cb_utils.h │ │ ├── comptype.cpp │ │ ├── comptype.h │ │ ├── display_config.cpp │ │ ├── display_config.h │ │ ├── idle_invalidator.cpp │ │ ├── idle_invalidator.h │ │ ├── mdp_version.cpp │ │ ├── mdp_version.h │ │ ├── profiler.cpp │ │ ├── profiler.h │ │ ├── qdMetaData.cpp │ │ ├── qdMetaData.h │ │ ├── qd_utils.cpp │ │ └── qd_utils.h │ └── libqservice │ │ ├── Android.mk │ │ ├── IQClient.cpp │ │ ├── IQClient.h │ │ ├── IQService.cpp │ │ ├── IQService.h │ │ ├── QService.cpp │ │ ├── QService.h │ │ └── QServiceUtils.h └── media │ ├── Android.mk │ ├── CleanSpec.mk │ ├── NOTICE │ ├── libc2dcolorconvert │ ├── Android.mk │ ├── C2DColorConverter.cpp │ └── C2DColorConverter.h │ ├── libstagefrighthw │ ├── Android.mk │ ├── MODULE_LICENSE_APACHE2 │ ├── NOTICE │ ├── QComOMXMetadata.h │ ├── QComOMXPlugin.cpp │ └── QComOMXPlugin.h │ ├── mm-core │ ├── Android.mk │ ├── inc │ │ ├── OMX_Audio.h │ │ ├── OMX_Component.h │ │ ├── OMX_ContentPipe.h │ │ ├── OMX_Core.h │ │ ├── OMX_CoreExt.h │ │ ├── OMX_IVCommon.h │ │ ├── OMX_Image.h │ │ ├── OMX_Index.h │ │ ├── OMX_IndexExt.h │ │ ├── OMX_Other.h │ │ ├── OMX_QCOMExtns.h │ │ ├── OMX_Skype_VideoExtensions.h │ │ ├── OMX_Types.h │ │ ├── OMX_Video.h │ │ ├── OMX_VideoExt.h │ │ ├── QCMediaDefs.h │ │ ├── QCMetaData.h │ │ ├── QOMX_AudioExtensions.h │ │ ├── QOMX_AudioIndexExtensions.h │ │ ├── QOMX_CoreExtensions.h │ │ ├── QOMX_FileFormatExtensions.h │ │ ├── QOMX_IVCommonExtensions.h │ │ ├── QOMX_SourceExtensions.h │ │ ├── QOMX_StreamingExtensions.h │ │ ├── QOMX_VideoExtensions.h │ │ ├── drmplay_version.h │ │ ├── qc_omx_common.h │ │ ├── qc_omx_component.h │ │ └── qc_omx_msg.h │ └── src │ │ ├── 7630 │ │ ├── qc_registry_table.c │ │ └── qc_registry_table_android.c │ │ ├── 8084 │ │ ├── qc_registry_table.c │ │ └── qc_registry_table_android.c │ │ ├── 8092 │ │ ├── qc_registry_table.c │ │ └── qc_registry_table_android.c │ │ ├── 8226 │ │ ├── qc_registry_table.c │ │ └── qc_registry_table_android.c │ │ ├── 8610 │ │ ├── qc_registry_table.c │ │ └── qc_registry_table_android.c │ │ ├── 8660 │ │ ├── qc_registry_table.c │ │ └── qc_registry_table_android.c │ │ ├── 8909 │ │ ├── registry_table.c │ │ └── registry_table_android.c │ │ ├── 8916 │ │ ├── registry_table.c │ │ └── registry_table_android.c │ │ ├── 8960 │ │ ├── qc_registry_table.c │ │ └── qc_registry_table_android.c │ │ ├── 8974 │ │ ├── qc_registry_table.c │ │ └── qc_registry_table_android.c │ │ ├── 7627A │ │ ├── qc_registry_table.c │ │ └── qc_registry_table_android.c │ │ ├── common │ │ ├── omx_core_cmp.cpp │ │ ├── omx_core_cmp.h │ │ ├── qc_omx_core.c │ │ └── qc_omx_core.h │ │ ├── default │ │ ├── qc_registry_table.c │ │ └── qc_registry_table_android.c │ │ ├── msm8992 │ │ ├── registry_table.c │ │ └── registry_table_android.c │ │ ├── msm8994 │ │ ├── registry_table.c │ │ └── registry_table_android.c │ │ └── thulium │ │ ├── registry_table.c │ │ └── registry_table_android.c │ └── mm-video-v4l2 │ ├── Android.mk │ └── vidc │ ├── Android.mk │ ├── common │ ├── Android.mk │ ├── inc │ │ ├── extra_data_handler.h │ │ ├── vidc_color_converter.h │ │ └── vidc_debug.h │ └── src │ │ ├── extra_data_handler.cpp │ │ └── vidc_color_converter.cpp │ ├── test │ ├── Android.mk │ ├── README.txt │ ├── msm_vidc_test.c │ ├── queue.c │ ├── queue.h │ ├── ring_queue.c │ └── ring_queue.h │ ├── vdec │ ├── Android.mk │ ├── inc │ │ ├── Map.h │ │ ├── decoder_driver_test.h │ │ ├── frameparser.h │ │ ├── h264_utils.h │ │ ├── hevc_utils.h │ │ ├── message_queue.h │ │ ├── mp4_utils.h │ │ ├── omx_swvdec.h │ │ ├── omx_swvdec_utils.h │ │ ├── omx_vdec.h │ │ ├── omx_vdec_hevc.h │ │ ├── omx_vdec_hevc_swvdec.h │ │ ├── power_module.h │ │ ├── qtypes.h │ │ ├── queue.h │ │ └── ts_parser.h │ └── src │ │ ├── frameparser.cpp │ │ ├── h264_utils.cpp │ │ ├── hevc_utils.cpp │ │ ├── message_queue.c │ │ ├── mp4_utils.cpp │ │ ├── omx_swvdec.cpp │ │ ├── omx_swvdec_utils.cpp │ │ ├── omx_vdec_hevc.cpp │ │ ├── omx_vdec_hevc_swvdec.cpp │ │ ├── omx_vdec_msm8974.cpp │ │ └── ts_parser.cpp │ └── venc │ ├── Android.mk │ ├── inc │ ├── camera_test.h │ ├── fb_test.h │ ├── omx_swvenc_hevc.h │ ├── omx_swvenc_mpeg4.h │ ├── omx_video_base.h │ ├── omx_video_common.h │ ├── omx_video_encoder.h │ ├── queue.h │ ├── venc_util.h │ ├── video_encoder_device.h │ ├── video_encoder_device_v4l2.h │ └── video_encoder_test.h │ └── src │ ├── omx_swvenc_hevc.cpp │ ├── omx_swvenc_mpeg4.cpp │ ├── omx_video_base.cpp │ ├── omx_video_encoder.cpp │ ├── video_encoder_device.cpp │ └── video_encoder_device_v4l2.cpp ├── hidl ├── light-a6000 │ ├── Android.bp │ ├── Light.cpp │ ├── Light.h │ ├── android.hardware.light@2.0-service.a6000.rc │ └── service.cpp ├── light │ ├── Android.bp │ ├── Light.cpp │ ├── Light.h │ ├── android.hardware.light@2.0-service.msm8916.rc │ └── service.cpp ├── radio │ ├── Android.bp │ ├── Helpers.cpp │ ├── Helpers.h │ ├── Radio.cpp │ ├── Radio.h │ ├── RadioIndication.cpp │ ├── RadioIndication.h │ ├── RadioResponse.cpp │ ├── RadioResponse.h │ ├── android.hardware.radio@1.4-service.msm8916.rc │ ├── hidl-utils.cpp │ ├── hidl-utils.h │ └── service.cpp ├── sensors │ ├── Android.bp │ ├── Android.mk │ ├── SensorEventQueue.cpp │ ├── SensorEventQueue.h │ ├── Sensors.cpp │ ├── Sensors.h │ ├── android.hardware.sensors@1.0-service.msm8916.rc │ ├── calmodule.cfg │ ├── include │ │ └── sensors │ │ │ └── convert.h │ ├── multihal.cpp │ ├── multihal.h │ └── service.cpp └── thermal │ ├── Android.bp │ ├── Thermal.cpp │ ├── Thermal.h │ ├── android.hardware.thermal@2.0-service.msm8916.rc │ ├── android.hardware.thermal@2.0-service.msm8916.xml │ ├── service.cpp │ ├── thermal-helper.cpp │ ├── thermal-helper.h │ └── utils │ ├── config_parser.cpp │ ├── config_parser.h │ ├── config_schema.json │ ├── thermal_files.cpp │ ├── thermal_files.h │ ├── thermal_watcher.cpp │ └── thermal_watcher.h ├── keylayout ├── ft5x06_ts.kl ├── gpio-keys.kl └── qpnp_pon.kl ├── lineage_a6000.mk ├── lineage_a6010.mk ├── lineage_a6010_gms_go_2gb.mk ├── lineage_sisleyr.mk ├── lineage_sisleyr_gms_go_2gb.mk ├── manifest.xml ├── msm_irqbalance ├── Android.mk ├── msm_irqbalance.c └── msm_irqbalance.h ├── overlay-a6010 └── frameworks │ └── base │ └── core │ └── res │ └── res │ └── values │ └── config.xml ├── overlay-a60x0 └── frameworks │ └── base │ └── core │ └── res │ └── res │ └── values │ └── config.xml ├── overlay-lineage ├── frameworks │ └── base │ │ └── core │ │ └── res │ │ └── res │ │ └── values │ │ └── config.xml ├── lineage-sdk │ ├── lineage │ │ └── res │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ └── packages │ │ └── LineageSettingsProvider │ │ └── res │ │ └── values │ │ └── config.xml └── packages │ └── apps │ └── Updater │ └── res │ └── values │ └── config.xml ├── overlay-sisleyr └── frameworks │ └── base │ └── core │ └── res │ └── res │ └── values │ └── config.xml ├── overlay ├── frameworks │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ ├── values │ │ │ ├── config.xml │ │ │ ├── lineage_config.xml │ │ │ └── strings.xml │ │ │ └── xml │ │ │ └── power_profile.xml │ │ └── packages │ │ ├── SettingsLib │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ ├── SettingsProvider │ │ └── res │ │ │ └── values │ │ │ └── defaults.xml │ │ └── SystemUI │ │ └── res │ │ ├── color │ │ └── qs_background_dark.xml │ │ └── values │ │ ├── config.xml │ │ ├── cr_config.xml │ │ ├── dimens.xml │ │ └── flags.xml └── packages │ ├── apps │ ├── Bluetooth │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── CarrierConfig │ │ └── res │ │ │ └── xml │ │ │ └── vendor.xml │ ├── Dialer │ │ └── java │ │ │ └── com │ │ │ └── android │ │ │ └── dialer │ │ │ └── callrecord │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── RepainterServicePriv │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── Settings │ │ └── res │ │ │ ├── drawable-nodpi │ │ │ ├── gesture_ambient_lift.jpg │ │ │ ├── gesture_ambient_tap.jpg │ │ │ ├── gesture_ambient_wake_screen.png │ │ │ ├── gesture_assist.jpg │ │ │ ├── gesture_double_tap.jpg │ │ │ ├── gesture_fingerprint_swipe.jpg │ │ │ ├── gesture_prevent_ringing.jpg │ │ │ └── gesture_twist.jpg │ │ │ ├── raw │ │ │ ├── aab_brightness.mp4 │ │ │ ├── adaptive_sleep.mp4 │ │ │ ├── auto_awesome_battery.mp4 │ │ │ ├── bubble_notification_animation.mp4 │ │ │ ├── face_education.mp4 │ │ │ ├── face_settings.mp4 │ │ │ ├── fingerprint_location_animation.mp4 │ │ │ ├── gesture_ambient_lift.mp4 │ │ │ ├── gesture_ambient_tap.mp4 │ │ │ ├── gesture_ambient_tap_screen.mp4 │ │ │ ├── gesture_ambient_wake_screen.mp4 │ │ │ ├── gesture_double_tap.mp4 │ │ │ ├── gesture_fingerprint_swipe.mp4 │ │ │ ├── gesture_global_actions_panel.mp4 │ │ │ ├── gesture_prevent_ringing.mp4 │ │ │ └── gesture_twist.mp4 │ │ │ ├── values-ru │ │ │ └── cm_strings.xml │ │ │ ├── values-uk │ │ │ └── cm_strings.xml │ │ │ └── values │ │ │ ├── arrays.xml │ │ │ ├── cm_strings.xml │ │ │ ├── config.xml │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ └── SimpleDeviceConfig │ │ └── res │ │ └── values │ │ └── config.xml │ └── services │ └── Telephony │ └── res │ └── values │ └── config.xml ├── product.prop ├── recovery └── root │ └── init.recovery.qcom.rc ├── rootdir ├── Android.mk └── etc │ ├── fstab.qcom │ ├── fstab.ramdisk.qcom │ ├── fstab.ramdisk.sisleyr.qcom │ ├── init.post_boot.sh │ ├── init.qcom.power.rc │ ├── init.qcom.rc │ ├── init.qcom.ssr.rc │ ├── init.qcom.usb.rc │ ├── init.target.rc │ ├── set_baseband.sh │ ├── set_zram.sh │ ├── target_config.sh │ ├── ueventd.qcom.rc │ └── xtra_daemon_toggler.sh ├── rro_overlays ├── DocumentsUIOverlayGo │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml ├── GboardOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml ├── MessagesGoOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml ├── PrivateSpaceOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── xml │ │ └── config_user_types.xml ├── TetheringOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml ├── TrebuchetGoOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml └── WifiOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ └── values │ └── config.xml ├── seccomp ├── gnss@2.0-base.policy ├── gnss@2.0-xtwifi-client.policy ├── mediacodec-seccomp.policy ├── mediaextractor-seccomp.policy └── mediaswcodec-seccomp.policy ├── sepolicy ├── private │ ├── isolated_app.te │ ├── system_app.te │ └── untrusted_app_29.te └── vendor │ ├── app.te │ ├── app_zygote.te │ ├── audioserver.te │ ├── bootanim.te │ ├── cameraserver.te │ ├── charger.te │ ├── device_config.te │ ├── file.te │ ├── file_contexts │ ├── fsck.te │ ├── genfs_contexts │ ├── gmscore_app.te │ ├── gpuservice.te │ ├── hal_audio_default.te │ ├── hal_camera_default.te │ ├── hal_drm_clearkey.te │ ├── hal_drm_default.te │ ├── hal_drm_widevine.te │ ├── hal_gnss_qti.te │ ├── hal_graphics_composer_default.te │ ├── hal_health_default.te │ ├── hal_light_default.te │ ├── hal_lineage_touch_default.te │ ├── hal_perf_default.te │ ├── hal_power_default.te │ ├── hal_sensors_default.te │ ├── hal_wifi_default.te │ ├── healthd.te │ ├── hwservice_contexts │ ├── init.te │ ├── installd.te │ ├── kernel.te │ ├── location.te │ ├── mediacodec.te │ ├── mediadrmserver.te │ ├── mediaserver.te │ ├── memtrack.te │ ├── mm-qcamerad.te │ ├── netd.te │ ├── netmgrd.te │ ├── netutils_wrapper.te │ ├── priv_app.te │ ├── property.te │ ├── property_contexts │ ├── qcom_ril.te │ ├── qmuxd.te │ ├── qti_init_shell.te │ ├── radio.te │ ├── recovery.te │ ├── rild.te │ ├── rmt_storage.te │ ├── rs.te │ ├── seapp_contexts │ ├── service.te │ ├── service_contexts │ ├── servicemanager.te │ ├── surfaceflinger.te │ ├── system_app.te │ ├── system_server.te │ ├── tee.te │ ├── thermal-engine.te │ ├── timekeep.te │ ├── timekeep_app.te │ ├── ueventd.te │ ├── vendor_init.te │ ├── vold.te │ ├── vold_prepare_subdirs.te │ ├── webview_zygote.te │ └── zygote.te ├── sisleyr.mk └── wifi ├── WCNSS_cfg.dat ├── WCNSS_qcom_wlan_nv.bin └── WCNSS_wlan_dictionary.dat /.gitignore: -------------------------------------------------------------------------------- 1 | *.orig 2 | *.rej 3 | -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- 1 | soong_namespace { 2 | } -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/Android.mk -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/AndroidProducts.mk -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/BoardConfig.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/README.md -------------------------------------------------------------------------------- /a6010.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/a6010.mk -------------------------------------------------------------------------------- /aidl/touch/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/aidl/touch/Android.bp -------------------------------------------------------------------------------- /aidl/touch/keydisabler_hal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/aidl/touch/keydisabler_hal.rs -------------------------------------------------------------------------------- /aidl/touch/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/aidl/touch/main.rs -------------------------------------------------------------------------------- /aidl/touch/vendor.lineage.touch-service.a6010.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/aidl/touch/vendor.lineage.touch-service.a6010.rc -------------------------------------------------------------------------------- /aidl/touch/vendor.lineage.touch-service.a6010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/aidl/touch/vendor.lineage.touch-service.a6010.xml -------------------------------------------------------------------------------- /aidl/vibrator/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/aidl/vibrator/Android.bp -------------------------------------------------------------------------------- /aidl/vibrator/Vibrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/aidl/vibrator/Vibrator.cpp -------------------------------------------------------------------------------- /aidl/vibrator/Vibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/aidl/vibrator/Vibrator.h -------------------------------------------------------------------------------- /aidl/vibrator/android.hardware.vibrator-service.msm8916.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/aidl/vibrator/android.hardware.vibrator-service.msm8916.rc -------------------------------------------------------------------------------- /aidl/vibrator/android.hardware.vibrator-service.msm8916.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/aidl/vibrator/android.hardware.vibrator-service.msm8916.xml -------------------------------------------------------------------------------- /aidl/vibrator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/aidl/vibrator/main.cpp -------------------------------------------------------------------------------- /audio/acdb/QRD_Bluetooth_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/QRD_Bluetooth_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/QRD_Handset_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/QRD_Handset_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/QRD_Hdmi_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/QRD_Hdmi_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/QRD_Headset_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/QRD_Headset_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/a6000/QRD_General_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/a6000/QRD_General_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/a6000/QRD_Global_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/a6000/QRD_Global_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/a6000/QRD_Speaker_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/a6000/QRD_Speaker_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/a6010/QRD_General_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/a6010/QRD_General_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/a6010/QRD_Global_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/a6010/QRD_Global_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/a6010/QRD_Speaker_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/a6010/QRD_Speaker_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/sisleyr/MTP_Bluetooth_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/sisleyr/MTP_Bluetooth_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/sisleyr/MTP_General_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/sisleyr/MTP_General_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/sisleyr/MTP_Global_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/sisleyr/MTP_Global_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/sisleyr/MTP_Handset_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/sisleyr/MTP_Handset_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/sisleyr/MTP_Hdmi_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/sisleyr/MTP_Hdmi_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/sisleyr/MTP_Headset_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/sisleyr/MTP_Headset_cal.acdb -------------------------------------------------------------------------------- /audio/acdb/sisleyr/MTP_Speaker_cal.acdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/acdb/sisleyr/MTP_Speaker_cal.acdb -------------------------------------------------------------------------------- /audio/audio_effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/audio_effects.xml -------------------------------------------------------------------------------- /audio/audio_output_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/audio_output_policy.conf -------------------------------------------------------------------------------- /audio/audio_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/audio_platform_info.xml -------------------------------------------------------------------------------- /audio/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/audio_policy_configuration.xml -------------------------------------------------------------------------------- /audio/mixer_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/mixer_paths.xml -------------------------------------------------------------------------------- /audio/mixer_paths_mtp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/audio/mixer_paths_mtp.xml -------------------------------------------------------------------------------- /bluetooth/a6000/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/bluetooth/a6000/bdroid_buildcfg.h -------------------------------------------------------------------------------- /bluetooth/a6010/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/bluetooth/a6010/bdroid_buildcfg.h -------------------------------------------------------------------------------- /camera/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /camera/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/CleanSpec.mk -------------------------------------------------------------------------------- /camera/MODULE_LICENSE_BSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /camera/QCamera2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/HAL/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCamera2Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCamera2Factory.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCamera2Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCamera2Factory.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCamera2HWI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCamera2HWI.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCamera2HWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCamera2HWI.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCamera2HWICallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCamera2HWICallbacks.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCamera2Hal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCamera2Hal.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraAllocator.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraChannel.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraChannel.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraMem.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraMem.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraParameters.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraParameters.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraPostProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraPostProc.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraPostProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraPostProc.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraStateMachine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraStateMachine.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraStateMachine.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraStream.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraStream.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraThermalAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraThermalAdapter.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/QCameraThermalAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/QCameraThermalAdapter.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/test/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/test/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/HAL/test/qcamera_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/test/qcamera_test.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/test/qcamera_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/test/qcamera_test.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/tsMakeuplib/include/ts_detectface_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/tsMakeuplib/include/ts_detectface_engine.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_data.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_engine.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_image.h -------------------------------------------------------------------------------- /camera/QCamera2/HAL/wrapper/QualcommCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/wrapper/QualcommCamera.cpp -------------------------------------------------------------------------------- /camera/QCamera2/HAL/wrapper/QualcommCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/HAL/wrapper/QualcommCamera.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/cam_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/common/cam_intf.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/cam_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/common/cam_list.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/cam_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/common/cam_queue.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/cam_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/common/cam_semaphore.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/cam_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/common/cam_types.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/mm_camera_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/common/mm_camera_interface.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/common/mm_jpeg_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/common/mm_jpeg_interface.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-interface/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/inc/mm_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-interface/inc/mm_camera.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/inc/mm_camera_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-interface/inc/mm_camera_dbg.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/inc/mm_camera_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-interface/inc/mm_camera_sock.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/src/cam_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-interface/src/cam_intf.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/src/mm_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-interface/src/mm_camera.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-interface/src/mm_camera_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-interface/src/mm_camera_sock.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/inc/mm_qcamera_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/inc/mm_qcamera_app.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/inc/mm_qcamera_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/inc/mm_qcamera_commands.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/inc/mm_qcamera_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/inc/mm_qcamera_dbg.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/inc/mm_qcamera_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/inc/mm_qcamera_socket.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_app.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_commands.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_preview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_preview.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_queue.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_rdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_rdi.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_snapshot.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_socket.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-camera-test/src/mm_qcamera_video.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_dbg.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_inlines.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_ionbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/inc/mm_jpeg_ionbuf.h -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_exif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_exif.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_ionbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_ionbuf.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpeg_queue.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpegdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/src/mm_jpegdec.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/test/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/test/Android.mk -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/test/mm_jpeg_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/test/mm_jpeg_test.c -------------------------------------------------------------------------------- /camera/QCamera2/stack/mm-jpeg-interface/test/mm_jpegdec_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/stack/mm-jpeg-interface/test/mm_jpegdec_test.c -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraCmdThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/util/QCameraCmdThread.cpp -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraCmdThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/util/QCameraCmdThread.h -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/util/QCameraQueue.cpp -------------------------------------------------------------------------------- /camera/QCamera2/util/QCameraQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/QCamera2/util/QCameraQueue.h -------------------------------------------------------------------------------- /camera/chromatix/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/chromatix/Android.mk -------------------------------------------------------------------------------- /camera/chromatix/camera_defs_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/chromatix/camera_defs_i.h -------------------------------------------------------------------------------- /camera/chromatix/chromatix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/chromatix/chromatix.h -------------------------------------------------------------------------------- /camera/chromatix/chromatix_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/chromatix/chromatix_common.h -------------------------------------------------------------------------------- /camera/chromatix/chromatix_ov13850_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/chromatix/chromatix_ov13850_snapshot.c -------------------------------------------------------------------------------- /camera/chromatix/chromatix_ov13850_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/chromatix/chromatix_ov13850_snapshot.h -------------------------------------------------------------------------------- /camera/hal3on1/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/hal3on1/Android.mk -------------------------------------------------------------------------------- /camera/hal3on1/HAL3on1-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/hal3on1/HAL3on1-adapter.cpp -------------------------------------------------------------------------------- /camera/hal3on1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/hal3on1/README -------------------------------------------------------------------------------- /camera/mm-image-codec/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/mm-image-codec/Android.mk -------------------------------------------------------------------------------- /camera/mm-image-codec/qexif/qexif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/mm-image-codec/qexif/qexif.h -------------------------------------------------------------------------------- /camera/mm-image-codec/qomx_core/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/mm-image-codec/qomx_core/Android.mk -------------------------------------------------------------------------------- /camera/mm-image-codec/qomx_core/QOMX_JpegExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/mm-image-codec/qomx_core/QOMX_JpegExtensions.h -------------------------------------------------------------------------------- /camera/mm-image-codec/qomx_core/qomx_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/mm-image-codec/qomx_core/qomx_core.c -------------------------------------------------------------------------------- /camera/mm-image-codec/qomx_core/qomx_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/mm-image-codec/qomx_core/qomx_core.h -------------------------------------------------------------------------------- /camera/sensor/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/sensor/Android.mk -------------------------------------------------------------------------------- /camera/sensor/dump_sensor_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/sensor/dump_sensor_lib.c -------------------------------------------------------------------------------- /camera/sensor/includes/sensor_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/sensor/includes/sensor_lib.h -------------------------------------------------------------------------------- /camera/sensor/ov13850_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/camera/sensor/ov13850_lib.c -------------------------------------------------------------------------------- /config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/config.fs -------------------------------------------------------------------------------- /configs/WCNSS_qcom_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/WCNSS_qcom_cfg.ini -------------------------------------------------------------------------------- /configs/cgroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/cgroups.json -------------------------------------------------------------------------------- /configs/data/dsi_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/data/dsi_config.xml -------------------------------------------------------------------------------- /configs/data/netmgr_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/data/netmgr_config.xml -------------------------------------------------------------------------------- /configs/data/qmi_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/data/qmi_config.xml -------------------------------------------------------------------------------- /configs/googledialergo-sysconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/googledialergo-sysconfig.xml -------------------------------------------------------------------------------- /configs/gps/apdr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/gps/apdr.conf -------------------------------------------------------------------------------- /configs/gps/flp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/gps/flp.conf -------------------------------------------------------------------------------- /configs/gps/gps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/gps/gps.conf -------------------------------------------------------------------------------- /configs/gps/izat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/gps/izat.conf -------------------------------------------------------------------------------- /configs/gps/izat_xtra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/gps/izat_xtra.conf -------------------------------------------------------------------------------- /configs/gps/lowi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/gps/lowi.conf -------------------------------------------------------------------------------- /configs/gps/sap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/gps/sap.conf -------------------------------------------------------------------------------- /configs/gps/xtwifi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/gps/xtwifi.conf -------------------------------------------------------------------------------- /configs/media_codecs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/media_codecs.xml -------------------------------------------------------------------------------- /configs/media_codecs_performance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/media_codecs_performance.xml -------------------------------------------------------------------------------- /configs/media_profiles_V1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/media_profiles_V1_0.xml -------------------------------------------------------------------------------- /configs/msm_irqbalance.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/msm_irqbalance.conf -------------------------------------------------------------------------------- /configs/p2p_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/p2p_supplicant_overlay.conf -------------------------------------------------------------------------------- /configs/public.libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/public.libraries.txt -------------------------------------------------------------------------------- /configs/sec_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/sec_config -------------------------------------------------------------------------------- /configs/sensors/_hals.conf: -------------------------------------------------------------------------------- 1 | sensors.a6000__.so 2 | -------------------------------------------------------------------------------- /configs/task_profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/task_profiles.json -------------------------------------------------------------------------------- /configs/thermal-engine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/thermal-engine.conf -------------------------------------------------------------------------------- /configs/thermal_info_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/thermal_info_config.json -------------------------------------------------------------------------------- /configs/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/configs/wpa_supplicant_overlay.conf -------------------------------------------------------------------------------- /device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/device.mk -------------------------------------------------------------------------------- /hardware/audio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/Android.mk -------------------------------------------------------------------------------- /hardware/audio/audiod/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/audiod/Android.mk -------------------------------------------------------------------------------- /hardware/audio/audiod/AudioDaemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/audiod/AudioDaemon.cpp -------------------------------------------------------------------------------- /hardware/audio/audiod/AudioDaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/audiod/AudioDaemon.h -------------------------------------------------------------------------------- /hardware/audio/audiod/audiod_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/audiod/audiod_main.cpp -------------------------------------------------------------------------------- /hardware/audio/configs/common/audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/common/audio_policy_configuration.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/audio_effects.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/audio_effects.conf -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/audio_output_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/audio_output_policy.conf -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/audio_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/audio_platform_info.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/audio_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/audio_policy.conf -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths_mtp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths_mtp.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths_qrd_skuh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths_qrd_skuh.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths_qrd_skuhf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths_qrd_skuhf.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths_qrd_skui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths_qrd_skui.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths_qrd_skum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths_qrd_skum.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths_qrd_skun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths_qrd_skun.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths_skuk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths_skuk.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths_wcd9306.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths_wcd9306.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths_wcd9326.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths_wcd9326.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths_wcd9330.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths_wcd9330.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/mixer_paths_wcd9335.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/mixer_paths_wcd9335.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_32/msm8916_32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_32/msm8916_32.mk -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/audio_effects.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/audio_effects.conf -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/audio_output_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/audio_output_policy.conf -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/audio_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/audio_platform_info.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/audio_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/audio_policy.conf -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths_mtp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths_mtp.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths_qrd_skuh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths_qrd_skuh.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths_qrd_skuhf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths_qrd_skuhf.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths_qrd_skui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths_qrd_skui.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths_qrd_skum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths_qrd_skum.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths_qrd_skun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths_qrd_skun.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths_skuk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths_skuk.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths_wcd9306.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths_wcd9306.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths_wcd9326.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths_wcd9326.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths_wcd9330.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths_wcd9330.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/mixer_paths_wcd9335.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/mixer_paths_wcd9335.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8916_64/msm8916_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8916_64/msm8916_64.mk -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/audio_effects.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/audio_effects.conf -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/audio_output_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/audio_output_policy.conf -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/audio_platform_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/audio_platform_info.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/audio_policy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/audio_policy.conf -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths_mtp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths_mtp.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths_qrd_skuh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths_qrd_skuh.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths_qrd_skuhf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths_qrd_skuhf.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths_qrd_skui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths_qrd_skui.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths_qrd_skum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths_qrd_skum.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths_qrd_skun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths_qrd_skun.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths_skuk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths_skuk.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths_wcd9306.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths_wcd9306.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths_wcd9326.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths_wcd9326.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths_wcd9330.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths_wcd9330.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/mixer_paths_wcd9335.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/mixer_paths_wcd9335.xml -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_32/msm8952_32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_32/msm8952_32.mk -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_64/aanc_tuning_mixer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_64/aanc_tuning_mixer.txt -------------------------------------------------------------------------------- /hardware/audio/configs/msm8952_64/msm8952_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/configs/msm8952_64/msm8952_64.mk -------------------------------------------------------------------------------- /hardware/audio/hal/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/Android.mk -------------------------------------------------------------------------------- /hardware/audio/hal/acdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/acdb.c -------------------------------------------------------------------------------- /hardware/audio/hal/acdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/acdb.h -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/audio_amplifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/audio_amplifier.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/audio_amplifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/audio_amplifier.h -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/audio_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/audio_defs.h -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/audio_extn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/audio_extn.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/audio_extn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/audio_extn.h -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/compress_capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/compress_capture.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/dev_arbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/dev_arbi.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/dolby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/dolby.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/dts_eagle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/dts_eagle.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/fm.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/hfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/hfp.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/listen.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/pm.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/pm.h -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/sndmonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/sndmonitor.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/sound_trigger_prop_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/sound_trigger_prop_intf.h -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/soundtrigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/soundtrigger.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/source_track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/source_track.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/spkr_protection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/spkr_protection.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/ssr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/ssr.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/usb.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_extn/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_extn/utils.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_hw.c -------------------------------------------------------------------------------- /hardware/audio/hal/audio_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/audio_hw.h -------------------------------------------------------------------------------- /hardware/audio/hal/edid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/edid.c -------------------------------------------------------------------------------- /hardware/audio/hal/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/edid.h -------------------------------------------------------------------------------- /hardware/audio/hal/msm8916/hw_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/msm8916/hw_info.c -------------------------------------------------------------------------------- /hardware/audio/hal/msm8916/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/msm8916/platform.c -------------------------------------------------------------------------------- /hardware/audio/hal/msm8916/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/msm8916/platform.h -------------------------------------------------------------------------------- /hardware/audio/hal/msm8960/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/msm8960/platform.c -------------------------------------------------------------------------------- /hardware/audio/hal/msm8960/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/msm8960/platform.h -------------------------------------------------------------------------------- /hardware/audio/hal/msm8974/hw_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/msm8974/hw_info.c -------------------------------------------------------------------------------- /hardware/audio/hal/msm8974/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/msm8974/platform.c -------------------------------------------------------------------------------- /hardware/audio/hal/msm8974/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/msm8974/platform.h -------------------------------------------------------------------------------- /hardware/audio/hal/platform_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/platform_api.h -------------------------------------------------------------------------------- /hardware/audio/hal/platform_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/platform_info.c -------------------------------------------------------------------------------- /hardware/audio/hal/voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/voice.c -------------------------------------------------------------------------------- /hardware/audio/hal/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/voice.h -------------------------------------------------------------------------------- /hardware/audio/hal/voice_extn/compress_voip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/voice_extn/compress_voip.c -------------------------------------------------------------------------------- /hardware/audio/hal/voice_extn/msim_voice_extn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/voice_extn/msim_voice_extn.c -------------------------------------------------------------------------------- /hardware/audio/hal/voice_extn/msim_voice_extn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/voice_extn/msim_voice_extn.h -------------------------------------------------------------------------------- /hardware/audio/hal/voice_extn/voice_extn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/voice_extn/voice_extn.c -------------------------------------------------------------------------------- /hardware/audio/hal/voice_extn/voice_extn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/hal/voice_extn/voice_extn.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/Android.mk -------------------------------------------------------------------------------- /hardware/audio/mm-audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/Makefile -------------------------------------------------------------------------------- /hardware/audio/mm-audio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/Makefile.am -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-aac/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-aac/Android.mk -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-aac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-aac/Makefile -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-aac/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = qdsp6 2 | -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-aac/qdsp6/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-aac/qdsp6/Android.mk -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-aac/qdsp6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-aac/qdsp6/Makefile -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-aac/qdsp6/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-aac/qdsp6/Makefile.am -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-aac/qdsp6/inc/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-aac/qdsp6/inc/Map.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-aac/qdsp6/inc/aenc_svr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-aac/qdsp6/inc/aenc_svr.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-aac/qdsp6/inc/omx_aac_aenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-aac/qdsp6/inc/omx_aac_aenc.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-aac/qdsp6/src/aenc_svr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-aac/qdsp6/src/aenc_svr.c -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-aac/qdsp6/src/omx_aac_aenc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-aac/qdsp6/src/omx_aac_aenc.cpp -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-amrnb/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-amrnb/Android.mk -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-amrnb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-amrnb/Makefile -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-amrnb/qdsp6/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-amrnb/qdsp6/Android.mk -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-amrnb/qdsp6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-amrnb/qdsp6/Makefile -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-amrnb/qdsp6/inc/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-amrnb/qdsp6/inc/Map.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-amrnb/qdsp6/inc/aenc_svr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-amrnb/qdsp6/inc/aenc_svr.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-amrnb/qdsp6/inc/omx_amr_aenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-amrnb/qdsp6/inc/omx_amr_aenc.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-amrnb/qdsp6/src/aenc_svr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-amrnb/qdsp6/src/aenc_svr.c -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-amrnb/qdsp6/src/omx_amr_aenc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-amrnb/qdsp6/src/omx_amr_aenc.cpp -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-evrc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-evrc/Android.mk -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-evrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-evrc/Makefile -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-evrc/qdsp6/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-evrc/qdsp6/Android.mk -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-evrc/qdsp6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-evrc/qdsp6/Makefile -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-evrc/qdsp6/inc/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-evrc/qdsp6/inc/Map.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-evrc/qdsp6/inc/aenc_svr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-evrc/qdsp6/inc/aenc_svr.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-evrc/qdsp6/inc/omx_evrc_aenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-evrc/qdsp6/inc/omx_evrc_aenc.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-evrc/qdsp6/src/aenc_svr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-evrc/qdsp6/src/aenc_svr.c -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-evrc/qdsp6/src/omx_evrc_aenc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-evrc/qdsp6/src/omx_evrc_aenc.cpp -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-qcelp13/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-qcelp13/Android.mk -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-qcelp13/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-qcelp13/Makefile -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-qcelp13/qdsp6/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-qcelp13/qdsp6/Android.mk -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-qcelp13/qdsp6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-qcelp13/qdsp6/Makefile -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-qcelp13/qdsp6/inc/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-qcelp13/qdsp6/inc/Map.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-qcelp13/qdsp6/inc/aenc_svr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-qcelp13/qdsp6/inc/aenc_svr.h -------------------------------------------------------------------------------- /hardware/audio/mm-audio/aenc-qcelp13/qdsp6/src/aenc_svr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/aenc-qcelp13/qdsp6/src/aenc_svr.c -------------------------------------------------------------------------------- /hardware/audio/mm-audio/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/autogen.sh -------------------------------------------------------------------------------- /hardware/audio/mm-audio/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/mm-audio/configure.ac -------------------------------------------------------------------------------- /hardware/audio/post_proc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/Android.mk -------------------------------------------------------------------------------- /hardware/audio/post_proc/EffectsHwAcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/EffectsHwAcc.cpp -------------------------------------------------------------------------------- /hardware/audio/post_proc/EffectsHwAcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/EffectsHwAcc.h -------------------------------------------------------------------------------- /hardware/audio/post_proc/asphere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/asphere.c -------------------------------------------------------------------------------- /hardware/audio/post_proc/asphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/asphere.h -------------------------------------------------------------------------------- /hardware/audio/post_proc/bass_boost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/bass_boost.c -------------------------------------------------------------------------------- /hardware/audio/post_proc/bass_boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/bass_boost.h -------------------------------------------------------------------------------- /hardware/audio/post_proc/bundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/bundle.c -------------------------------------------------------------------------------- /hardware/audio/post_proc/bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/bundle.h -------------------------------------------------------------------------------- /hardware/audio/post_proc/effect_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/effect_api.c -------------------------------------------------------------------------------- /hardware/audio/post_proc/effect_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/effect_api.h -------------------------------------------------------------------------------- /hardware/audio/post_proc/effect_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/effect_util.c -------------------------------------------------------------------------------- /hardware/audio/post_proc/effect_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/effect_util.h -------------------------------------------------------------------------------- /hardware/audio/post_proc/equalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/equalizer.c -------------------------------------------------------------------------------- /hardware/audio/post_proc/equalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/equalizer.h -------------------------------------------------------------------------------- /hardware/audio/post_proc/hw_accelerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/hw_accelerator.c -------------------------------------------------------------------------------- /hardware/audio/post_proc/hw_accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/hw_accelerator.h -------------------------------------------------------------------------------- /hardware/audio/post_proc/reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/reverb.c -------------------------------------------------------------------------------- /hardware/audio/post_proc/reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/reverb.h -------------------------------------------------------------------------------- /hardware/audio/post_proc/virtualizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/virtualizer.c -------------------------------------------------------------------------------- /hardware/audio/post_proc/virtualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/post_proc/virtualizer.h -------------------------------------------------------------------------------- /hardware/audio/visualizer/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/visualizer/Android.mk -------------------------------------------------------------------------------- /hardware/audio/visualizer/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hardware/audio/visualizer/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/visualizer/NOTICE -------------------------------------------------------------------------------- /hardware/audio/visualizer/offload_visualizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/visualizer/offload_visualizer.c -------------------------------------------------------------------------------- /hardware/audio/voice_processing/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/voice_processing/Android.mk -------------------------------------------------------------------------------- /hardware/audio/voice_processing/voice_processing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/audio/voice_processing/voice_processing.c -------------------------------------------------------------------------------- /hardware/display/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/Android.mk -------------------------------------------------------------------------------- /hardware/display/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/Makefile.am -------------------------------------------------------------------------------- /hardware/display/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/common.mk -------------------------------------------------------------------------------- /hardware/display/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/configure.ac -------------------------------------------------------------------------------- /hardware/display/include/color_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/include/color_metadata.h -------------------------------------------------------------------------------- /hardware/display/libcopybit/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libcopybit/Android.mk -------------------------------------------------------------------------------- /hardware/display/libcopybit/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hardware/display/libcopybit/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libcopybit/NOTICE -------------------------------------------------------------------------------- /hardware/display/libcopybit/c2d2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libcopybit/c2d2.h -------------------------------------------------------------------------------- /hardware/display/libcopybit/copybit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libcopybit/copybit.cpp -------------------------------------------------------------------------------- /hardware/display/libcopybit/copybit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libcopybit/copybit.h -------------------------------------------------------------------------------- /hardware/display/libcopybit/copybit_c2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libcopybit/copybit_c2d.cpp -------------------------------------------------------------------------------- /hardware/display/libcopybit/copybit_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libcopybit/copybit_priv.h -------------------------------------------------------------------------------- /hardware/display/libcopybit/software_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libcopybit/software_converter.cpp -------------------------------------------------------------------------------- /hardware/display/libcopybit/software_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libcopybit/software_converter.h -------------------------------------------------------------------------------- /hardware/display/libgralloc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/Android.mk -------------------------------------------------------------------------------- /hardware/display/libgralloc/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hardware/display/libgralloc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/Makefile.am -------------------------------------------------------------------------------- /hardware/display/libgralloc/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/NOTICE -------------------------------------------------------------------------------- /hardware/display/libgralloc/alloc_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/alloc_controller.cpp -------------------------------------------------------------------------------- /hardware/display/libgralloc/alloc_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/alloc_controller.h -------------------------------------------------------------------------------- /hardware/display/libgralloc/fb_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/fb_priv.h -------------------------------------------------------------------------------- /hardware/display/libgralloc/framebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/framebuffer.cpp -------------------------------------------------------------------------------- /hardware/display/libgralloc/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/gpu.cpp -------------------------------------------------------------------------------- /hardware/display/libgralloc/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/gpu.h -------------------------------------------------------------------------------- /hardware/display/libgralloc/gr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/gr.h -------------------------------------------------------------------------------- /hardware/display/libgralloc/gralloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/gralloc.cpp -------------------------------------------------------------------------------- /hardware/display/libgralloc/gralloc_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/gralloc_priv.h -------------------------------------------------------------------------------- /hardware/display/libgralloc/ionalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/ionalloc.cpp -------------------------------------------------------------------------------- /hardware/display/libgralloc/ionalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/ionalloc.h -------------------------------------------------------------------------------- /hardware/display/libgralloc/mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/mapper.cpp -------------------------------------------------------------------------------- /hardware/display/libgralloc/memalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libgralloc/memalloc.h -------------------------------------------------------------------------------- /hardware/display/libhdmi/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhdmi/Android.mk -------------------------------------------------------------------------------- /hardware/display/libhdmi/hdmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhdmi/hdmi.cpp -------------------------------------------------------------------------------- /hardware/display/libhdmi/hdmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhdmi/hdmi.h -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/Android.mk -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_ad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_ad.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_ad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_ad.h -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_copybit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_copybit.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_copybit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_copybit.h -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_dump_layers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_dump_layers.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_dump_layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_dump_layers.h -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_fbupdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_fbupdate.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_fbupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_fbupdate.h -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_mdpcomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_mdpcomp.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_mdpcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_mdpcomp.h -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_qclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_qclient.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_qclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_qclient.h -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_qdcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_qdcm.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_qdcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_qdcm.h -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_qdcm_legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_qdcm_legacy.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_uevents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_uevents.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_utils.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_utils.h -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_virtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_virtual.cpp -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_virtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_virtual.h -------------------------------------------------------------------------------- /hardware/display/libhwcomposer/hwc_vsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libhwcomposer/hwc_vsync.cpp -------------------------------------------------------------------------------- /hardware/display/liblight/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liblight/Android.mk -------------------------------------------------------------------------------- /hardware/display/liblight/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liblight/NOTICE -------------------------------------------------------------------------------- /hardware/display/liblight/lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liblight/lights.c -------------------------------------------------------------------------------- /hardware/display/libmemtrack/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libmemtrack/Android.mk -------------------------------------------------------------------------------- /hardware/display/libmemtrack/kgsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libmemtrack/kgsl.c -------------------------------------------------------------------------------- /hardware/display/libmemtrack/memtrack_msm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libmemtrack/memtrack_msm.c -------------------------------------------------------------------------------- /hardware/display/libmemtrack/memtrack_msm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libmemtrack/memtrack_msm.h -------------------------------------------------------------------------------- /hardware/display/liboverlay/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/Android.mk -------------------------------------------------------------------------------- /hardware/display/liboverlay/mdpWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/mdpWrapper.h -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlay.cpp -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlay.h -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayCtrlData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayCtrlData.h -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayMdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayMdp.cpp -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayMdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayMdp.h -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayMdpRot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayMdpRot.cpp -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayMdssRot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayMdssRot.cpp -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayMem.h -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayRotator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayRotator.cpp -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayRotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayRotator.h -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayUtils.cpp -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayUtils.h -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayWriteback.cpp -------------------------------------------------------------------------------- /hardware/display/liboverlay/overlayWriteback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/overlayWriteback.h -------------------------------------------------------------------------------- /hardware/display/liboverlay/pipes/overlayGenPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/pipes/overlayGenPipe.cpp -------------------------------------------------------------------------------- /hardware/display/liboverlay/pipes/overlayGenPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/liboverlay/pipes/overlayGenPipe.h -------------------------------------------------------------------------------- /hardware/display/libqdutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/Android.mk -------------------------------------------------------------------------------- /hardware/display/libqdutils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/Makefile.am -------------------------------------------------------------------------------- /hardware/display/libqdutils/cb_swap_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/cb_swap_rect.cpp -------------------------------------------------------------------------------- /hardware/display/libqdutils/cb_swap_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/cb_swap_rect.h -------------------------------------------------------------------------------- /hardware/display/libqdutils/cb_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/cb_utils.cpp -------------------------------------------------------------------------------- /hardware/display/libqdutils/cb_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/cb_utils.h -------------------------------------------------------------------------------- /hardware/display/libqdutils/comptype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/comptype.cpp -------------------------------------------------------------------------------- /hardware/display/libqdutils/comptype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/comptype.h -------------------------------------------------------------------------------- /hardware/display/libqdutils/display_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/display_config.cpp -------------------------------------------------------------------------------- /hardware/display/libqdutils/display_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/display_config.h -------------------------------------------------------------------------------- /hardware/display/libqdutils/idle_invalidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/idle_invalidator.cpp -------------------------------------------------------------------------------- /hardware/display/libqdutils/idle_invalidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/idle_invalidator.h -------------------------------------------------------------------------------- /hardware/display/libqdutils/mdp_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/mdp_version.cpp -------------------------------------------------------------------------------- /hardware/display/libqdutils/mdp_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/mdp_version.h -------------------------------------------------------------------------------- /hardware/display/libqdutils/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/profiler.cpp -------------------------------------------------------------------------------- /hardware/display/libqdutils/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/profiler.h -------------------------------------------------------------------------------- /hardware/display/libqdutils/qdMetaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/qdMetaData.cpp -------------------------------------------------------------------------------- /hardware/display/libqdutils/qdMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/qdMetaData.h -------------------------------------------------------------------------------- /hardware/display/libqdutils/qd_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/qd_utils.cpp -------------------------------------------------------------------------------- /hardware/display/libqdutils/qd_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqdutils/qd_utils.h -------------------------------------------------------------------------------- /hardware/display/libqservice/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqservice/Android.mk -------------------------------------------------------------------------------- /hardware/display/libqservice/IQClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqservice/IQClient.cpp -------------------------------------------------------------------------------- /hardware/display/libqservice/IQClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqservice/IQClient.h -------------------------------------------------------------------------------- /hardware/display/libqservice/IQService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqservice/IQService.cpp -------------------------------------------------------------------------------- /hardware/display/libqservice/IQService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqservice/IQService.h -------------------------------------------------------------------------------- /hardware/display/libqservice/QService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqservice/QService.cpp -------------------------------------------------------------------------------- /hardware/display/libqservice/QService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqservice/QService.h -------------------------------------------------------------------------------- /hardware/display/libqservice/QServiceUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/display/libqservice/QServiceUtils.h -------------------------------------------------------------------------------- /hardware/media/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/Android.mk -------------------------------------------------------------------------------- /hardware/media/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/CleanSpec.mk -------------------------------------------------------------------------------- /hardware/media/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/NOTICE -------------------------------------------------------------------------------- /hardware/media/libc2dcolorconvert/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/libc2dcolorconvert/Android.mk -------------------------------------------------------------------------------- /hardware/media/libc2dcolorconvert/C2DColorConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/libc2dcolorconvert/C2DColorConverter.cpp -------------------------------------------------------------------------------- /hardware/media/libc2dcolorconvert/C2DColorConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/libc2dcolorconvert/C2DColorConverter.h -------------------------------------------------------------------------------- /hardware/media/libstagefrighthw/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/libstagefrighthw/Android.mk -------------------------------------------------------------------------------- /hardware/media/libstagefrighthw/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hardware/media/libstagefrighthw/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/libstagefrighthw/NOTICE -------------------------------------------------------------------------------- /hardware/media/libstagefrighthw/QComOMXMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/libstagefrighthw/QComOMXMetadata.h -------------------------------------------------------------------------------- /hardware/media/libstagefrighthw/QComOMXPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/libstagefrighthw/QComOMXPlugin.cpp -------------------------------------------------------------------------------- /hardware/media/libstagefrighthw/QComOMXPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/libstagefrighthw/QComOMXPlugin.h -------------------------------------------------------------------------------- /hardware/media/mm-core/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/Android.mk -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_Audio.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_Component.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_ContentPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_ContentPipe.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_Core.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_CoreExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_CoreExt.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_IVCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_IVCommon.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_Image.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_Index.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_IndexExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_IndexExt.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_Other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_Other.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_QCOMExtns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_QCOMExtns.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_Skype_VideoExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_Skype_VideoExtensions.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_Types.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_Video.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/OMX_VideoExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/OMX_VideoExt.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/QCMediaDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/QCMediaDefs.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/QCMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/QCMetaData.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/QOMX_AudioExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/QOMX_AudioExtensions.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/QOMX_AudioIndexExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/QOMX_AudioIndexExtensions.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/QOMX_CoreExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/QOMX_CoreExtensions.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/QOMX_FileFormatExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/QOMX_FileFormatExtensions.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/QOMX_IVCommonExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/QOMX_IVCommonExtensions.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/QOMX_SourceExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/QOMX_SourceExtensions.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/QOMX_StreamingExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/QOMX_StreamingExtensions.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/QOMX_VideoExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/QOMX_VideoExtensions.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/drmplay_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/drmplay_version.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/qc_omx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/qc_omx_common.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/qc_omx_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/qc_omx_component.h -------------------------------------------------------------------------------- /hardware/media/mm-core/inc/qc_omx_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/inc/qc_omx_msg.h -------------------------------------------------------------------------------- /hardware/media/mm-core/src/7627A/qc_registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/7627A/qc_registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/7627A/qc_registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/7627A/qc_registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/7630/qc_registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/7630/qc_registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/7630/qc_registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/7630/qc_registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8084/qc_registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8084/qc_registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8084/qc_registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8084/qc_registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8092/qc_registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8092/qc_registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8092/qc_registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8092/qc_registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8226/qc_registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8226/qc_registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8226/qc_registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8226/qc_registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8610/qc_registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8610/qc_registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8610/qc_registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8610/qc_registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8660/qc_registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8660/qc_registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8660/qc_registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8660/qc_registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8909/registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8909/registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8909/registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8909/registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8916/registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8916/registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8916/registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8916/registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8960/qc_registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8960/qc_registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8960/qc_registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8960/qc_registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8974/qc_registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8974/qc_registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/8974/qc_registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/8974/qc_registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/common/omx_core_cmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/common/omx_core_cmp.cpp -------------------------------------------------------------------------------- /hardware/media/mm-core/src/common/omx_core_cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/common/omx_core_cmp.h -------------------------------------------------------------------------------- /hardware/media/mm-core/src/common/qc_omx_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/common/qc_omx_core.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/common/qc_omx_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/common/qc_omx_core.h -------------------------------------------------------------------------------- /hardware/media/mm-core/src/default/qc_registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/default/qc_registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/default/qc_registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/default/qc_registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/msm8992/registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/msm8992/registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/msm8992/registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/msm8992/registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/msm8994/registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/msm8994/registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/msm8994/registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/msm8994/registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/thulium/registry_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/thulium/registry_table.c -------------------------------------------------------------------------------- /hardware/media/mm-core/src/thulium/registry_table_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-core/src/thulium/registry_table_android.c -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/Android.mk -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/Android.mk -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/common/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/common/Android.mk -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/common/inc/vidc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/common/inc/vidc_debug.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/test/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/test/Android.mk -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/test/README.txt -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/test/msm_vidc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/test/msm_vidc_test.c -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/test/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/test/queue.c -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/test/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/test/queue.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/test/ring_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/test/ring_queue.c -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/test/ring_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/test/ring_queue.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/Android.mk -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/Map.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/frameparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/frameparser.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/h264_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/h264_utils.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/hevc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/hevc_utils.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/message_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/message_queue.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/mp4_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/mp4_utils.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/omx_swvdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/omx_swvdec.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/omx_vdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/omx_vdec.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/omx_vdec_hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/omx_vdec_hevc.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/power_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/power_module.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/qtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/qtypes.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/queue.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/inc/ts_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/inc/ts_parser.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/src/frameparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/src/frameparser.cpp -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/src/h264_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/src/h264_utils.cpp -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/src/hevc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/src/hevc_utils.cpp -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/src/message_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/src/message_queue.c -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/src/mp4_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/src/mp4_utils.cpp -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/src/omx_swvdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/src/omx_swvdec.cpp -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/vdec/src/ts_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/vdec/src/ts_parser.cpp -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/venc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/venc/Android.mk -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/venc/inc/camera_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/venc/inc/camera_test.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/venc/inc/fb_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/venc/inc/fb_test.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/venc/inc/omx_video_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/venc/inc/omx_video_base.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/venc/inc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/venc/inc/queue.h -------------------------------------------------------------------------------- /hardware/media/mm-video-v4l2/vidc/venc/inc/venc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hardware/media/mm-video-v4l2/vidc/venc/inc/venc_util.h -------------------------------------------------------------------------------- /hidl/light-a6000/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/light-a6000/Android.bp -------------------------------------------------------------------------------- /hidl/light-a6000/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/light-a6000/Light.cpp -------------------------------------------------------------------------------- /hidl/light-a6000/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/light-a6000/Light.h -------------------------------------------------------------------------------- /hidl/light-a6000/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/light-a6000/service.cpp -------------------------------------------------------------------------------- /hidl/light/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/light/Android.bp -------------------------------------------------------------------------------- /hidl/light/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/light/Light.cpp -------------------------------------------------------------------------------- /hidl/light/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/light/Light.h -------------------------------------------------------------------------------- /hidl/light/android.hardware.light@2.0-service.msm8916.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/light/android.hardware.light@2.0-service.msm8916.rc -------------------------------------------------------------------------------- /hidl/light/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/light/service.cpp -------------------------------------------------------------------------------- /hidl/radio/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/Android.bp -------------------------------------------------------------------------------- /hidl/radio/Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/Helpers.cpp -------------------------------------------------------------------------------- /hidl/radio/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/Helpers.h -------------------------------------------------------------------------------- /hidl/radio/Radio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/Radio.cpp -------------------------------------------------------------------------------- /hidl/radio/Radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/Radio.h -------------------------------------------------------------------------------- /hidl/radio/RadioIndication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/RadioIndication.cpp -------------------------------------------------------------------------------- /hidl/radio/RadioIndication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/RadioIndication.h -------------------------------------------------------------------------------- /hidl/radio/RadioResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/RadioResponse.cpp -------------------------------------------------------------------------------- /hidl/radio/RadioResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/RadioResponse.h -------------------------------------------------------------------------------- /hidl/radio/android.hardware.radio@1.4-service.msm8916.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/android.hardware.radio@1.4-service.msm8916.rc -------------------------------------------------------------------------------- /hidl/radio/hidl-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/hidl-utils.cpp -------------------------------------------------------------------------------- /hidl/radio/hidl-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/hidl-utils.h -------------------------------------------------------------------------------- /hidl/radio/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/radio/service.cpp -------------------------------------------------------------------------------- /hidl/sensors/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/sensors/Android.bp -------------------------------------------------------------------------------- /hidl/sensors/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/sensors/Android.mk -------------------------------------------------------------------------------- /hidl/sensors/SensorEventQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/sensors/SensorEventQueue.cpp -------------------------------------------------------------------------------- /hidl/sensors/SensorEventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/sensors/SensorEventQueue.h -------------------------------------------------------------------------------- /hidl/sensors/Sensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/sensors/Sensors.cpp -------------------------------------------------------------------------------- /hidl/sensors/Sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/sensors/Sensors.h -------------------------------------------------------------------------------- /hidl/sensors/calmodule.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/sensors/calmodule.cfg -------------------------------------------------------------------------------- /hidl/sensors/include/sensors/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/sensors/include/sensors/convert.h -------------------------------------------------------------------------------- /hidl/sensors/multihal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/sensors/multihal.cpp -------------------------------------------------------------------------------- /hidl/sensors/multihal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/sensors/multihal.h -------------------------------------------------------------------------------- /hidl/sensors/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/sensors/service.cpp -------------------------------------------------------------------------------- /hidl/thermal/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/Android.bp -------------------------------------------------------------------------------- /hidl/thermal/Thermal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/Thermal.cpp -------------------------------------------------------------------------------- /hidl/thermal/Thermal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/Thermal.h -------------------------------------------------------------------------------- /hidl/thermal/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/service.cpp -------------------------------------------------------------------------------- /hidl/thermal/thermal-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/thermal-helper.cpp -------------------------------------------------------------------------------- /hidl/thermal/thermal-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/thermal-helper.h -------------------------------------------------------------------------------- /hidl/thermal/utils/config_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/utils/config_parser.cpp -------------------------------------------------------------------------------- /hidl/thermal/utils/config_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/utils/config_parser.h -------------------------------------------------------------------------------- /hidl/thermal/utils/config_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/utils/config_schema.json -------------------------------------------------------------------------------- /hidl/thermal/utils/thermal_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/utils/thermal_files.cpp -------------------------------------------------------------------------------- /hidl/thermal/utils/thermal_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/utils/thermal_files.h -------------------------------------------------------------------------------- /hidl/thermal/utils/thermal_watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/utils/thermal_watcher.cpp -------------------------------------------------------------------------------- /hidl/thermal/utils/thermal_watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/hidl/thermal/utils/thermal_watcher.h -------------------------------------------------------------------------------- /keylayout/ft5x06_ts.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/keylayout/ft5x06_ts.kl -------------------------------------------------------------------------------- /keylayout/gpio-keys.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/keylayout/gpio-keys.kl -------------------------------------------------------------------------------- /keylayout/qpnp_pon.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/keylayout/qpnp_pon.kl -------------------------------------------------------------------------------- /lineage_a6000.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/lineage_a6000.mk -------------------------------------------------------------------------------- /lineage_a6010.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/lineage_a6010.mk -------------------------------------------------------------------------------- /lineage_a6010_gms_go_2gb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/lineage_a6010_gms_go_2gb.mk -------------------------------------------------------------------------------- /lineage_sisleyr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/lineage_sisleyr.mk -------------------------------------------------------------------------------- /lineage_sisleyr_gms_go_2gb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/lineage_sisleyr_gms_go_2gb.mk -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/manifest.xml -------------------------------------------------------------------------------- /msm_irqbalance/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/msm_irqbalance/Android.mk -------------------------------------------------------------------------------- /msm_irqbalance/msm_irqbalance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/msm_irqbalance/msm_irqbalance.c -------------------------------------------------------------------------------- /msm_irqbalance/msm_irqbalance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/msm_irqbalance/msm_irqbalance.h -------------------------------------------------------------------------------- /overlay-lineage/packages/apps/Updater/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay-lineage/packages/apps/Updater/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/frameworks/base/core/res/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/frameworks/base/core/res/res/xml/power_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/frameworks/base/core/res/res/xml/power_profile.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Bluetooth/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Bluetooth/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/CarrierConfig/res/xml/vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/CarrierConfig/res/xml/vendor.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/raw/aab_brightness.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/raw/aab_brightness.mp4 -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/raw/adaptive_sleep.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/raw/adaptive_sleep.mp4 -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/raw/face_education.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/raw/face_education.mp4 -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/raw/face_settings.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/raw/face_settings.mp4 -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/raw/gesture_twist.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/raw/gesture_twist.mp4 -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values-ru/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/values-ru/cm_strings.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values-uk/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/values-uk/cm_strings.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/values/arrays.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/values/cm_strings.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/values/dimens.xml -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/apps/Settings/res/values/styles.xml -------------------------------------------------------------------------------- /overlay/packages/services/Telephony/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/overlay/packages/services/Telephony/res/values/config.xml -------------------------------------------------------------------------------- /product.prop: -------------------------------------------------------------------------------- 1 | # BPF 2 | ro.bpf.kver_override=5.4.300 3 | -------------------------------------------------------------------------------- /recovery/root/init.recovery.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/recovery/root/init.recovery.qcom.rc -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/Android.mk -------------------------------------------------------------------------------- /rootdir/etc/fstab.qcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/fstab.qcom -------------------------------------------------------------------------------- /rootdir/etc/fstab.ramdisk.qcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/fstab.ramdisk.qcom -------------------------------------------------------------------------------- /rootdir/etc/fstab.ramdisk.sisleyr.qcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/fstab.ramdisk.sisleyr.qcom -------------------------------------------------------------------------------- /rootdir/etc/init.post_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/init.post_boot.sh -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.power.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/init.qcom.power.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/init.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.ssr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/init.qcom.ssr.rc -------------------------------------------------------------------------------- /rootdir/etc/init.qcom.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/init.qcom.usb.rc -------------------------------------------------------------------------------- /rootdir/etc/init.target.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/init.target.rc -------------------------------------------------------------------------------- /rootdir/etc/set_baseband.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/set_baseband.sh -------------------------------------------------------------------------------- /rootdir/etc/set_zram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/set_zram.sh -------------------------------------------------------------------------------- /rootdir/etc/target_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/target_config.sh -------------------------------------------------------------------------------- /rootdir/etc/ueventd.qcom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/ueventd.qcom.rc -------------------------------------------------------------------------------- /rootdir/etc/xtra_daemon_toggler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rootdir/etc/xtra_daemon_toggler.sh -------------------------------------------------------------------------------- /rro_overlays/DocumentsUIOverlayGo/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/DocumentsUIOverlayGo/Android.bp -------------------------------------------------------------------------------- /rro_overlays/DocumentsUIOverlayGo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/DocumentsUIOverlayGo/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/DocumentsUIOverlayGo/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/DocumentsUIOverlayGo/res/values/config.xml -------------------------------------------------------------------------------- /rro_overlays/GboardOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/GboardOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/GboardOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/GboardOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/GboardOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/GboardOverlay/res/values/config.xml -------------------------------------------------------------------------------- /rro_overlays/MessagesGoOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/MessagesGoOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/MessagesGoOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/MessagesGoOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/MessagesGoOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/MessagesGoOverlay/res/values/config.xml -------------------------------------------------------------------------------- /rro_overlays/PrivateSpaceOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/PrivateSpaceOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/PrivateSpaceOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/PrivateSpaceOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/TetheringOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/TetheringOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/TetheringOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/TetheringOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/TetheringOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/TetheringOverlay/res/values/config.xml -------------------------------------------------------------------------------- /rro_overlays/TrebuchetGoOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/TrebuchetGoOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/TrebuchetGoOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/TrebuchetGoOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/TrebuchetGoOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/TrebuchetGoOverlay/res/values/config.xml -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/WifiOverlay/Android.bp -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/WifiOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /rro_overlays/WifiOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/rro_overlays/WifiOverlay/res/values/config.xml -------------------------------------------------------------------------------- /seccomp/gnss@2.0-base.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/seccomp/gnss@2.0-base.policy -------------------------------------------------------------------------------- /seccomp/gnss@2.0-xtwifi-client.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/seccomp/gnss@2.0-xtwifi-client.policy -------------------------------------------------------------------------------- /seccomp/mediacodec-seccomp.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/seccomp/mediacodec-seccomp.policy -------------------------------------------------------------------------------- /seccomp/mediaextractor-seccomp.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/seccomp/mediaextractor-seccomp.policy -------------------------------------------------------------------------------- /seccomp/mediaswcodec-seccomp.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/seccomp/mediaswcodec-seccomp.policy -------------------------------------------------------------------------------- /sepolicy/private/isolated_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/private/isolated_app.te -------------------------------------------------------------------------------- /sepolicy/private/system_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/private/system_app.te -------------------------------------------------------------------------------- /sepolicy/private/untrusted_app_29.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/private/untrusted_app_29.te -------------------------------------------------------------------------------- /sepolicy/vendor/app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/app.te -------------------------------------------------------------------------------- /sepolicy/vendor/app_zygote.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/app_zygote.te -------------------------------------------------------------------------------- /sepolicy/vendor/audioserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/audioserver.te -------------------------------------------------------------------------------- /sepolicy/vendor/bootanim.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/bootanim.te -------------------------------------------------------------------------------- /sepolicy/vendor/cameraserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/cameraserver.te -------------------------------------------------------------------------------- /sepolicy/vendor/charger.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/charger.te -------------------------------------------------------------------------------- /sepolicy/vendor/device_config.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/device_config.te -------------------------------------------------------------------------------- /sepolicy/vendor/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/file.te -------------------------------------------------------------------------------- /sepolicy/vendor/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/file_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/fsck.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/fsck.te -------------------------------------------------------------------------------- /sepolicy/vendor/genfs_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/genfs_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/gmscore_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/gmscore_app.te -------------------------------------------------------------------------------- /sepolicy/vendor/gpuservice.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/gpuservice.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_audio_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_audio_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_camera_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_camera_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_drm_clearkey.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_drm_clearkey.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_drm_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_drm_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_drm_widevine.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_drm_widevine.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_gnss_qti.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_gnss_qti.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_graphics_composer_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_graphics_composer_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_health_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_health_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_light_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_light_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_lineage_touch_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_lineage_touch_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_perf_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_perf_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_power_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_power_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_sensors_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_sensors_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_wifi_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hal_wifi_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/healthd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/healthd.te -------------------------------------------------------------------------------- /sepolicy/vendor/hwservice_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/hwservice_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/init.te -------------------------------------------------------------------------------- /sepolicy/vendor/installd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/installd.te -------------------------------------------------------------------------------- /sepolicy/vendor/kernel.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/kernel.te -------------------------------------------------------------------------------- /sepolicy/vendor/location.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/location.te -------------------------------------------------------------------------------- /sepolicy/vendor/mediacodec.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/mediacodec.te -------------------------------------------------------------------------------- /sepolicy/vendor/mediadrmserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/mediadrmserver.te -------------------------------------------------------------------------------- /sepolicy/vendor/mediaserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/mediaserver.te -------------------------------------------------------------------------------- /sepolicy/vendor/memtrack.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/memtrack.te -------------------------------------------------------------------------------- /sepolicy/vendor/mm-qcamerad.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/mm-qcamerad.te -------------------------------------------------------------------------------- /sepolicy/vendor/netd.te: -------------------------------------------------------------------------------- 1 | allow netd device:file write; 2 | -------------------------------------------------------------------------------- /sepolicy/vendor/netmgrd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/netmgrd.te -------------------------------------------------------------------------------- /sepolicy/vendor/netutils_wrapper.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/netutils_wrapper.te -------------------------------------------------------------------------------- /sepolicy/vendor/priv_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/priv_app.te -------------------------------------------------------------------------------- /sepolicy/vendor/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/property.te -------------------------------------------------------------------------------- /sepolicy/vendor/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/property_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/qcom_ril.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/qcom_ril.te -------------------------------------------------------------------------------- /sepolicy/vendor/qmuxd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/qmuxd.te -------------------------------------------------------------------------------- /sepolicy/vendor/qti_init_shell.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/qti_init_shell.te -------------------------------------------------------------------------------- /sepolicy/vendor/radio.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/radio.te -------------------------------------------------------------------------------- /sepolicy/vendor/recovery.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/recovery.te -------------------------------------------------------------------------------- /sepolicy/vendor/rild.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/rild.te -------------------------------------------------------------------------------- /sepolicy/vendor/rmt_storage.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/rmt_storage.te -------------------------------------------------------------------------------- /sepolicy/vendor/rs.te: -------------------------------------------------------------------------------- 1 | allow rs surfaceflinger:unix_stream_socket { read write }; -------------------------------------------------------------------------------- /sepolicy/vendor/seapp_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/seapp_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/service.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/service.te -------------------------------------------------------------------------------- /sepolicy/vendor/service_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/service_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/servicemanager.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/servicemanager.te -------------------------------------------------------------------------------- /sepolicy/vendor/surfaceflinger.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/surfaceflinger.te -------------------------------------------------------------------------------- /sepolicy/vendor/system_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/system_app.te -------------------------------------------------------------------------------- /sepolicy/vendor/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/system_server.te -------------------------------------------------------------------------------- /sepolicy/vendor/tee.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/tee.te -------------------------------------------------------------------------------- /sepolicy/vendor/thermal-engine.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/thermal-engine.te -------------------------------------------------------------------------------- /sepolicy/vendor/timekeep.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/timekeep.te -------------------------------------------------------------------------------- /sepolicy/vendor/timekeep_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/timekeep_app.te -------------------------------------------------------------------------------- /sepolicy/vendor/ueventd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/ueventd.te -------------------------------------------------------------------------------- /sepolicy/vendor/vendor_init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/vendor_init.te -------------------------------------------------------------------------------- /sepolicy/vendor/vold.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/vold.te -------------------------------------------------------------------------------- /sepolicy/vendor/vold_prepare_subdirs.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/vold_prepare_subdirs.te -------------------------------------------------------------------------------- /sepolicy/vendor/webview_zygote.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/webview_zygote.te -------------------------------------------------------------------------------- /sepolicy/vendor/zygote.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sepolicy/vendor/zygote.te -------------------------------------------------------------------------------- /sisleyr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/sisleyr.mk -------------------------------------------------------------------------------- /wifi/WCNSS_cfg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/wifi/WCNSS_cfg.dat -------------------------------------------------------------------------------- /wifi/WCNSS_qcom_wlan_nv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/wifi/WCNSS_qcom_wlan_nv.bin -------------------------------------------------------------------------------- /wifi/WCNSS_wlan_dictionary.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acroreiser/android_device_lenovo_a6010/HEAD/wifi/WCNSS_wlan_dictionary.dat --------------------------------------------------------------------------------