├── .gitignore ├── Makefile ├── README.md ├── android_namespace ├── Makefile └── android_namespace.c ├── dispatch_and_syscalls.cpp ├── dl ├── Makefile ├── dl.c └── libdl.map ├── fake_libc.c ├── helpers.c ├── helpers.h ├── libEGL ├── Makefile ├── egl.c ├── eglhybris.h ├── helper.cpp ├── helper.h ├── logging.c ├── logging.h ├── platforms │ ├── common │ │ ├── Makefile │ │ ├── eglplatformcommon.cpp │ │ ├── eglplatformcommon.h │ │ ├── hybris-egl-platform.pc │ │ ├── hybris-egl-platform.pc.in │ │ ├── hybris_nativebufferext.h │ │ ├── native_handle.c │ │ ├── nativewindowbase.cpp │ │ ├── nativewindowbase.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 │ │ ├── wayland-egl-priv.h │ │ ├── wayland-egl.c │ │ ├── wayland-egl.pc │ │ ├── wayland-egl.pc.in │ │ ├── windowbuffer.cpp │ │ └── windowbuffer.h │ ├── fbdev │ │ ├── Makefile │ │ ├── eglplatform_fbdev.cpp │ │ ├── eglplatform_fbdev.d │ │ ├── fbdev_window.cpp │ │ └── fbdev_window.h │ ├── hwcomposer │ │ ├── Makefile │ │ ├── eglplatform_hwcomposer.cpp │ │ ├── eglplatform_hwcomposer.d │ │ ├── hwcomposer-egl.pc │ │ ├── hwcomposer-egl.pc.in │ │ ├── hwcomposer.h │ │ ├── hwcomposer_window.cpp │ │ └── hwcomposer_window.h │ ├── null │ │ ├── Makefile │ │ ├── eglplatform_null.c │ │ └── eglplatform_null.d │ └── wayland │ │ ├── Makefile │ │ ├── eglplatform_wayland.cpp │ │ ├── eglplatform_wayland.d │ │ ├── wayland_window.cpp │ │ └── wayland_window.h ├── ws.c └── ws.h ├── libGLESv2 ├── Makefile └── glesv2.c ├── libc.map ├── libhardware ├── Makefile └── hardware.c ├── libsync ├── Makefile ├── sync.c └── sync.d ├── pthread_gettid_helpers.cpp ├── setjmp ├── Android.mk ├── ___rt_sigqueueinfo.S ├── __restore.S ├── assert.cpp ├── errno_internal.c ├── setjmp.S ├── setjmp.h ├── sigaction.cpp ├── sigaddset.cpp ├── sigblock.c ├── sigdelset.cpp ├── sigemptyset.cpp ├── sigfillset.cpp ├── siginterrupt.c ├── sigismember.cpp ├── signal.cpp ├── signalfd.cpp ├── sigpending.cpp ├── sigprocmask.cpp ├── sigqueue.cpp ├── sigsetmask.c ├── sigsuspend.cpp ├── sigtimedwait.cpp ├── sigwait.cpp └── sigwaitinfo.cpp ├── strlcat.c ├── strlcpy.c ├── surfaceflinger ├── Makefile └── surfaceflinger.c ├── test ├── Makefile ├── main.c └── testlib │ ├── Android.mk │ └── test.c ├── test_egl ├── Makefile ├── test_egl.c └── test_egl_configs │ ├── Makefile │ └── test_egl_configs.c ├── test_hwcomposer ├── Makefile └── test_hwcomposer.cpp ├── test_sensors ├── Makefile └── test_sensors.c └── test_vibrator ├── Makefile ├── test_vibrator.c └── vibrator.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/README.md -------------------------------------------------------------------------------- /android_namespace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/android_namespace/Makefile -------------------------------------------------------------------------------- /android_namespace/android_namespace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/android_namespace/android_namespace.c -------------------------------------------------------------------------------- /dispatch_and_syscalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/dispatch_and_syscalls.cpp -------------------------------------------------------------------------------- /dl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/dl/Makefile -------------------------------------------------------------------------------- /dl/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/dl/dl.c -------------------------------------------------------------------------------- /dl/libdl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/dl/libdl.map -------------------------------------------------------------------------------- /fake_libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/fake_libc.c -------------------------------------------------------------------------------- /helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/helpers.c -------------------------------------------------------------------------------- /helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/helpers.h -------------------------------------------------------------------------------- /libEGL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/Makefile -------------------------------------------------------------------------------- /libEGL/egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/egl.c -------------------------------------------------------------------------------- /libEGL/eglhybris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/eglhybris.h -------------------------------------------------------------------------------- /libEGL/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/helper.cpp -------------------------------------------------------------------------------- /libEGL/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/helper.h -------------------------------------------------------------------------------- /libEGL/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/logging.c -------------------------------------------------------------------------------- /libEGL/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/logging.h -------------------------------------------------------------------------------- /libEGL/platforms/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/Makefile -------------------------------------------------------------------------------- /libEGL/platforms/common/eglplatformcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/eglplatformcommon.cpp -------------------------------------------------------------------------------- /libEGL/platforms/common/eglplatformcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/eglplatformcommon.h -------------------------------------------------------------------------------- /libEGL/platforms/common/hybris-egl-platform.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/hybris-egl-platform.pc -------------------------------------------------------------------------------- /libEGL/platforms/common/hybris-egl-platform.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/hybris-egl-platform.pc.in -------------------------------------------------------------------------------- /libEGL/platforms/common/hybris_nativebufferext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/hybris_nativebufferext.h -------------------------------------------------------------------------------- /libEGL/platforms/common/native_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/native_handle.c -------------------------------------------------------------------------------- /libEGL/platforms/common/nativewindowbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/nativewindowbase.cpp -------------------------------------------------------------------------------- /libEGL/platforms/common/nativewindowbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/nativewindowbase.h -------------------------------------------------------------------------------- /libEGL/platforms/common/server_wlegl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/server_wlegl.cpp -------------------------------------------------------------------------------- /libEGL/platforms/common/server_wlegl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/server_wlegl.h -------------------------------------------------------------------------------- /libEGL/platforms/common/server_wlegl_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/server_wlegl_buffer.cpp -------------------------------------------------------------------------------- /libEGL/platforms/common/server_wlegl_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/server_wlegl_buffer.h -------------------------------------------------------------------------------- /libEGL/platforms/common/server_wlegl_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/server_wlegl_handle.cpp -------------------------------------------------------------------------------- /libEGL/platforms/common/server_wlegl_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/server_wlegl_handle.h -------------------------------------------------------------------------------- /libEGL/platforms/common/server_wlegl_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/server_wlegl_private.h -------------------------------------------------------------------------------- /libEGL/platforms/common/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/support.h -------------------------------------------------------------------------------- /libEGL/platforms/common/wayland-android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/wayland-android.xml -------------------------------------------------------------------------------- /libEGL/platforms/common/wayland-egl-priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/wayland-egl-priv.h -------------------------------------------------------------------------------- /libEGL/platforms/common/wayland-egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/wayland-egl.c -------------------------------------------------------------------------------- /libEGL/platforms/common/wayland-egl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/wayland-egl.pc -------------------------------------------------------------------------------- /libEGL/platforms/common/wayland-egl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/wayland-egl.pc.in -------------------------------------------------------------------------------- /libEGL/platforms/common/windowbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/windowbuffer.cpp -------------------------------------------------------------------------------- /libEGL/platforms/common/windowbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/common/windowbuffer.h -------------------------------------------------------------------------------- /libEGL/platforms/fbdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/fbdev/Makefile -------------------------------------------------------------------------------- /libEGL/platforms/fbdev/eglplatform_fbdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/fbdev/eglplatform_fbdev.cpp -------------------------------------------------------------------------------- /libEGL/platforms/fbdev/eglplatform_fbdev.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/fbdev/eglplatform_fbdev.d -------------------------------------------------------------------------------- /libEGL/platforms/fbdev/fbdev_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/fbdev/fbdev_window.cpp -------------------------------------------------------------------------------- /libEGL/platforms/fbdev/fbdev_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/fbdev/fbdev_window.h -------------------------------------------------------------------------------- /libEGL/platforms/hwcomposer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/hwcomposer/Makefile -------------------------------------------------------------------------------- /libEGL/platforms/hwcomposer/eglplatform_hwcomposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/hwcomposer/eglplatform_hwcomposer.cpp -------------------------------------------------------------------------------- /libEGL/platforms/hwcomposer/eglplatform_hwcomposer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/hwcomposer/eglplatform_hwcomposer.d -------------------------------------------------------------------------------- /libEGL/platforms/hwcomposer/hwcomposer-egl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/hwcomposer/hwcomposer-egl.pc -------------------------------------------------------------------------------- /libEGL/platforms/hwcomposer/hwcomposer-egl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/hwcomposer/hwcomposer-egl.pc.in -------------------------------------------------------------------------------- /libEGL/platforms/hwcomposer/hwcomposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/hwcomposer/hwcomposer.h -------------------------------------------------------------------------------- /libEGL/platforms/hwcomposer/hwcomposer_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/hwcomposer/hwcomposer_window.cpp -------------------------------------------------------------------------------- /libEGL/platforms/hwcomposer/hwcomposer_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/hwcomposer/hwcomposer_window.h -------------------------------------------------------------------------------- /libEGL/platforms/null/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/null/Makefile -------------------------------------------------------------------------------- /libEGL/platforms/null/eglplatform_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/null/eglplatform_null.c -------------------------------------------------------------------------------- /libEGL/platforms/null/eglplatform_null.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/null/eglplatform_null.d -------------------------------------------------------------------------------- /libEGL/platforms/wayland/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/wayland/Makefile -------------------------------------------------------------------------------- /libEGL/platforms/wayland/eglplatform_wayland.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/wayland/eglplatform_wayland.cpp -------------------------------------------------------------------------------- /libEGL/platforms/wayland/eglplatform_wayland.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/wayland/eglplatform_wayland.d -------------------------------------------------------------------------------- /libEGL/platforms/wayland/wayland_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/wayland/wayland_window.cpp -------------------------------------------------------------------------------- /libEGL/platforms/wayland/wayland_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/platforms/wayland/wayland_window.h -------------------------------------------------------------------------------- /libEGL/ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/ws.c -------------------------------------------------------------------------------- /libEGL/ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libEGL/ws.h -------------------------------------------------------------------------------- /libGLESv2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libGLESv2/Makefile -------------------------------------------------------------------------------- /libGLESv2/glesv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libGLESv2/glesv2.c -------------------------------------------------------------------------------- /libc.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libc.map -------------------------------------------------------------------------------- /libhardware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libhardware/Makefile -------------------------------------------------------------------------------- /libhardware/hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libhardware/hardware.c -------------------------------------------------------------------------------- /libsync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libsync/Makefile -------------------------------------------------------------------------------- /libsync/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libsync/sync.c -------------------------------------------------------------------------------- /libsync/sync.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/libsync/sync.d -------------------------------------------------------------------------------- /pthread_gettid_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/pthread_gettid_helpers.cpp -------------------------------------------------------------------------------- /setjmp/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/Android.mk -------------------------------------------------------------------------------- /setjmp/___rt_sigqueueinfo.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/___rt_sigqueueinfo.S -------------------------------------------------------------------------------- /setjmp/__restore.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/__restore.S -------------------------------------------------------------------------------- /setjmp/assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/assert.cpp -------------------------------------------------------------------------------- /setjmp/errno_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/errno_internal.c -------------------------------------------------------------------------------- /setjmp/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/setjmp.S -------------------------------------------------------------------------------- /setjmp/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/setjmp.h -------------------------------------------------------------------------------- /setjmp/sigaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigaction.cpp -------------------------------------------------------------------------------- /setjmp/sigaddset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigaddset.cpp -------------------------------------------------------------------------------- /setjmp/sigblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigblock.c -------------------------------------------------------------------------------- /setjmp/sigdelset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigdelset.cpp -------------------------------------------------------------------------------- /setjmp/sigemptyset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigemptyset.cpp -------------------------------------------------------------------------------- /setjmp/sigfillset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigfillset.cpp -------------------------------------------------------------------------------- /setjmp/siginterrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/siginterrupt.c -------------------------------------------------------------------------------- /setjmp/sigismember.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigismember.cpp -------------------------------------------------------------------------------- /setjmp/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/signal.cpp -------------------------------------------------------------------------------- /setjmp/signalfd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/signalfd.cpp -------------------------------------------------------------------------------- /setjmp/sigpending.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigpending.cpp -------------------------------------------------------------------------------- /setjmp/sigprocmask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigprocmask.cpp -------------------------------------------------------------------------------- /setjmp/sigqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigqueue.cpp -------------------------------------------------------------------------------- /setjmp/sigsetmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigsetmask.c -------------------------------------------------------------------------------- /setjmp/sigsuspend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigsuspend.cpp -------------------------------------------------------------------------------- /setjmp/sigtimedwait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigtimedwait.cpp -------------------------------------------------------------------------------- /setjmp/sigwait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigwait.cpp -------------------------------------------------------------------------------- /setjmp/sigwaitinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/setjmp/sigwaitinfo.cpp -------------------------------------------------------------------------------- /strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/strlcat.c -------------------------------------------------------------------------------- /strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/strlcpy.c -------------------------------------------------------------------------------- /surfaceflinger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/surfaceflinger/Makefile -------------------------------------------------------------------------------- /surfaceflinger/surfaceflinger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/surfaceflinger/surfaceflinger.c -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test/main.c -------------------------------------------------------------------------------- /test/testlib/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test/testlib/Android.mk -------------------------------------------------------------------------------- /test/testlib/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test/testlib/test.c -------------------------------------------------------------------------------- /test_egl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test_egl/Makefile -------------------------------------------------------------------------------- /test_egl/test_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test_egl/test_egl.c -------------------------------------------------------------------------------- /test_egl/test_egl_configs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test_egl/test_egl_configs/Makefile -------------------------------------------------------------------------------- /test_egl/test_egl_configs/test_egl_configs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test_egl/test_egl_configs/test_egl_configs.c -------------------------------------------------------------------------------- /test_hwcomposer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test_hwcomposer/Makefile -------------------------------------------------------------------------------- /test_hwcomposer/test_hwcomposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test_hwcomposer/test_hwcomposer.cpp -------------------------------------------------------------------------------- /test_sensors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test_sensors/Makefile -------------------------------------------------------------------------------- /test_sensors/test_sensors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test_sensors/test_sensors.c -------------------------------------------------------------------------------- /test_vibrator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test_vibrator/Makefile -------------------------------------------------------------------------------- /test_vibrator/test_vibrator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test_vibrator/test_vibrator.c -------------------------------------------------------------------------------- /test_vibrator/vibrator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krnlyng/fake_libc/HEAD/test_vibrator/vibrator.c --------------------------------------------------------------------------------