├── .circleci └── config.yml ├── .gitignore ├── .gitmodules ├── LICENSE.Apache2 ├── LICENSE.BSD-2 ├── LICENSE.BSD-3 ├── LICENSE.BSD-4 ├── LICENSE.GPL3 ├── LICENSE.ISC ├── LICENSE.LGPLv21 ├── LICENSE.MIT ├── compat ├── Android.common.mk ├── apphwc │ ├── Android.bp │ ├── hwc2_compatibility_layer.cpp │ └── hwc2_compatibility_layer.h ├── camera │ ├── Android.mk │ ├── camera_compatibility_layer.cpp │ └── direct_camera_test.cpp ├── hwc2 │ ├── AidlComposerHal.cpp │ ├── AidlComposerHal.h │ ├── Android.mk │ ├── ComposerHal.cpp │ ├── ComposerHal.h │ ├── GrallocUsageConversion.cpp │ ├── HWC2.cpp │ ├── HWC2.h │ ├── Hal.h │ ├── HidlComposerHal.cpp │ ├── HidlComposerHal.h │ ├── hwc2_compatibility_layer.cpp │ ├── hwc2_compatibility_layer.h │ ├── hybris │ │ └── grallocusage │ │ │ └── GrallocUsageConversion.h │ └── tests │ │ ├── direct_hwc2_test.cpp │ │ ├── eglnativewindowbase.h │ │ ├── hwcomposer.h │ │ ├── hwcomposer_window.cpp │ │ ├── hwcomposer_window.h │ │ ├── hybris-gralloc.c │ │ ├── hybris-gralloc.h │ │ ├── nativewindowbase.cpp │ │ ├── nativewindowbase.h │ │ └── support.h ├── input │ ├── Android.mk │ ├── direct_input_test.cpp │ └── input_compatibility_layer.cpp ├── media │ ├── Android.mk │ ├── SimplePlayer.cpp │ ├── SimplePlayer.h │ ├── camera_service.cpp │ ├── camera_service.rc │ ├── codec.cpp │ ├── decoding_service.cpp │ ├── decoding_service_priv.h │ ├── direct_media_test.cpp │ ├── direct_media_test.h │ ├── media_buffer_layer.cpp │ ├── media_buffer_priv.h │ ├── media_codec_layer.cpp │ ├── media_codec_list.cpp │ ├── media_codec_source_layer.cpp │ ├── media_compatibility_layer.cpp │ ├── media_core.cpp │ ├── media_format_layer.cpp │ ├── media_format_layer_priv.cpp │ ├── media_format_layer_priv.h │ ├── media_message_layer.cpp │ ├── media_message_priv.h │ ├── media_meta_data_layer.cpp │ ├── media_meta_data_priv.h │ ├── media_recorder.cpp │ ├── media_recorder.h │ ├── media_recorder_client.cpp │ ├── media_recorder_client.h │ ├── media_recorder_factory.cpp │ ├── media_recorder_factory.h │ ├── media_recorder_layer.cpp │ ├── media_recorder_observer.cpp │ ├── media_recorder_observer.h │ ├── micshm.sh │ ├── surface_texture_client_hybris.cpp │ └── surface_texture_client_hybris_priv.h ├── surface_flinger │ ├── Android.mk │ ├── direct_sf_test.cpp │ └── surface_flinger_compatibility_layer.cpp └── ui │ ├── Android.mk │ └── ui_compatibility_layer.cpp ├── debian ├── .gitlab-ci.yml ├── changelog ├── compat ├── control ├── copyright ├── getprop.1 ├── libandroid-properties-dev.install ├── libandroid-properties1.install ├── libhardware-dev.install ├── libhardware2.install ├── libhybris-common-dev.install ├── libhybris-common1.install ├── libhybris-dev.install ├── libhybris-test.install ├── libhybris-utils.install ├── libhybris-utils.manpages ├── libhybris-vulkan.install ├── libhybris-vulkan.postinst ├── libhybris-vulkan.postrm ├── libhybris.install ├── libhybris.links ├── libmedia-dev.install ├── libmedia1.install ├── not-installed ├── patches │ ├── env_hybris_ld_shim_libs.patch │ └── series ├── rules ├── setprop.1 └── source │ └── format ├── hybris ├── AUTHORS ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── camera │ ├── Makefile.am │ ├── camera.c │ └── libcamera.pc.in ├── common │ ├── Makefile.am │ ├── dso_handle_counters.cpp │ ├── dso_handle_counters.h │ ├── hooks.c │ ├── hooks │ │ ├── atexit.cpp │ │ └── atexit.h │ ├── hooks_shm.c │ ├── hooks_shm.h │ ├── jb │ │ ├── MODULE_LICENSE_APACHE2 │ │ ├── Makefile.am │ │ ├── NOTICE │ │ ├── README.TXT │ │ ├── debugger.c │ │ ├── dlfcn.c │ │ ├── linker.c │ │ ├── linker.h │ │ ├── linker_debug.h │ │ ├── linker_environ.c │ │ ├── linker_environ.h │ │ ├── linker_format.c │ │ ├── linker_format.h │ │ └── rt.c │ ├── legacy_properties │ │ ├── cache.c │ │ ├── properties.c │ │ ├── properties_p.h │ │ └── runtime_cache.c │ ├── logging.c │ ├── logging.h │ ├── mm │ │ ├── MODULE_LICENSE_APACHE2 │ │ ├── Makefile.am │ │ ├── NOTICE │ │ ├── bionic │ │ │ └── libc │ │ │ │ ├── bionic │ │ │ │ └── pthread_internal.h │ │ │ │ ├── include │ │ │ │ ├── android │ │ │ │ │ ├── api-level.h │ │ │ │ │ └── dlext.h │ │ │ │ └── link.h │ │ │ │ └── private │ │ │ │ ├── ErrnoRestorer.h │ │ │ │ ├── KernelArgumentBlock.h │ │ │ │ ├── NetdClientDispatch.h │ │ │ │ ├── ScopeGuard.h │ │ │ │ ├── ScopedPthreadMutexLocker.h │ │ │ │ ├── ScopedReaddir.h │ │ │ │ ├── ThreadLocalBuffer.h │ │ │ │ ├── UniquePtr.h │ │ │ │ ├── __get_tls.h │ │ │ │ ├── bionic_asm.h │ │ │ │ ├── bionic_auxv.h │ │ │ │ ├── bionic_config.h │ │ │ │ ├── bionic_constants.h │ │ │ │ ├── bionic_futex.h │ │ │ │ ├── bionic_lock.h │ │ │ │ ├── bionic_macros.h │ │ │ │ ├── bionic_mbstate.h │ │ │ │ ├── bionic_prctl.h │ │ │ │ ├── bionic_ssp.h │ │ │ │ ├── bionic_string_utils.h │ │ │ │ ├── bionic_systrace.h │ │ │ │ ├── bionic_time.h │ │ │ │ ├── bionic_time_conversions.h │ │ │ │ ├── bionic_tls.h │ │ │ │ ├── kernel_sigset_t.h │ │ │ │ ├── libc_events.h │ │ │ │ ├── libc_logging.h │ │ │ │ └── thread_private.h │ │ ├── dlfcn.cpp │ │ ├── hybris_compat.cpp │ │ ├── hybris_compat.h │ │ ├── linked_list.h │ │ ├── linker.cpp │ │ ├── linker.h │ │ ├── linker_allocator.cpp │ │ ├── linker_allocator.h │ │ ├── linker_block_allocator.cpp │ │ ├── linker_block_allocator.h │ │ ├── linker_debug.h │ │ ├── linker_libc_support.c │ │ ├── linker_memory.cpp │ │ ├── linker_phdr.cpp │ │ ├── linker_phdr.h │ │ ├── linker_reloc_iterators.h │ │ ├── linker_relocs.h │ │ ├── linker_sdk_versions.cpp │ │ ├── linker_sleb128.h │ │ └── rt.cpp │ ├── n │ │ ├── MODULE_LICENSE_APACHE2 │ │ ├── Makefile.am │ │ ├── NOTICE │ │ ├── bionic │ │ │ └── libc │ │ │ │ ├── bionic │ │ │ │ └── pthread_internal.h │ │ │ │ ├── include │ │ │ │ ├── android │ │ │ │ │ ├── api-level.h │ │ │ │ │ └── dlext.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── link.h │ │ │ │ └── stdatomic.h │ │ │ │ └── private │ │ │ │ ├── ErrnoRestorer.h │ │ │ │ ├── KernelArgumentBlock.h │ │ │ │ ├── NetdClientDispatch.h │ │ │ │ ├── ScopeGuard.h │ │ │ │ ├── ScopedPthreadMutexLocker.h │ │ │ │ ├── ScopedReaddir.h │ │ │ │ ├── ThreadLocalBuffer.h │ │ │ │ ├── UniquePtr.h │ │ │ │ ├── WriteProtected.h │ │ │ │ ├── __get_tls.h │ │ │ │ ├── bionic_asm.h │ │ │ │ ├── bionic_auxv.h │ │ │ │ ├── bionic_config.h │ │ │ │ ├── bionic_constants.h │ │ │ │ ├── bionic_futex.h │ │ │ │ ├── bionic_globals.h │ │ │ │ ├── bionic_lock.h │ │ │ │ ├── bionic_macros.h │ │ │ │ ├── bionic_malloc_dispatch.h │ │ │ │ ├── bionic_mbstate.h │ │ │ │ ├── bionic_page.h │ │ │ │ ├── bionic_prctl.h │ │ │ │ ├── bionic_sdk_version.h │ │ │ │ ├── bionic_ssp.h │ │ │ │ ├── bionic_string_utils.h │ │ │ │ ├── bionic_systrace.h │ │ │ │ ├── bionic_time.h │ │ │ │ ├── bionic_time_conversions.h │ │ │ │ ├── bionic_tls.h │ │ │ │ ├── bionic_vdso.h │ │ │ │ ├── get_cpu_count_from_string.h │ │ │ │ ├── kernel_sigset_t.h │ │ │ │ ├── libc_events.h │ │ │ │ ├── libc_logging.h │ │ │ │ └── thread_private.h │ │ ├── dlfcn.cpp │ │ ├── hybris_compat.cpp │ │ ├── hybris_compat.h │ │ ├── linked_list.h │ │ ├── linker.cpp │ │ ├── linker.h │ │ ├── linker_allocator.cpp │ │ ├── linker_allocator.h │ │ ├── linker_block_allocator.cpp │ │ ├── linker_block_allocator.h │ │ ├── linker_debug.h │ │ ├── linker_dlwarning.cpp │ │ ├── linker_dlwarning.h │ │ ├── linker_gdb_support.cpp │ │ ├── linker_gdb_support.h │ │ ├── linker_libc_support.c │ │ ├── linker_mapped_file_fragment.cpp │ │ ├── linker_mapped_file_fragment.h │ │ ├── linker_memory.cpp │ │ ├── linker_non_pie.cpp │ │ ├── linker_non_pie.h │ │ ├── linker_phdr.cpp │ │ ├── linker_phdr.h │ │ ├── linker_reloc_iterators.h │ │ ├── linker_relocs.h │ │ ├── linker_sdk_versions.cpp │ │ ├── linker_sleb128.h │ │ ├── linker_utils.cpp │ │ ├── linker_utils.h │ │ └── rt.cpp │ ├── native_handle.c │ ├── o │ │ ├── MODULE_LICENSE_BSD │ │ ├── Makefile.am │ │ ├── bionic │ │ │ └── libc │ │ │ │ ├── async_safe │ │ │ │ └── log.h │ │ │ │ ├── bionic │ │ │ │ └── pthread_internal.h │ │ │ │ ├── include │ │ │ │ ├── android-base │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── errors.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── logging.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── parsedouble.h │ │ │ │ │ ├── parseint.h │ │ │ │ │ ├── parsenetaddress.h │ │ │ │ │ ├── properties.h │ │ │ │ │ ├── quick_exit.h │ │ │ │ │ ├── scopeguard.h │ │ │ │ │ ├── stringprintf.h │ │ │ │ │ ├── strings.h │ │ │ │ │ ├── test_utils.h │ │ │ │ │ ├── thread_annotations.h │ │ │ │ │ ├── unique_fd.h │ │ │ │ │ └── utf8.h │ │ │ │ ├── android │ │ │ │ │ ├── api-level.h │ │ │ │ │ ├── dlext.h │ │ │ │ │ └── versioning.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── link.h │ │ │ │ ├── stdatomic.h │ │ │ │ └── sys │ │ │ │ │ ├── _system_properties.h │ │ │ │ │ └── system_properties.h │ │ │ │ └── private │ │ │ │ ├── CFIShadow.h │ │ │ │ ├── ErrnoRestorer.h │ │ │ │ ├── KernelArgumentBlock.h │ │ │ │ ├── NetdClientDispatch.h │ │ │ │ ├── ScopedPthreadMutexLocker.h │ │ │ │ ├── ScopedReaddir.h │ │ │ │ ├── WriteProtected.h │ │ │ │ ├── __get_tls.h │ │ │ │ ├── bionic_arc4random.h │ │ │ │ ├── bionic_asm.h │ │ │ │ ├── bionic_auxv.h │ │ │ │ ├── bionic_config.h │ │ │ │ ├── bionic_constants.h │ │ │ │ ├── bionic_errdefs.h │ │ │ │ ├── bionic_fortify.h │ │ │ │ ├── bionic_futex.h │ │ │ │ ├── bionic_globals.h │ │ │ │ ├── bionic_ieee.h │ │ │ │ ├── bionic_lock.h │ │ │ │ ├── bionic_macros.h │ │ │ │ ├── bionic_malloc_dispatch.h │ │ │ │ ├── bionic_mbstate.h │ │ │ │ ├── bionic_page.h │ │ │ │ ├── bionic_prctl.h │ │ │ │ ├── bionic_sdk_version.h │ │ │ │ ├── bionic_sigdefs.h │ │ │ │ ├── bionic_ssp.h │ │ │ │ ├── bionic_string_utils.h │ │ │ │ ├── bionic_systrace.h │ │ │ │ ├── bionic_time_conversions.h │ │ │ │ ├── bionic_tls.h │ │ │ │ ├── bionic_vdso.h │ │ │ │ ├── get_cpu_count_from_string.h │ │ │ │ ├── grp_pwd.h │ │ │ │ ├── icu.h │ │ │ │ ├── kernel_sigset_t.h │ │ │ │ └── thread_private.h │ │ ├── dlfcn.cpp │ │ ├── hybris_compat.cpp │ │ ├── hybris_compat.h │ │ ├── ld.config.format.md │ │ ├── linked_list.h │ │ ├── linker.cpp │ │ ├── linker.h │ │ ├── linker_allocator.cpp │ │ ├── linker_allocator.h │ │ ├── linker_block_allocator.cpp │ │ ├── linker_block_allocator.h │ │ ├── linker_cfi.cpp │ │ ├── linker_cfi.h │ │ ├── linker_common_types.h │ │ ├── linker_config.cpp │ │ ├── linker_config.h │ │ ├── linker_debug.h │ │ ├── linker_dlwarning.cpp │ │ ├── linker_dlwarning.h │ │ ├── linker_gdb_support.cpp │ │ ├── linker_gdb_support.h │ │ ├── linker_globals.cpp │ │ ├── linker_globals.h │ │ ├── linker_libc_support.c │ │ ├── linker_libcxx_support.cpp │ │ ├── linker_logger.cpp │ │ ├── linker_logger.h │ │ ├── linker_main.cpp │ │ ├── linker_main.h │ │ ├── linker_mapped_file_fragment.cpp │ │ ├── linker_mapped_file_fragment.h │ │ ├── linker_memory.cpp │ │ ├── linker_namespaces.cpp │ │ ├── linker_namespaces.h │ │ ├── linker_phdr.cpp │ │ ├── linker_phdr.h │ │ ├── linker_reloc_iterators.h │ │ ├── linker_relocs.h │ │ ├── linker_sdk_versions.cpp │ │ ├── linker_sleb128.h │ │ ├── linker_soinfo.cpp │ │ ├── linker_soinfo.h │ │ ├── linker_utils.cpp │ │ ├── linker_utils.h │ │ └── rt.cpp │ ├── q │ │ ├── MODULE_LICENSE_BSD │ │ ├── Makefile.am │ │ ├── bionic │ │ │ └── libc │ │ │ │ ├── async_safe │ │ │ │ ├── CHECK.h │ │ │ │ └── log.h │ │ │ │ ├── bionic │ │ │ │ ├── bionic_allocator.cpp │ │ │ │ ├── bionic_call_ifunc_resolver.cpp │ │ │ │ ├── bionic_elf_tls.cpp │ │ │ │ ├── libc_init_common.h │ │ │ │ ├── macros.h │ │ │ │ ├── page.h │ │ │ │ └── pthread_internal.h │ │ │ │ ├── include │ │ │ │ ├── android-base │ │ │ │ │ ├── chrono_utils.h │ │ │ │ │ ├── cmsg.h │ │ │ │ │ ├── collections.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── errors.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── logging.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── mapped_file.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── off64_t.h │ │ │ │ │ ├── parsedouble.h │ │ │ │ │ ├── parseint.h │ │ │ │ │ ├── parsenetaddress.h │ │ │ │ │ ├── properties.h │ │ │ │ │ ├── quick_exit.h │ │ │ │ │ ├── scopeguard.h │ │ │ │ │ ├── stringprintf.h │ │ │ │ │ ├── strings.h │ │ │ │ │ ├── test_utils.h │ │ │ │ │ ├── thread_annotations.h │ │ │ │ │ ├── threads.h │ │ │ │ │ ├── unique_fd.h │ │ │ │ │ └── utf8.h │ │ │ │ ├── android │ │ │ │ │ ├── api-level.h │ │ │ │ │ ├── dlext.h │ │ │ │ │ ├── fdsan.h │ │ │ │ │ └── versioning.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── link.h │ │ │ │ ├── stdatomic.h │ │ │ │ └── sys │ │ │ │ │ ├── _system_properties.h │ │ │ │ │ ├── cdefs-android.h │ │ │ │ │ ├── ifunc.h │ │ │ │ │ └── system_properties.h │ │ │ │ ├── platform │ │ │ │ └── bionic │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── page.h │ │ │ │ │ └── tls_defines.h │ │ │ │ └── private │ │ │ │ ├── CFIShadow.h │ │ │ │ ├── CachedProperty.h │ │ │ │ ├── ErrnoRestorer.h │ │ │ │ ├── FdPath.h │ │ │ │ ├── KernelArgumentBlock.h │ │ │ │ ├── MallocXmlElem.h │ │ │ │ ├── NetdClientDispatch.h │ │ │ │ ├── ScopedPthreadMutexLocker.h │ │ │ │ ├── ScopedRWLock.h │ │ │ │ ├── ScopedReaddir.h │ │ │ │ ├── ScopedSignalBlocker.h │ │ │ │ ├── ScopedSignalHandler.h │ │ │ │ ├── SigSetConverter.h │ │ │ │ ├── WriteProtected.h │ │ │ │ ├── __bionic_get_shell_path.h │ │ │ │ ├── __get_tls.h │ │ │ │ ├── bionic_allocator.h │ │ │ │ ├── bionic_arc4random.h │ │ │ │ ├── bionic_asm.h │ │ │ │ ├── bionic_asm_arm.h │ │ │ │ ├── bionic_asm_arm64.h │ │ │ │ ├── bionic_asm_mips.h │ │ │ │ ├── bionic_asm_tls.h │ │ │ │ ├── bionic_asm_x86.h │ │ │ │ ├── bionic_asm_x86_64.h │ │ │ │ ├── bionic_auxv.h │ │ │ │ ├── bionic_call_ifunc_resolver.h │ │ │ │ ├── bionic_config.h │ │ │ │ ├── bionic_constants.h │ │ │ │ ├── bionic_ctype.h │ │ │ │ ├── bionic_defs.h │ │ │ │ ├── bionic_elf_tls.h │ │ │ │ ├── bionic_errdefs.h │ │ │ │ ├── bionic_fdsan.h │ │ │ │ ├── bionic_fortify.h │ │ │ │ ├── bionic_futex.h │ │ │ │ ├── bionic_globals.h │ │ │ │ ├── bionic_ieee.h │ │ │ │ ├── bionic_inline_raise.h │ │ │ │ ├── bionic_lock.h │ │ │ │ ├── bionic_macros.h │ │ │ │ ├── bionic_malloc.h │ │ │ │ ├── bionic_malloc_dispatch.h │ │ │ │ ├── bionic_mbstate.h │ │ │ │ ├── bionic_page.h │ │ │ │ ├── bionic_prctl.h │ │ │ │ ├── bionic_sdk_version.h │ │ │ │ ├── bionic_sigdefs.h │ │ │ │ ├── bionic_ssp.h │ │ │ │ ├── bionic_string_utils.h │ │ │ │ ├── bionic_systrace.h │ │ │ │ ├── bionic_time_conversions.h │ │ │ │ ├── bionic_tls.h │ │ │ │ ├── bionic_vdso.h │ │ │ │ ├── get_cpu_count_from_string.h │ │ │ │ ├── grp_pwd.h │ │ │ │ ├── icu.h │ │ │ │ ├── kernel_sigset_t.h │ │ │ │ ├── linker_native_bridge.h │ │ │ │ ├── sigrtmin.h │ │ │ │ └── thread_private.h │ │ ├── bionic_elf_tls.cpp │ │ ├── dlfcn.cpp │ │ ├── hybris_compat.cpp │ │ ├── hybris_compat.h │ │ ├── ld.config.format.md │ │ ├── ld_android.cpp │ │ ├── linked_list.h │ │ ├── linked_list_test.cpp │ │ ├── linker.arm.map │ │ ├── linker.cpp │ │ ├── linker.generic.map │ │ ├── linker.h │ │ ├── linker_allocator.cpp │ │ ├── linker_allocator.h │ │ ├── linker_block_allocator.cpp │ │ ├── linker_block_allocator.h │ │ ├── linker_block_allocator_test.cpp │ │ ├── linker_cfi.cpp │ │ ├── linker_cfi.h │ │ ├── linker_common_types.h │ │ ├── linker_config.cpp │ │ ├── linker_config.h │ │ ├── linker_config_test.cpp │ │ ├── linker_debug.h │ │ ├── linker_dlwarning.cpp │ │ ├── linker_dlwarning.h │ │ ├── linker_exidx_static.c │ │ ├── linker_gdb_support.cpp │ │ ├── linker_gdb_support.h │ │ ├── linker_globals.cpp │ │ ├── linker_globals.h │ │ ├── linker_libc_support.c │ │ ├── linker_libcxx_support.cpp │ │ ├── linker_logger.cpp │ │ ├── linker_logger.h │ │ ├── linker_main.cpp │ │ ├── linker_main.h │ │ ├── linker_mapped_file_fragment.cpp │ │ ├── linker_mapped_file_fragment.h │ │ ├── linker_memory.cpp │ │ ├── linker_mips.cpp │ │ ├── linker_namespaces.cpp │ │ ├── linker_namespaces.h │ │ ├── linker_phdr.cpp │ │ ├── linker_phdr.h │ │ ├── linker_reloc_iterators.h │ │ ├── linker_relocs.h │ │ ├── linker_sdk_versions.cpp │ │ ├── linker_sleb128.h │ │ ├── linker_sleb128_test.cpp │ │ ├── linker_soinfo.cpp │ │ ├── linker_soinfo.h │ │ ├── linker_test_globals.cpp │ │ ├── linker_tls.cpp │ │ ├── linker_tls.h │ │ ├── linker_utils.cpp │ │ ├── linker_utils.h │ │ ├── linker_utils_test.cpp │ │ ├── linker_wrapper.cpp │ │ ├── make.txt │ │ ├── rt.cpp │ │ └── tlsdesc_resolver.S │ ├── strlcat.c │ ├── strlcpy.c │ ├── stub │ │ ├── Makefile.am │ │ └── linker.c │ ├── sysconf.c │ ├── wrapper_code.h │ ├── wrapper_code_generic_arm.c │ ├── wrappers.c │ └── wrappers.h ├── configure.ac ├── egl │ ├── Makefile.am │ ├── egl.c │ ├── egl.pc.in │ ├── eglhybris.h │ ├── glvnd │ │ ├── .gitignore │ │ ├── 10_libhybris.json.in │ │ ├── egldispatchstubs.c │ │ ├── egldispatchstubs.h │ │ ├── eglglvnd.cpp │ │ └── generate │ │ │ ├── egl.xml │ │ │ ├── eglFunctionList.py │ │ │ ├── egl_hybris.xml │ │ │ ├── egl_other.xml │ │ │ ├── genCommon.py │ │ │ ├── gen_egl_dispatch.py │ │ │ └── static_data.py │ ├── helper.cpp │ ├── helper.h │ ├── platforms │ │ ├── Makefile.am │ │ ├── common │ │ │ ├── Makefile.am │ │ │ ├── eglnativewindowbase.h │ │ │ ├── eglplatformcommon.cpp │ │ │ ├── eglplatformcommon.h │ │ │ ├── hybris-egl-platform.pc.in │ │ │ └── hybris_nativebufferext.h │ │ ├── fbdev │ │ │ ├── Makefile.am │ │ │ ├── eglplatform_fbdev.cpp │ │ │ ├── fbdev_window.cpp │ │ │ └── fbdev_window.h │ │ ├── hwcomposer │ │ │ ├── Makefile.am │ │ │ ├── eglplatform_hwcomposer.cpp │ │ │ ├── hwcomposer-egl.pc.in │ │ │ ├── hwcomposer.h │ │ │ ├── hwcomposer_window.cpp │ │ │ └── hwcomposer_window.h │ │ ├── null │ │ │ ├── Makefile.am │ │ │ └── eglplatform_null.c │ │ ├── wayland │ │ │ ├── Makefile.am │ │ │ ├── eglplatform_wayland.cpp │ │ │ ├── wayland_window.cpp │ │ │ └── wayland_window.h │ │ └── x11 │ │ │ ├── Makefile.am │ │ │ ├── eglplatform_x11.cpp │ │ │ ├── x11_window.cpp │ │ │ ├── x11_window.h │ │ │ ├── xcb_drihybris.c │ │ │ └── xcb_drihybris.h │ ├── ws.c │ └── ws.h ├── glesv1 │ ├── Makefile.am │ ├── glesv1_cm.c │ └── glesv1_cm.pc.in ├── glesv2 │ ├── Makefile.am │ ├── glesv2.c │ └── glesv2.pc.in ├── gralloc │ ├── GrallocUsageConversion.cpp │ ├── Makefile.am │ ├── gralloc.c │ └── libgralloc.pc.in ├── hardware │ ├── Makefile.am │ ├── hardware.c │ └── libhardware.pc.in ├── hwc2 │ ├── Makefile.am │ ├── hwc2.c │ └── libhwc2.pc.in ├── include │ ├── CL │ │ ├── cl.h │ │ ├── cl_d3d10.h │ │ ├── cl_d3d11.h │ │ ├── cl_dx9_media_sharing.h │ │ ├── cl_dx9_media_sharing_intel.h │ │ ├── cl_egl.h │ │ ├── cl_ext.h │ │ ├── cl_ext_intel.h │ │ ├── cl_gl.h │ │ ├── cl_gl_ext.h │ │ ├── cl_half.h │ │ ├── cl_icd.h │ │ ├── cl_layer.h │ │ ├── cl_platform.h │ │ ├── cl_va_api_media_sharing_intel.h │ │ ├── cl_version.h │ │ └── opencl.h │ ├── EGL │ │ ├── egl.h │ │ ├── eglext.h │ │ ├── eglmesaext.h │ │ └── eglplatform.h │ ├── GL │ │ ├── gl.h │ │ ├── glcorearb.h │ │ ├── glext.h │ │ ├── glx.h │ │ ├── glxext.h │ │ ├── internal │ │ │ └── dri_interface.h │ │ ├── mesa_glinterop.h │ │ ├── osmesa.h │ │ └── wglext.h │ ├── GLES │ │ ├── egl.h │ │ ├── gl.h │ │ ├── glext.h │ │ └── glplatform.h │ ├── GLES2 │ │ ├── gl2.h │ │ ├── gl2ext.h │ │ └── gl2platform.h │ ├── GLES3 │ │ ├── gl3.h │ │ ├── gl31.h │ │ ├── gl32.h │ │ └── gl3platform.h │ ├── KHR │ │ └── khrplatform.h │ ├── Makefile.am │ └── hybris │ │ ├── camera │ │ ├── camera_compatibility_layer.h │ │ ├── camera_compatibility_layer_capabilities.h │ │ └── camera_compatibility_layer_configuration_translator.h │ │ ├── common │ │ ├── binding.h │ │ ├── dlfcn.h │ │ ├── floating_point_abi.h │ │ └── hooks.h │ │ ├── dlfcn │ │ └── dlfcn.h │ │ ├── gralloc │ │ └── gralloc.h │ │ ├── grallocusage │ │ └── GrallocUsageConversion.h │ │ ├── hwc2 │ │ └── hwc2_compatibility_layer.h │ │ ├── input │ │ ├── input_stack_compatibility_layer.h │ │ ├── input_stack_compatibility_layer_codes_key.h │ │ ├── input_stack_compatibility_layer_flags.h │ │ ├── input_stack_compatibility_layer_flags_key.h │ │ └── input_stack_compatibility_layer_flags_motion.h │ │ ├── internal │ │ ├── camera_control.h │ │ └── surface_flinger_compatibility_layer_internal.h │ │ ├── media │ │ ├── decoding_service.h │ │ ├── media_buffer_layer.h │ │ ├── media_codec_layer.h │ │ ├── media_codec_list.h │ │ ├── media_codec_source_layer.h │ │ ├── media_compatibility_layer.h │ │ ├── media_format_layer.h │ │ ├── media_message_layer.h │ │ ├── media_meta_data_layer.h │ │ ├── media_recorder_layer.h │ │ ├── recorder_compatibility_layer.h │ │ └── surface_texture_client_hybris.h │ │ ├── properties │ │ └── properties.h │ │ ├── surface_flinger │ │ └── surface_flinger_compatibility_layer.h │ │ └── ui │ │ ├── ui.h │ │ └── ui_compatibility_layer.h ├── input │ ├── Makefile.am │ ├── is.c │ └── libis.pc.in ├── libnfc_ndef_nxp │ ├── Makefile.am │ ├── libnfc_ndef_nxp.c │ └── libnfc_ndef_nxp.pc.in ├── libnfc_nxp │ ├── Makefile.am │ ├── libnfc_nxp.c │ └── libnfc_nxp.pc.in ├── libsync │ ├── Makefile.am │ ├── hybris-sync.pc.in │ ├── libsync.pc.in │ ├── sync.c │ └── sync_test.c ├── media │ ├── Makefile.am │ ├── libmedia.pc.in │ └── media.c ├── opencl │ ├── Makefile.am │ ├── OpenCL.pc.in │ ├── libhybris.icd.in │ └── opencl.c ├── platforms │ ├── Makefile.am │ ├── common │ │ ├── Makefile.am │ │ ├── nativewindowbase.cpp │ │ ├── nativewindowbase.h │ │ ├── platformcommon.cpp │ │ ├── platformcommon.h │ │ ├── server_wlegl.cpp │ │ ├── server_wlegl.h │ │ ├── server_wlegl_buffer.cpp │ │ ├── server_wlegl_buffer.h │ │ ├── server_wlegl_handle.cpp │ │ ├── server_wlegl_handle.h │ │ ├── server_wlegl_private.h │ │ ├── support.h │ │ ├── wayland-android.xml │ │ ├── windowbuffer.cpp │ │ └── windowbuffer.h │ └── wayland │ │ └── wayland_window_common.cpp ├── properties │ ├── Makefile.am │ ├── hybris_properties.c │ └── libandroid-properties.pc.in ├── sf │ ├── Makefile.am │ ├── libsf.pc.in │ └── sf.c ├── tests │ ├── Makefile.am │ ├── test_audio.c │ ├── test_camera.cpp │ ├── test_common.cpp │ ├── test_common.h │ ├── test_dlopen.c │ ├── test_egl.cpp │ ├── test_egl_configs.c │ ├── test_glesv2.cpp │ ├── test_glesv3.cpp │ ├── test_gps.c │ ├── test_hwcomposer.cpp │ ├── test_input.c │ ├── test_lights.c │ ├── test_media.cpp │ ├── test_nfc.c │ ├── test_opencl.c │ ├── test_recorder.cpp │ ├── test_sensors.c │ ├── test_sf.cpp │ ├── test_ui.c │ ├── test_vibrator.c │ ├── test_vulkan.cpp │ └── test_wifi.c ├── ui │ ├── Makefile.am │ └── ui.c ├── utils │ ├── Makefile.am │ ├── getprop.c │ └── setprop.c ├── vibrator │ ├── Makefile.am │ ├── libvibrator.pc.in │ └── vibrator.c ├── vulkan │ ├── Makefile.am │ ├── platforms │ │ ├── Makefile.am │ │ ├── common │ │ │ ├── Makefile.am │ │ │ ├── vulkanplatformcommon.cpp │ │ │ └── vulkanplatformcommon.h │ │ ├── null │ │ │ ├── Makefile.am │ │ │ └── vulkanplatform_null.c │ │ └── wayland │ │ │ ├── Makefile.am │ │ │ ├── vulkanplatform_wayland.cpp │ │ │ ├── wayland_window.cpp │ │ │ └── wayland_window.h │ ├── vulkan.c │ ├── vulkanhybris.h │ ├── ws.c │ └── ws.h └── wifi │ ├── Makefile.am │ ├── libwifi.pc.in │ └── wifi.c └── utils ├── extract-headers.sh ├── generate_glesv1 ├── README ├── generate_wrappers.py ├── glesv1_build_wrapper.sh ├── glesv1_cm_list_symbols.sh ├── glesv1_cproto_prepare.sh └── glesv1_cproto_template.h ├── generate_nfc ├── README ├── README.android-src ├── generate.sh ├── generate_wrappers.py ├── linux │ ├── README │ └── pn544.h └── symbols │ ├── README │ ├── libnfc.so.txt │ └── libnfc_ndef.so.txt ├── generate_wrapper_macros.py ├── load_sym_files.py └── travis-build.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.Apache2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/LICENSE.Apache2 -------------------------------------------------------------------------------- /LICENSE.BSD-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/LICENSE.BSD-2 -------------------------------------------------------------------------------- /LICENSE.BSD-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/LICENSE.BSD-3 -------------------------------------------------------------------------------- /LICENSE.BSD-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/LICENSE.BSD-4 -------------------------------------------------------------------------------- /LICENSE.GPL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/LICENSE.GPL3 -------------------------------------------------------------------------------- /LICENSE.ISC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/LICENSE.ISC -------------------------------------------------------------------------------- /LICENSE.LGPLv21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/LICENSE.LGPLv21 -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /compat/Android.common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/Android.common.mk -------------------------------------------------------------------------------- /compat/apphwc/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/apphwc/Android.bp -------------------------------------------------------------------------------- /compat/apphwc/hwc2_compatibility_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/apphwc/hwc2_compatibility_layer.cpp -------------------------------------------------------------------------------- /compat/apphwc/hwc2_compatibility_layer.h: -------------------------------------------------------------------------------- 1 | ../../../libhybris/hybris/include/hybris/hwc2/hwc2_compatibility_layer.h -------------------------------------------------------------------------------- /compat/camera/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/camera/Android.mk -------------------------------------------------------------------------------- /compat/camera/camera_compatibility_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/camera/camera_compatibility_layer.cpp -------------------------------------------------------------------------------- /compat/camera/direct_camera_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/camera/direct_camera_test.cpp -------------------------------------------------------------------------------- /compat/hwc2/AidlComposerHal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/AidlComposerHal.cpp -------------------------------------------------------------------------------- /compat/hwc2/AidlComposerHal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/AidlComposerHal.h -------------------------------------------------------------------------------- /compat/hwc2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/Android.mk -------------------------------------------------------------------------------- /compat/hwc2/ComposerHal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/ComposerHal.cpp -------------------------------------------------------------------------------- /compat/hwc2/ComposerHal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/ComposerHal.h -------------------------------------------------------------------------------- /compat/hwc2/GrallocUsageConversion.cpp: -------------------------------------------------------------------------------- 1 | ../../hybris/gralloc/GrallocUsageConversion.cpp -------------------------------------------------------------------------------- /compat/hwc2/HWC2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/HWC2.cpp -------------------------------------------------------------------------------- /compat/hwc2/HWC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/HWC2.h -------------------------------------------------------------------------------- /compat/hwc2/Hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/Hal.h -------------------------------------------------------------------------------- /compat/hwc2/HidlComposerHal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/HidlComposerHal.cpp -------------------------------------------------------------------------------- /compat/hwc2/HidlComposerHal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/HidlComposerHal.h -------------------------------------------------------------------------------- /compat/hwc2/hwc2_compatibility_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/hwc2_compatibility_layer.cpp -------------------------------------------------------------------------------- /compat/hwc2/hwc2_compatibility_layer.h: -------------------------------------------------------------------------------- 1 | ../../../libhybris/hybris/include/hybris/hwc2/hwc2_compatibility_layer.h -------------------------------------------------------------------------------- /compat/hwc2/hybris/grallocusage/GrallocUsageConversion.h: -------------------------------------------------------------------------------- 1 | ../../../../../libhybris/hybris/include/hybris/grallocusage/GrallocUsageConversion.h -------------------------------------------------------------------------------- /compat/hwc2/tests/direct_hwc2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/tests/direct_hwc2_test.cpp -------------------------------------------------------------------------------- /compat/hwc2/tests/eglnativewindowbase.h: -------------------------------------------------------------------------------- 1 | ../../../hybris/egl/platforms/common/eglnativewindowbase.h -------------------------------------------------------------------------------- /compat/hwc2/tests/hwcomposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/tests/hwcomposer.h -------------------------------------------------------------------------------- /compat/hwc2/tests/hwcomposer_window.cpp: -------------------------------------------------------------------------------- 1 | ../../../../libhybris/hybris/egl/platforms/hwcomposer/hwcomposer_window.cpp -------------------------------------------------------------------------------- /compat/hwc2/tests/hwcomposer_window.h: -------------------------------------------------------------------------------- 1 | ../../../../libhybris/hybris/egl/platforms/hwcomposer/hwcomposer_window.h -------------------------------------------------------------------------------- /compat/hwc2/tests/hybris-gralloc.c: -------------------------------------------------------------------------------- 1 | ../../../hybris/gralloc/gralloc.c -------------------------------------------------------------------------------- /compat/hwc2/tests/hybris-gralloc.h: -------------------------------------------------------------------------------- 1 | ../../../hybris/include/hybris/gralloc/gralloc.h -------------------------------------------------------------------------------- /compat/hwc2/tests/nativewindowbase.cpp: -------------------------------------------------------------------------------- 1 | ../../../hybris/platforms/common/nativewindowbase.cpp -------------------------------------------------------------------------------- /compat/hwc2/tests/nativewindowbase.h: -------------------------------------------------------------------------------- 1 | ../../../hybris/platforms/common/nativewindowbase.h -------------------------------------------------------------------------------- /compat/hwc2/tests/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/hwc2/tests/support.h -------------------------------------------------------------------------------- /compat/input/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/input/Android.mk -------------------------------------------------------------------------------- /compat/input/direct_input_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/input/direct_input_test.cpp -------------------------------------------------------------------------------- /compat/input/input_compatibility_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/input/input_compatibility_layer.cpp -------------------------------------------------------------------------------- /compat/media/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/Android.mk -------------------------------------------------------------------------------- /compat/media/SimplePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/SimplePlayer.cpp -------------------------------------------------------------------------------- /compat/media/SimplePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/SimplePlayer.h -------------------------------------------------------------------------------- /compat/media/camera_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/camera_service.cpp -------------------------------------------------------------------------------- /compat/media/camera_service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/camera_service.rc -------------------------------------------------------------------------------- /compat/media/codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/codec.cpp -------------------------------------------------------------------------------- /compat/media/decoding_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/decoding_service.cpp -------------------------------------------------------------------------------- /compat/media/decoding_service_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/decoding_service_priv.h -------------------------------------------------------------------------------- /compat/media/direct_media_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/direct_media_test.cpp -------------------------------------------------------------------------------- /compat/media/direct_media_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/direct_media_test.h -------------------------------------------------------------------------------- /compat/media/media_buffer_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_buffer_layer.cpp -------------------------------------------------------------------------------- /compat/media/media_buffer_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_buffer_priv.h -------------------------------------------------------------------------------- /compat/media/media_codec_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_codec_layer.cpp -------------------------------------------------------------------------------- /compat/media/media_codec_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_codec_list.cpp -------------------------------------------------------------------------------- /compat/media/media_codec_source_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_codec_source_layer.cpp -------------------------------------------------------------------------------- /compat/media/media_compatibility_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_compatibility_layer.cpp -------------------------------------------------------------------------------- /compat/media/media_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_core.cpp -------------------------------------------------------------------------------- /compat/media/media_format_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_format_layer.cpp -------------------------------------------------------------------------------- /compat/media/media_format_layer_priv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_format_layer_priv.cpp -------------------------------------------------------------------------------- /compat/media/media_format_layer_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_format_layer_priv.h -------------------------------------------------------------------------------- /compat/media/media_message_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_message_layer.cpp -------------------------------------------------------------------------------- /compat/media/media_message_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_message_priv.h -------------------------------------------------------------------------------- /compat/media/media_meta_data_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_meta_data_layer.cpp -------------------------------------------------------------------------------- /compat/media/media_meta_data_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_meta_data_priv.h -------------------------------------------------------------------------------- /compat/media/media_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_recorder.cpp -------------------------------------------------------------------------------- /compat/media/media_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_recorder.h -------------------------------------------------------------------------------- /compat/media/media_recorder_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_recorder_client.cpp -------------------------------------------------------------------------------- /compat/media/media_recorder_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_recorder_client.h -------------------------------------------------------------------------------- /compat/media/media_recorder_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_recorder_factory.cpp -------------------------------------------------------------------------------- /compat/media/media_recorder_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_recorder_factory.h -------------------------------------------------------------------------------- /compat/media/media_recorder_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_recorder_layer.cpp -------------------------------------------------------------------------------- /compat/media/media_recorder_observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_recorder_observer.cpp -------------------------------------------------------------------------------- /compat/media/media_recorder_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/media_recorder_observer.h -------------------------------------------------------------------------------- /compat/media/micshm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/micshm.sh -------------------------------------------------------------------------------- /compat/media/surface_texture_client_hybris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/surface_texture_client_hybris.cpp -------------------------------------------------------------------------------- /compat/media/surface_texture_client_hybris_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/media/surface_texture_client_hybris_priv.h -------------------------------------------------------------------------------- /compat/surface_flinger/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/surface_flinger/Android.mk -------------------------------------------------------------------------------- /compat/surface_flinger/direct_sf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/surface_flinger/direct_sf_test.cpp -------------------------------------------------------------------------------- /compat/surface_flinger/surface_flinger_compatibility_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/surface_flinger/surface_flinger_compatibility_layer.cpp -------------------------------------------------------------------------------- /compat/ui/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/ui/Android.mk -------------------------------------------------------------------------------- /compat/ui/ui_compatibility_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/compat/ui/ui_compatibility_layer.cpp -------------------------------------------------------------------------------- /debian/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/.gitlab-ci.yml -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/getprop.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/getprop.1 -------------------------------------------------------------------------------- /debian/libandroid-properties-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libandroid-properties-dev.install -------------------------------------------------------------------------------- /debian/libandroid-properties1.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libandroid-properties1.install -------------------------------------------------------------------------------- /debian/libhardware-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhardware-dev.install -------------------------------------------------------------------------------- /debian/libhardware2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhardware2.install -------------------------------------------------------------------------------- /debian/libhybris-common-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhybris-common-dev.install -------------------------------------------------------------------------------- /debian/libhybris-common1.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhybris-common1.install -------------------------------------------------------------------------------- /debian/libhybris-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhybris-dev.install -------------------------------------------------------------------------------- /debian/libhybris-test.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhybris-test.install -------------------------------------------------------------------------------- /debian/libhybris-utils.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhybris-utils.install -------------------------------------------------------------------------------- /debian/libhybris-utils.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhybris-utils.manpages -------------------------------------------------------------------------------- /debian/libhybris-vulkan.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhybris-vulkan.install -------------------------------------------------------------------------------- /debian/libhybris-vulkan.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhybris-vulkan.postinst -------------------------------------------------------------------------------- /debian/libhybris-vulkan.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhybris-vulkan.postrm -------------------------------------------------------------------------------- /debian/libhybris.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhybris.install -------------------------------------------------------------------------------- /debian/libhybris.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libhybris.links -------------------------------------------------------------------------------- /debian/libmedia-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libmedia-dev.install -------------------------------------------------------------------------------- /debian/libmedia1.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/libmedia1.install -------------------------------------------------------------------------------- /debian/not-installed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/not-installed -------------------------------------------------------------------------------- /debian/patches/env_hybris_ld_shim_libs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/patches/env_hybris_ld_shim_libs.patch -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | env_hybris_ld_shim_libs.patch 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/setprop.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/debian/setprop.1 -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /hybris/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/AUTHORS -------------------------------------------------------------------------------- /hybris/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/Makefile.am -------------------------------------------------------------------------------- /hybris/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/README -------------------------------------------------------------------------------- /hybris/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/autogen.sh -------------------------------------------------------------------------------- /hybris/camera/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/camera/Makefile.am -------------------------------------------------------------------------------- /hybris/camera/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/camera/camera.c -------------------------------------------------------------------------------- /hybris/camera/libcamera.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/camera/libcamera.pc.in -------------------------------------------------------------------------------- /hybris/common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/Makefile.am -------------------------------------------------------------------------------- /hybris/common/dso_handle_counters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/dso_handle_counters.cpp -------------------------------------------------------------------------------- /hybris/common/dso_handle_counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/dso_handle_counters.h -------------------------------------------------------------------------------- /hybris/common/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/hooks.c -------------------------------------------------------------------------------- /hybris/common/hooks/atexit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/hooks/atexit.cpp -------------------------------------------------------------------------------- /hybris/common/hooks/atexit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/hooks/atexit.h -------------------------------------------------------------------------------- /hybris/common/hooks_shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/hooks_shm.c -------------------------------------------------------------------------------- /hybris/common/hooks_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/hooks_shm.h -------------------------------------------------------------------------------- /hybris/common/jb/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/common/jb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/Makefile.am -------------------------------------------------------------------------------- /hybris/common/jb/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/NOTICE -------------------------------------------------------------------------------- /hybris/common/jb/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/README.TXT -------------------------------------------------------------------------------- /hybris/common/jb/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/debugger.c -------------------------------------------------------------------------------- /hybris/common/jb/dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/dlfcn.c -------------------------------------------------------------------------------- /hybris/common/jb/linker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/linker.c -------------------------------------------------------------------------------- /hybris/common/jb/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/linker.h -------------------------------------------------------------------------------- /hybris/common/jb/linker_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/linker_debug.h -------------------------------------------------------------------------------- /hybris/common/jb/linker_environ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/linker_environ.c -------------------------------------------------------------------------------- /hybris/common/jb/linker_environ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/linker_environ.h -------------------------------------------------------------------------------- /hybris/common/jb/linker_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/linker_format.c -------------------------------------------------------------------------------- /hybris/common/jb/linker_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/linker_format.h -------------------------------------------------------------------------------- /hybris/common/jb/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/jb/rt.c -------------------------------------------------------------------------------- /hybris/common/legacy_properties/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/legacy_properties/cache.c -------------------------------------------------------------------------------- /hybris/common/legacy_properties/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/legacy_properties/properties.c -------------------------------------------------------------------------------- /hybris/common/legacy_properties/properties_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/legacy_properties/properties_p.h -------------------------------------------------------------------------------- /hybris/common/legacy_properties/runtime_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/legacy_properties/runtime_cache.c -------------------------------------------------------------------------------- /hybris/common/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/logging.c -------------------------------------------------------------------------------- /hybris/common/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/logging.h -------------------------------------------------------------------------------- /hybris/common/mm/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/common/mm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/Makefile.am -------------------------------------------------------------------------------- /hybris/common/mm/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/NOTICE -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/bionic/pthread_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/bionic/pthread_internal.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/include/android/api-level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/include/android/api-level.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/include/android/dlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/include/android/dlext.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/include/link.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/ErrnoRestorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/ErrnoRestorer.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/KernelArgumentBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/KernelArgumentBlock.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/NetdClientDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/NetdClientDispatch.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/ScopeGuard.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/ScopedPthreadMutexLocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/ScopedPthreadMutexLocker.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/ScopedReaddir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/ScopedReaddir.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/ThreadLocalBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/ThreadLocalBuffer.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/UniquePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/UniquePtr.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/__get_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/__get_tls.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_asm.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_auxv.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_config.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_constants.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_futex.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_lock.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_macros.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_mbstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_mbstate.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_prctl.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_ssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_ssp.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_string_utils.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_systrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_systrace.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_time.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_time_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_time_conversions.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/bionic_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/bionic_tls.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/kernel_sigset_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/kernel_sigset_t.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/libc_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/libc_events.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/libc_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/libc_logging.h -------------------------------------------------------------------------------- /hybris/common/mm/bionic/libc/private/thread_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/bionic/libc/private/thread_private.h -------------------------------------------------------------------------------- /hybris/common/mm/dlfcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/dlfcn.cpp -------------------------------------------------------------------------------- /hybris/common/mm/hybris_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/hybris_compat.cpp -------------------------------------------------------------------------------- /hybris/common/mm/hybris_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/hybris_compat.h -------------------------------------------------------------------------------- /hybris/common/mm/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linked_list.h -------------------------------------------------------------------------------- /hybris/common/mm/linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker.cpp -------------------------------------------------------------------------------- /hybris/common/mm/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker.h -------------------------------------------------------------------------------- /hybris/common/mm/linker_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_allocator.cpp -------------------------------------------------------------------------------- /hybris/common/mm/linker_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_allocator.h -------------------------------------------------------------------------------- /hybris/common/mm/linker_block_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_block_allocator.cpp -------------------------------------------------------------------------------- /hybris/common/mm/linker_block_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_block_allocator.h -------------------------------------------------------------------------------- /hybris/common/mm/linker_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_debug.h -------------------------------------------------------------------------------- /hybris/common/mm/linker_libc_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_libc_support.c -------------------------------------------------------------------------------- /hybris/common/mm/linker_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_memory.cpp -------------------------------------------------------------------------------- /hybris/common/mm/linker_phdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_phdr.cpp -------------------------------------------------------------------------------- /hybris/common/mm/linker_phdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_phdr.h -------------------------------------------------------------------------------- /hybris/common/mm/linker_reloc_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_reloc_iterators.h -------------------------------------------------------------------------------- /hybris/common/mm/linker_relocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_relocs.h -------------------------------------------------------------------------------- /hybris/common/mm/linker_sdk_versions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_sdk_versions.cpp -------------------------------------------------------------------------------- /hybris/common/mm/linker_sleb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/linker_sleb128.h -------------------------------------------------------------------------------- /hybris/common/mm/rt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/mm/rt.cpp -------------------------------------------------------------------------------- /hybris/common/n/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/common/n/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/Makefile.am -------------------------------------------------------------------------------- /hybris/common/n/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/NOTICE -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/bionic/pthread_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/bionic/pthread_internal.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/include/android/api-level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/include/android/api-level.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/include/android/dlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/include/android/dlext.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/include/dlfcn.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/include/link.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/include/stdatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/include/stdatomic.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/ErrnoRestorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/ErrnoRestorer.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/KernelArgumentBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/KernelArgumentBlock.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/NetdClientDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/NetdClientDispatch.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/ScopeGuard.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/ScopedPthreadMutexLocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/ScopedPthreadMutexLocker.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/ScopedReaddir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/ScopedReaddir.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/ThreadLocalBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/ThreadLocalBuffer.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/UniquePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/UniquePtr.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/WriteProtected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/WriteProtected.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/__get_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/__get_tls.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_asm.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_auxv.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_config.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_constants.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_futex.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_globals.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_lock.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_macros.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_malloc_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_malloc_dispatch.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_mbstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_mbstate.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_page.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_prctl.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_sdk_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_sdk_version.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_ssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_ssp.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_string_utils.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_systrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_systrace.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_time.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_time_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_time_conversions.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_tls.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/bionic_vdso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/bionic_vdso.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/get_cpu_count_from_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/get_cpu_count_from_string.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/kernel_sigset_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/kernel_sigset_t.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/libc_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/libc_events.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/libc_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/libc_logging.h -------------------------------------------------------------------------------- /hybris/common/n/bionic/libc/private/thread_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/bionic/libc/private/thread_private.h -------------------------------------------------------------------------------- /hybris/common/n/dlfcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/dlfcn.cpp -------------------------------------------------------------------------------- /hybris/common/n/hybris_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/hybris_compat.cpp -------------------------------------------------------------------------------- /hybris/common/n/hybris_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/hybris_compat.h -------------------------------------------------------------------------------- /hybris/common/n/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linked_list.h -------------------------------------------------------------------------------- /hybris/common/n/linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker.cpp -------------------------------------------------------------------------------- /hybris/common/n/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker.h -------------------------------------------------------------------------------- /hybris/common/n/linker_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_allocator.cpp -------------------------------------------------------------------------------- /hybris/common/n/linker_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_allocator.h -------------------------------------------------------------------------------- /hybris/common/n/linker_block_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_block_allocator.cpp -------------------------------------------------------------------------------- /hybris/common/n/linker_block_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_block_allocator.h -------------------------------------------------------------------------------- /hybris/common/n/linker_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_debug.h -------------------------------------------------------------------------------- /hybris/common/n/linker_dlwarning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_dlwarning.cpp -------------------------------------------------------------------------------- /hybris/common/n/linker_dlwarning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_dlwarning.h -------------------------------------------------------------------------------- /hybris/common/n/linker_gdb_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_gdb_support.cpp -------------------------------------------------------------------------------- /hybris/common/n/linker_gdb_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_gdb_support.h -------------------------------------------------------------------------------- /hybris/common/n/linker_libc_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_libc_support.c -------------------------------------------------------------------------------- /hybris/common/n/linker_mapped_file_fragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_mapped_file_fragment.cpp -------------------------------------------------------------------------------- /hybris/common/n/linker_mapped_file_fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_mapped_file_fragment.h -------------------------------------------------------------------------------- /hybris/common/n/linker_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_memory.cpp -------------------------------------------------------------------------------- /hybris/common/n/linker_non_pie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_non_pie.cpp -------------------------------------------------------------------------------- /hybris/common/n/linker_non_pie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_non_pie.h -------------------------------------------------------------------------------- /hybris/common/n/linker_phdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_phdr.cpp -------------------------------------------------------------------------------- /hybris/common/n/linker_phdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_phdr.h -------------------------------------------------------------------------------- /hybris/common/n/linker_reloc_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_reloc_iterators.h -------------------------------------------------------------------------------- /hybris/common/n/linker_relocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_relocs.h -------------------------------------------------------------------------------- /hybris/common/n/linker_sdk_versions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_sdk_versions.cpp -------------------------------------------------------------------------------- /hybris/common/n/linker_sleb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_sleb128.h -------------------------------------------------------------------------------- /hybris/common/n/linker_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_utils.cpp -------------------------------------------------------------------------------- /hybris/common/n/linker_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/linker_utils.h -------------------------------------------------------------------------------- /hybris/common/n/rt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/n/rt.cpp -------------------------------------------------------------------------------- /hybris/common/native_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/native_handle.c -------------------------------------------------------------------------------- /hybris/common/o/MODULE_LICENSE_BSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/common/o/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/Makefile.am -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/async_safe/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/async_safe/log.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/bionic/pthread_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/bionic/pthread_internal.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/endian.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/errors.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/file.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/logging.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/macros.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/memory.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/parsedouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/parsedouble.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/parseint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/parseint.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/properties.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/quick_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/quick_exit.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/scopeguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/scopeguard.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/stringprintf.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/strings.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/test_utils.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/unique_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/unique_fd.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android-base/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android-base/utf8.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android/api-level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android/api-level.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android/dlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android/dlext.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/android/versioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/android/versioning.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/dlfcn.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/link.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/stdatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/stdatomic.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/sys/_system_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/sys/_system_properties.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/include/sys/system_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/include/sys/system_properties.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/CFIShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/CFIShadow.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/ErrnoRestorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/ErrnoRestorer.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/KernelArgumentBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/KernelArgumentBlock.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/NetdClientDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/NetdClientDispatch.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/ScopedReaddir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/ScopedReaddir.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/WriteProtected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/WriteProtected.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/__get_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/__get_tls.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_arc4random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_arc4random.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_asm.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_auxv.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_config.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_constants.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_errdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_errdefs.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_fortify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_fortify.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_futex.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_globals.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_ieee.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_lock.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_macros.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_malloc_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_malloc_dispatch.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_mbstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_mbstate.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_page.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_prctl.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_sdk_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_sdk_version.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_sigdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_sigdefs.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_ssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_ssp.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_string_utils.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_systrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_systrace.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_time_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_time_conversions.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_tls.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/bionic_vdso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/bionic_vdso.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/grp_pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/grp_pwd.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/icu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/icu.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/kernel_sigset_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/kernel_sigset_t.h -------------------------------------------------------------------------------- /hybris/common/o/bionic/libc/private/thread_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/bionic/libc/private/thread_private.h -------------------------------------------------------------------------------- /hybris/common/o/dlfcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/dlfcn.cpp -------------------------------------------------------------------------------- /hybris/common/o/hybris_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/hybris_compat.cpp -------------------------------------------------------------------------------- /hybris/common/o/hybris_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/hybris_compat.h -------------------------------------------------------------------------------- /hybris/common/o/ld.config.format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/ld.config.format.md -------------------------------------------------------------------------------- /hybris/common/o/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linked_list.h -------------------------------------------------------------------------------- /hybris/common/o/linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker.h -------------------------------------------------------------------------------- /hybris/common/o/linker_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_allocator.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_allocator.h -------------------------------------------------------------------------------- /hybris/common/o/linker_block_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_block_allocator.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_block_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_block_allocator.h -------------------------------------------------------------------------------- /hybris/common/o/linker_cfi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_cfi.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_cfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_cfi.h -------------------------------------------------------------------------------- /hybris/common/o/linker_common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_common_types.h -------------------------------------------------------------------------------- /hybris/common/o/linker_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_config.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_config.h -------------------------------------------------------------------------------- /hybris/common/o/linker_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_debug.h -------------------------------------------------------------------------------- /hybris/common/o/linker_dlwarning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_dlwarning.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_dlwarning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_dlwarning.h -------------------------------------------------------------------------------- /hybris/common/o/linker_gdb_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_gdb_support.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_gdb_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_gdb_support.h -------------------------------------------------------------------------------- /hybris/common/o/linker_globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_globals.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_globals.h -------------------------------------------------------------------------------- /hybris/common/o/linker_libc_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_libc_support.c -------------------------------------------------------------------------------- /hybris/common/o/linker_libcxx_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_libcxx_support.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_logger.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_logger.h -------------------------------------------------------------------------------- /hybris/common/o/linker_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_main.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_main.h -------------------------------------------------------------------------------- /hybris/common/o/linker_mapped_file_fragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_mapped_file_fragment.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_mapped_file_fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_mapped_file_fragment.h -------------------------------------------------------------------------------- /hybris/common/o/linker_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_memory.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_namespaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_namespaces.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_namespaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_namespaces.h -------------------------------------------------------------------------------- /hybris/common/o/linker_phdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_phdr.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_phdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_phdr.h -------------------------------------------------------------------------------- /hybris/common/o/linker_reloc_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_reloc_iterators.h -------------------------------------------------------------------------------- /hybris/common/o/linker_relocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_relocs.h -------------------------------------------------------------------------------- /hybris/common/o/linker_sdk_versions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_sdk_versions.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_sleb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_sleb128.h -------------------------------------------------------------------------------- /hybris/common/o/linker_soinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_soinfo.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_soinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_soinfo.h -------------------------------------------------------------------------------- /hybris/common/o/linker_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_utils.cpp -------------------------------------------------------------------------------- /hybris/common/o/linker_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/linker_utils.h -------------------------------------------------------------------------------- /hybris/common/o/rt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/o/rt.cpp -------------------------------------------------------------------------------- /hybris/common/q/MODULE_LICENSE_BSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/common/q/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/Makefile.am -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/async_safe/CHECK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/async_safe/CHECK.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/async_safe/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/async_safe/log.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/bionic/bionic_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/bionic/bionic_allocator.cpp -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/bionic/bionic_elf_tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/bionic/bionic_elf_tls.cpp -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/bionic/libc_init_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/bionic/libc_init_common.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/bionic/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/bionic/macros.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/bionic/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/bionic/page.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/bionic/pthread_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/bionic/pthread_internal.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/cmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/cmsg.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/endian.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/errors.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/file.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/logging.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/macros.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/memory.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/off64_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/off64_t.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/parseint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/parseint.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/properties.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/quick_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/quick_exit.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/scopeguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/scopeguard.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/strings.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/test_utils.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/threads.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/unique_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/unique_fd.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android-base/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android-base/utf8.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android/api-level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android/api-level.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android/dlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android/dlext.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android/fdsan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android/fdsan.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/android/versioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/android/versioning.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/dlfcn.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/link.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/stdatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/stdatomic.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/sys/_system_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/sys/_system_properties.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/sys/cdefs-android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/sys/cdefs-android.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/sys/ifunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/sys/ifunc.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/include/sys/system_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/include/sys/system_properties.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/platform/bionic/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/platform/bionic/macros.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/platform/bionic/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/platform/bionic/page.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/platform/bionic/tls_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/platform/bionic/tls_defines.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/CFIShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/CFIShadow.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/CachedProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/CachedProperty.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/ErrnoRestorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/ErrnoRestorer.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/FdPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/FdPath.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/KernelArgumentBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/KernelArgumentBlock.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/MallocXmlElem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/MallocXmlElem.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/NetdClientDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/NetdClientDispatch.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/ScopedRWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/ScopedRWLock.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/ScopedReaddir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/ScopedReaddir.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/ScopedSignalBlocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/ScopedSignalBlocker.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/ScopedSignalHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/ScopedSignalHandler.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/SigSetConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/SigSetConverter.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/WriteProtected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/WriteProtected.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/__bionic_get_shell_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/__bionic_get_shell_path.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/__get_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/__get_tls.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_allocator.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_arc4random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_arc4random.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_asm.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_asm_arm.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_asm_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_asm_arm64.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_asm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_asm_mips.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_asm_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_asm_tls.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_asm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_asm_x86.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_asm_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_asm_x86_64.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_auxv.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_config.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_constants.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_ctype.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_defs.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_elf_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_elf_tls.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_errdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_errdefs.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_fdsan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_fdsan.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_fortify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_fortify.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_futex.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_globals.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_ieee.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_inline_raise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_inline_raise.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_lock.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_macros.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_malloc.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_malloc_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_malloc_dispatch.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_mbstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_mbstate.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_page.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_prctl.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_sdk_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_sdk_version.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_sigdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_sigdefs.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_ssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_ssp.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_string_utils.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_systrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_systrace.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_time_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_time_conversions.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_tls.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/bionic_vdso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/bionic_vdso.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/grp_pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/grp_pwd.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/icu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/icu.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/kernel_sigset_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/kernel_sigset_t.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/linker_native_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/linker_native_bridge.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/sigrtmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/sigrtmin.h -------------------------------------------------------------------------------- /hybris/common/q/bionic/libc/private/thread_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic/libc/private/thread_private.h -------------------------------------------------------------------------------- /hybris/common/q/bionic_elf_tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/bionic_elf_tls.cpp -------------------------------------------------------------------------------- /hybris/common/q/dlfcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/dlfcn.cpp -------------------------------------------------------------------------------- /hybris/common/q/hybris_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/hybris_compat.cpp -------------------------------------------------------------------------------- /hybris/common/q/hybris_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/hybris_compat.h -------------------------------------------------------------------------------- /hybris/common/q/ld.config.format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/ld.config.format.md -------------------------------------------------------------------------------- /hybris/common/q/ld_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/ld_android.cpp -------------------------------------------------------------------------------- /hybris/common/q/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linked_list.h -------------------------------------------------------------------------------- /hybris/common/q/linked_list_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linked_list_test.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker.arm.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker.arm.map -------------------------------------------------------------------------------- /hybris/common/q/linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker.generic.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker.generic.map -------------------------------------------------------------------------------- /hybris/common/q/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker.h -------------------------------------------------------------------------------- /hybris/common/q/linker_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_allocator.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_allocator.h -------------------------------------------------------------------------------- /hybris/common/q/linker_block_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_block_allocator.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_block_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_block_allocator.h -------------------------------------------------------------------------------- /hybris/common/q/linker_block_allocator_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_block_allocator_test.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_cfi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_cfi.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_cfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_cfi.h -------------------------------------------------------------------------------- /hybris/common/q/linker_common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_common_types.h -------------------------------------------------------------------------------- /hybris/common/q/linker_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_config.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_config.h -------------------------------------------------------------------------------- /hybris/common/q/linker_config_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_config_test.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_debug.h -------------------------------------------------------------------------------- /hybris/common/q/linker_dlwarning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_dlwarning.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_dlwarning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_dlwarning.h -------------------------------------------------------------------------------- /hybris/common/q/linker_exidx_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_exidx_static.c -------------------------------------------------------------------------------- /hybris/common/q/linker_gdb_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_gdb_support.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_gdb_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_gdb_support.h -------------------------------------------------------------------------------- /hybris/common/q/linker_globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_globals.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_globals.h -------------------------------------------------------------------------------- /hybris/common/q/linker_libc_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_libc_support.c -------------------------------------------------------------------------------- /hybris/common/q/linker_libcxx_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_libcxx_support.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_logger.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_logger.h -------------------------------------------------------------------------------- /hybris/common/q/linker_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_main.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_main.h -------------------------------------------------------------------------------- /hybris/common/q/linker_mapped_file_fragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_mapped_file_fragment.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_mapped_file_fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_mapped_file_fragment.h -------------------------------------------------------------------------------- /hybris/common/q/linker_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_memory.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_mips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_mips.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_namespaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_namespaces.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_namespaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_namespaces.h -------------------------------------------------------------------------------- /hybris/common/q/linker_phdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_phdr.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_phdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_phdr.h -------------------------------------------------------------------------------- /hybris/common/q/linker_reloc_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_reloc_iterators.h -------------------------------------------------------------------------------- /hybris/common/q/linker_relocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_relocs.h -------------------------------------------------------------------------------- /hybris/common/q/linker_sdk_versions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_sdk_versions.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_sleb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_sleb128.h -------------------------------------------------------------------------------- /hybris/common/q/linker_sleb128_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_sleb128_test.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_soinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_soinfo.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_soinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_soinfo.h -------------------------------------------------------------------------------- /hybris/common/q/linker_test_globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_test_globals.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_tls.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_tls.h -------------------------------------------------------------------------------- /hybris/common/q/linker_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_utils.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_utils.h -------------------------------------------------------------------------------- /hybris/common/q/linker_utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_utils_test.cpp -------------------------------------------------------------------------------- /hybris/common/q/linker_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/linker_wrapper.cpp -------------------------------------------------------------------------------- /hybris/common/q/make.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/make.txt -------------------------------------------------------------------------------- /hybris/common/q/rt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/rt.cpp -------------------------------------------------------------------------------- /hybris/common/q/tlsdesc_resolver.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/q/tlsdesc_resolver.S -------------------------------------------------------------------------------- /hybris/common/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/strlcat.c -------------------------------------------------------------------------------- /hybris/common/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/strlcpy.c -------------------------------------------------------------------------------- /hybris/common/stub/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/stub/Makefile.am -------------------------------------------------------------------------------- /hybris/common/stub/linker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/stub/linker.c -------------------------------------------------------------------------------- /hybris/common/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/sysconf.c -------------------------------------------------------------------------------- /hybris/common/wrapper_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/wrapper_code.h -------------------------------------------------------------------------------- /hybris/common/wrapper_code_generic_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/wrapper_code_generic_arm.c -------------------------------------------------------------------------------- /hybris/common/wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/wrappers.c -------------------------------------------------------------------------------- /hybris/common/wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/common/wrappers.h -------------------------------------------------------------------------------- /hybris/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/configure.ac -------------------------------------------------------------------------------- /hybris/egl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/Makefile.am -------------------------------------------------------------------------------- /hybris/egl/egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/egl.c -------------------------------------------------------------------------------- /hybris/egl/egl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/egl.pc.in -------------------------------------------------------------------------------- /hybris/egl/eglhybris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/eglhybris.h -------------------------------------------------------------------------------- /hybris/egl/glvnd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/.gitignore -------------------------------------------------------------------------------- /hybris/egl/glvnd/10_libhybris.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/10_libhybris.json.in -------------------------------------------------------------------------------- /hybris/egl/glvnd/egldispatchstubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/egldispatchstubs.c -------------------------------------------------------------------------------- /hybris/egl/glvnd/egldispatchstubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/egldispatchstubs.h -------------------------------------------------------------------------------- /hybris/egl/glvnd/eglglvnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/eglglvnd.cpp -------------------------------------------------------------------------------- /hybris/egl/glvnd/generate/egl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/generate/egl.xml -------------------------------------------------------------------------------- /hybris/egl/glvnd/generate/eglFunctionList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/generate/eglFunctionList.py -------------------------------------------------------------------------------- /hybris/egl/glvnd/generate/egl_hybris.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/generate/egl_hybris.xml -------------------------------------------------------------------------------- /hybris/egl/glvnd/generate/egl_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/generate/egl_other.xml -------------------------------------------------------------------------------- /hybris/egl/glvnd/generate/genCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/generate/genCommon.py -------------------------------------------------------------------------------- /hybris/egl/glvnd/generate/gen_egl_dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/generate/gen_egl_dispatch.py -------------------------------------------------------------------------------- /hybris/egl/glvnd/generate/static_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/glvnd/generate/static_data.py -------------------------------------------------------------------------------- /hybris/egl/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/helper.cpp -------------------------------------------------------------------------------- /hybris/egl/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/helper.h -------------------------------------------------------------------------------- /hybris/egl/platforms/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/Makefile.am -------------------------------------------------------------------------------- /hybris/egl/platforms/common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/common/Makefile.am -------------------------------------------------------------------------------- /hybris/egl/platforms/common/eglnativewindowbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/common/eglnativewindowbase.h -------------------------------------------------------------------------------- /hybris/egl/platforms/common/eglplatformcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/common/eglplatformcommon.cpp -------------------------------------------------------------------------------- /hybris/egl/platforms/common/eglplatformcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/common/eglplatformcommon.h -------------------------------------------------------------------------------- /hybris/egl/platforms/common/hybris-egl-platform.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/common/hybris-egl-platform.pc.in -------------------------------------------------------------------------------- /hybris/egl/platforms/common/hybris_nativebufferext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/common/hybris_nativebufferext.h -------------------------------------------------------------------------------- /hybris/egl/platforms/fbdev/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/fbdev/Makefile.am -------------------------------------------------------------------------------- /hybris/egl/platforms/fbdev/eglplatform_fbdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/fbdev/eglplatform_fbdev.cpp -------------------------------------------------------------------------------- /hybris/egl/platforms/fbdev/fbdev_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/fbdev/fbdev_window.cpp -------------------------------------------------------------------------------- /hybris/egl/platforms/fbdev/fbdev_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/fbdev/fbdev_window.h -------------------------------------------------------------------------------- /hybris/egl/platforms/hwcomposer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/hwcomposer/Makefile.am -------------------------------------------------------------------------------- /hybris/egl/platforms/hwcomposer/eglplatform_hwcomposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/hwcomposer/eglplatform_hwcomposer.cpp -------------------------------------------------------------------------------- /hybris/egl/platforms/hwcomposer/hwcomposer-egl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/hwcomposer/hwcomposer-egl.pc.in -------------------------------------------------------------------------------- /hybris/egl/platforms/hwcomposer/hwcomposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/hwcomposer/hwcomposer.h -------------------------------------------------------------------------------- /hybris/egl/platforms/hwcomposer/hwcomposer_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/hwcomposer/hwcomposer_window.cpp -------------------------------------------------------------------------------- /hybris/egl/platforms/hwcomposer/hwcomposer_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/hwcomposer/hwcomposer_window.h -------------------------------------------------------------------------------- /hybris/egl/platforms/null/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/null/Makefile.am -------------------------------------------------------------------------------- /hybris/egl/platforms/null/eglplatform_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/null/eglplatform_null.c -------------------------------------------------------------------------------- /hybris/egl/platforms/wayland/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/wayland/Makefile.am -------------------------------------------------------------------------------- /hybris/egl/platforms/wayland/eglplatform_wayland.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/wayland/eglplatform_wayland.cpp -------------------------------------------------------------------------------- /hybris/egl/platforms/wayland/wayland_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/wayland/wayland_window.cpp -------------------------------------------------------------------------------- /hybris/egl/platforms/wayland/wayland_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/wayland/wayland_window.h -------------------------------------------------------------------------------- /hybris/egl/platforms/x11/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/x11/Makefile.am -------------------------------------------------------------------------------- /hybris/egl/platforms/x11/eglplatform_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/x11/eglplatform_x11.cpp -------------------------------------------------------------------------------- /hybris/egl/platforms/x11/x11_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/x11/x11_window.cpp -------------------------------------------------------------------------------- /hybris/egl/platforms/x11/x11_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/x11/x11_window.h -------------------------------------------------------------------------------- /hybris/egl/platforms/x11/xcb_drihybris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/x11/xcb_drihybris.c -------------------------------------------------------------------------------- /hybris/egl/platforms/x11/xcb_drihybris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/platforms/x11/xcb_drihybris.h -------------------------------------------------------------------------------- /hybris/egl/ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/ws.c -------------------------------------------------------------------------------- /hybris/egl/ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/egl/ws.h -------------------------------------------------------------------------------- /hybris/glesv1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/glesv1/Makefile.am -------------------------------------------------------------------------------- /hybris/glesv1/glesv1_cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/glesv1/glesv1_cm.c -------------------------------------------------------------------------------- /hybris/glesv1/glesv1_cm.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/glesv1/glesv1_cm.pc.in -------------------------------------------------------------------------------- /hybris/glesv2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/glesv2/Makefile.am -------------------------------------------------------------------------------- /hybris/glesv2/glesv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/glesv2/glesv2.c -------------------------------------------------------------------------------- /hybris/glesv2/glesv2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/glesv2/glesv2.pc.in -------------------------------------------------------------------------------- /hybris/gralloc/GrallocUsageConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/gralloc/GrallocUsageConversion.cpp -------------------------------------------------------------------------------- /hybris/gralloc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/gralloc/Makefile.am -------------------------------------------------------------------------------- /hybris/gralloc/gralloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/gralloc/gralloc.c -------------------------------------------------------------------------------- /hybris/gralloc/libgralloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/gralloc/libgralloc.pc.in -------------------------------------------------------------------------------- /hybris/hardware/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/hardware/Makefile.am -------------------------------------------------------------------------------- /hybris/hardware/hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/hardware/hardware.c -------------------------------------------------------------------------------- /hybris/hardware/libhardware.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/hardware/libhardware.pc.in -------------------------------------------------------------------------------- /hybris/hwc2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/hwc2/Makefile.am -------------------------------------------------------------------------------- /hybris/hwc2/hwc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/hwc2/hwc2.c -------------------------------------------------------------------------------- /hybris/hwc2/libhwc2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/hwc2/libhwc2.pc.in -------------------------------------------------------------------------------- /hybris/include/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_d3d10.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_d3d11.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_dx9_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_dx9_media_sharing_intel.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_egl.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_ext.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_ext_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_ext_intel.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_gl.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_half.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_icd.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_layer.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_platform.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_va_api_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_va_api_media_sharing_intel.h -------------------------------------------------------------------------------- /hybris/include/CL/cl_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/cl_version.h -------------------------------------------------------------------------------- /hybris/include/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/CL/opencl.h -------------------------------------------------------------------------------- /hybris/include/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/EGL/egl.h -------------------------------------------------------------------------------- /hybris/include/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/EGL/eglext.h -------------------------------------------------------------------------------- /hybris/include/EGL/eglmesaext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/EGL/eglmesaext.h -------------------------------------------------------------------------------- /hybris/include/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/EGL/eglplatform.h -------------------------------------------------------------------------------- /hybris/include/GL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GL/gl.h -------------------------------------------------------------------------------- /hybris/include/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GL/glcorearb.h -------------------------------------------------------------------------------- /hybris/include/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GL/glext.h -------------------------------------------------------------------------------- /hybris/include/GL/glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GL/glx.h -------------------------------------------------------------------------------- /hybris/include/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GL/glxext.h -------------------------------------------------------------------------------- /hybris/include/GL/internal/dri_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GL/internal/dri_interface.h -------------------------------------------------------------------------------- /hybris/include/GL/mesa_glinterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GL/mesa_glinterop.h -------------------------------------------------------------------------------- /hybris/include/GL/osmesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GL/osmesa.h -------------------------------------------------------------------------------- /hybris/include/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GL/wglext.h -------------------------------------------------------------------------------- /hybris/include/GLES/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GLES/egl.h -------------------------------------------------------------------------------- /hybris/include/GLES/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GLES/gl.h -------------------------------------------------------------------------------- /hybris/include/GLES/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GLES/glext.h -------------------------------------------------------------------------------- /hybris/include/GLES/glplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GLES/glplatform.h -------------------------------------------------------------------------------- /hybris/include/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GLES2/gl2.h -------------------------------------------------------------------------------- /hybris/include/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GLES2/gl2ext.h -------------------------------------------------------------------------------- /hybris/include/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GLES2/gl2platform.h -------------------------------------------------------------------------------- /hybris/include/GLES3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GLES3/gl3.h -------------------------------------------------------------------------------- /hybris/include/GLES3/gl31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GLES3/gl31.h -------------------------------------------------------------------------------- /hybris/include/GLES3/gl32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GLES3/gl32.h -------------------------------------------------------------------------------- /hybris/include/GLES3/gl3platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/GLES3/gl3platform.h -------------------------------------------------------------------------------- /hybris/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /hybris/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/Makefile.am -------------------------------------------------------------------------------- /hybris/include/hybris/camera/camera_compatibility_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/camera/camera_compatibility_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/common/binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/common/binding.h -------------------------------------------------------------------------------- /hybris/include/hybris/common/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/common/dlfcn.h -------------------------------------------------------------------------------- /hybris/include/hybris/common/floating_point_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/common/floating_point_abi.h -------------------------------------------------------------------------------- /hybris/include/hybris/common/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/common/hooks.h -------------------------------------------------------------------------------- /hybris/include/hybris/dlfcn/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/dlfcn/dlfcn.h -------------------------------------------------------------------------------- /hybris/include/hybris/gralloc/gralloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/gralloc/gralloc.h -------------------------------------------------------------------------------- /hybris/include/hybris/grallocusage/GrallocUsageConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/grallocusage/GrallocUsageConversion.h -------------------------------------------------------------------------------- /hybris/include/hybris/hwc2/hwc2_compatibility_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/hwc2/hwc2_compatibility_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/input/input_stack_compatibility_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/input/input_stack_compatibility_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/internal/camera_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/internal/camera_control.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/decoding_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/decoding_service.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/media_buffer_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/media_buffer_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/media_codec_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/media_codec_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/media_codec_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/media_codec_list.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/media_codec_source_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/media_codec_source_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/media_compatibility_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/media_compatibility_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/media_format_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/media_format_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/media_message_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/media_message_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/media_meta_data_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/media_meta_data_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/media_recorder_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/media_recorder_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/recorder_compatibility_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/recorder_compatibility_layer.h -------------------------------------------------------------------------------- /hybris/include/hybris/media/surface_texture_client_hybris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/media/surface_texture_client_hybris.h -------------------------------------------------------------------------------- /hybris/include/hybris/properties/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/properties/properties.h -------------------------------------------------------------------------------- /hybris/include/hybris/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/ui/ui.h -------------------------------------------------------------------------------- /hybris/include/hybris/ui/ui_compatibility_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/include/hybris/ui/ui_compatibility_layer.h -------------------------------------------------------------------------------- /hybris/input/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/input/Makefile.am -------------------------------------------------------------------------------- /hybris/input/is.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/input/is.c -------------------------------------------------------------------------------- /hybris/input/libis.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/input/libis.pc.in -------------------------------------------------------------------------------- /hybris/libnfc_ndef_nxp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/libnfc_ndef_nxp/Makefile.am -------------------------------------------------------------------------------- /hybris/libnfc_ndef_nxp/libnfc_ndef_nxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/libnfc_ndef_nxp/libnfc_ndef_nxp.c -------------------------------------------------------------------------------- /hybris/libnfc_ndef_nxp/libnfc_ndef_nxp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/libnfc_ndef_nxp/libnfc_ndef_nxp.pc.in -------------------------------------------------------------------------------- /hybris/libnfc_nxp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/libnfc_nxp/Makefile.am -------------------------------------------------------------------------------- /hybris/libnfc_nxp/libnfc_nxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/libnfc_nxp/libnfc_nxp.c -------------------------------------------------------------------------------- /hybris/libnfc_nxp/libnfc_nxp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/libnfc_nxp/libnfc_nxp.pc.in -------------------------------------------------------------------------------- /hybris/libsync/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/libsync/Makefile.am -------------------------------------------------------------------------------- /hybris/libsync/hybris-sync.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/libsync/hybris-sync.pc.in -------------------------------------------------------------------------------- /hybris/libsync/libsync.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/libsync/libsync.pc.in -------------------------------------------------------------------------------- /hybris/libsync/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/libsync/sync.c -------------------------------------------------------------------------------- /hybris/libsync/sync_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/libsync/sync_test.c -------------------------------------------------------------------------------- /hybris/media/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/media/Makefile.am -------------------------------------------------------------------------------- /hybris/media/libmedia.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/media/libmedia.pc.in -------------------------------------------------------------------------------- /hybris/media/media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/media/media.c -------------------------------------------------------------------------------- /hybris/opencl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/opencl/Makefile.am -------------------------------------------------------------------------------- /hybris/opencl/OpenCL.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/opencl/OpenCL.pc.in -------------------------------------------------------------------------------- /hybris/opencl/libhybris.icd.in: -------------------------------------------------------------------------------- 1 | libOpenCL@CL_LIB_SUFFIX@.so.1 2 | -------------------------------------------------------------------------------- /hybris/opencl/opencl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/opencl/opencl.c -------------------------------------------------------------------------------- /hybris/platforms/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = common 2 | -------------------------------------------------------------------------------- /hybris/platforms/common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/Makefile.am -------------------------------------------------------------------------------- /hybris/platforms/common/nativewindowbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/nativewindowbase.cpp -------------------------------------------------------------------------------- /hybris/platforms/common/nativewindowbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/nativewindowbase.h -------------------------------------------------------------------------------- /hybris/platforms/common/platformcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/platformcommon.cpp -------------------------------------------------------------------------------- /hybris/platforms/common/platformcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/platformcommon.h -------------------------------------------------------------------------------- /hybris/platforms/common/server_wlegl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/server_wlegl.cpp -------------------------------------------------------------------------------- /hybris/platforms/common/server_wlegl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/server_wlegl.h -------------------------------------------------------------------------------- /hybris/platforms/common/server_wlegl_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/server_wlegl_buffer.cpp -------------------------------------------------------------------------------- /hybris/platforms/common/server_wlegl_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/server_wlegl_buffer.h -------------------------------------------------------------------------------- /hybris/platforms/common/server_wlegl_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/server_wlegl_handle.cpp -------------------------------------------------------------------------------- /hybris/platforms/common/server_wlegl_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/server_wlegl_handle.h -------------------------------------------------------------------------------- /hybris/platforms/common/server_wlegl_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/server_wlegl_private.h -------------------------------------------------------------------------------- /hybris/platforms/common/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/support.h -------------------------------------------------------------------------------- /hybris/platforms/common/wayland-android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/wayland-android.xml -------------------------------------------------------------------------------- /hybris/platforms/common/windowbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/windowbuffer.cpp -------------------------------------------------------------------------------- /hybris/platforms/common/windowbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/common/windowbuffer.h -------------------------------------------------------------------------------- /hybris/platforms/wayland/wayland_window_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/platforms/wayland/wayland_window_common.cpp -------------------------------------------------------------------------------- /hybris/properties/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/properties/Makefile.am -------------------------------------------------------------------------------- /hybris/properties/hybris_properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/properties/hybris_properties.c -------------------------------------------------------------------------------- /hybris/properties/libandroid-properties.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/properties/libandroid-properties.pc.in -------------------------------------------------------------------------------- /hybris/sf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/sf/Makefile.am -------------------------------------------------------------------------------- /hybris/sf/libsf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/sf/libsf.pc.in -------------------------------------------------------------------------------- /hybris/sf/sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/sf/sf.c -------------------------------------------------------------------------------- /hybris/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/Makefile.am -------------------------------------------------------------------------------- /hybris/tests/test_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_audio.c -------------------------------------------------------------------------------- /hybris/tests/test_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_camera.cpp -------------------------------------------------------------------------------- /hybris/tests/test_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_common.cpp -------------------------------------------------------------------------------- /hybris/tests/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_common.h -------------------------------------------------------------------------------- /hybris/tests/test_dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_dlopen.c -------------------------------------------------------------------------------- /hybris/tests/test_egl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_egl.cpp -------------------------------------------------------------------------------- /hybris/tests/test_egl_configs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_egl_configs.c -------------------------------------------------------------------------------- /hybris/tests/test_glesv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_glesv2.cpp -------------------------------------------------------------------------------- /hybris/tests/test_glesv3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_glesv3.cpp -------------------------------------------------------------------------------- /hybris/tests/test_gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_gps.c -------------------------------------------------------------------------------- /hybris/tests/test_hwcomposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_hwcomposer.cpp -------------------------------------------------------------------------------- /hybris/tests/test_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_input.c -------------------------------------------------------------------------------- /hybris/tests/test_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_lights.c -------------------------------------------------------------------------------- /hybris/tests/test_media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_media.cpp -------------------------------------------------------------------------------- /hybris/tests/test_nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_nfc.c -------------------------------------------------------------------------------- /hybris/tests/test_opencl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_opencl.c -------------------------------------------------------------------------------- /hybris/tests/test_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_recorder.cpp -------------------------------------------------------------------------------- /hybris/tests/test_sensors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_sensors.c -------------------------------------------------------------------------------- /hybris/tests/test_sf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_sf.cpp -------------------------------------------------------------------------------- /hybris/tests/test_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_ui.c -------------------------------------------------------------------------------- /hybris/tests/test_vibrator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_vibrator.c -------------------------------------------------------------------------------- /hybris/tests/test_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_vulkan.cpp -------------------------------------------------------------------------------- /hybris/tests/test_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/tests/test_wifi.c -------------------------------------------------------------------------------- /hybris/ui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/ui/Makefile.am -------------------------------------------------------------------------------- /hybris/ui/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/ui/ui.c -------------------------------------------------------------------------------- /hybris/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/utils/Makefile.am -------------------------------------------------------------------------------- /hybris/utils/getprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/utils/getprop.c -------------------------------------------------------------------------------- /hybris/utils/setprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/utils/setprop.c -------------------------------------------------------------------------------- /hybris/vibrator/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vibrator/Makefile.am -------------------------------------------------------------------------------- /hybris/vibrator/libvibrator.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vibrator/libvibrator.pc.in -------------------------------------------------------------------------------- /hybris/vibrator/vibrator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vibrator/vibrator.c -------------------------------------------------------------------------------- /hybris/vulkan/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/Makefile.am -------------------------------------------------------------------------------- /hybris/vulkan/platforms/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/platforms/Makefile.am -------------------------------------------------------------------------------- /hybris/vulkan/platforms/common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/platforms/common/Makefile.am -------------------------------------------------------------------------------- /hybris/vulkan/platforms/common/vulkanplatformcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/platforms/common/vulkanplatformcommon.cpp -------------------------------------------------------------------------------- /hybris/vulkan/platforms/common/vulkanplatformcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/platforms/common/vulkanplatformcommon.h -------------------------------------------------------------------------------- /hybris/vulkan/platforms/null/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/platforms/null/Makefile.am -------------------------------------------------------------------------------- /hybris/vulkan/platforms/null/vulkanplatform_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/platforms/null/vulkanplatform_null.c -------------------------------------------------------------------------------- /hybris/vulkan/platforms/wayland/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/platforms/wayland/Makefile.am -------------------------------------------------------------------------------- /hybris/vulkan/platforms/wayland/vulkanplatform_wayland.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/platforms/wayland/vulkanplatform_wayland.cpp -------------------------------------------------------------------------------- /hybris/vulkan/platforms/wayland/wayland_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/platforms/wayland/wayland_window.cpp -------------------------------------------------------------------------------- /hybris/vulkan/platforms/wayland/wayland_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/platforms/wayland/wayland_window.h -------------------------------------------------------------------------------- /hybris/vulkan/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/vulkan.c -------------------------------------------------------------------------------- /hybris/vulkan/vulkanhybris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/vulkanhybris.h -------------------------------------------------------------------------------- /hybris/vulkan/ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/ws.c -------------------------------------------------------------------------------- /hybris/vulkan/ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/vulkan/ws.h -------------------------------------------------------------------------------- /hybris/wifi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/wifi/Makefile.am -------------------------------------------------------------------------------- /hybris/wifi/libwifi.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/wifi/libwifi.pc.in -------------------------------------------------------------------------------- /hybris/wifi/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/hybris/wifi/wifi.c -------------------------------------------------------------------------------- /utils/extract-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/extract-headers.sh -------------------------------------------------------------------------------- /utils/generate_glesv1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_glesv1/README -------------------------------------------------------------------------------- /utils/generate_glesv1/generate_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_glesv1/generate_wrappers.py -------------------------------------------------------------------------------- /utils/generate_glesv1/glesv1_build_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_glesv1/glesv1_build_wrapper.sh -------------------------------------------------------------------------------- /utils/generate_glesv1/glesv1_cm_list_symbols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_glesv1/glesv1_cm_list_symbols.sh -------------------------------------------------------------------------------- /utils/generate_glesv1/glesv1_cproto_prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_glesv1/glesv1_cproto_prepare.sh -------------------------------------------------------------------------------- /utils/generate_glesv1/glesv1_cproto_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_glesv1/glesv1_cproto_template.h -------------------------------------------------------------------------------- /utils/generate_nfc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_nfc/README -------------------------------------------------------------------------------- /utils/generate_nfc/README.android-src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_nfc/README.android-src -------------------------------------------------------------------------------- /utils/generate_nfc/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_nfc/generate.sh -------------------------------------------------------------------------------- /utils/generate_nfc/generate_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_nfc/generate_wrappers.py -------------------------------------------------------------------------------- /utils/generate_nfc/linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_nfc/linux/README -------------------------------------------------------------------------------- /utils/generate_nfc/linux/pn544.h: -------------------------------------------------------------------------------- 1 | /* Dummy header */ 2 | -------------------------------------------------------------------------------- /utils/generate_nfc/symbols/README: -------------------------------------------------------------------------------- 1 | These symbols have been obtained via: 2 | 3 | objdump -T 4 | -------------------------------------------------------------------------------- /utils/generate_nfc/symbols/libnfc.so.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_nfc/symbols/libnfc.so.txt -------------------------------------------------------------------------------- /utils/generate_nfc/symbols/libnfc_ndef.so.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_nfc/symbols/libnfc_ndef.so.txt -------------------------------------------------------------------------------- /utils/generate_wrapper_macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/generate_wrapper_macros.py -------------------------------------------------------------------------------- /utils/load_sym_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/load_sym_files.py -------------------------------------------------------------------------------- /utils/travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linux-on-droid/libhybris/HEAD/utils/travis-build.sh --------------------------------------------------------------------------------