├── .clang-format ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS ├── Android.mk ├── CMakeLists.txt ├── COPYING.GPL ├── README.md ├── android ├── CMakeLists.txt ├── anbox-touch.idc ├── anboxd.rc ├── appmgr │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── res │ │ ├── layout │ │ │ ├── app_view.xml │ │ │ └── list_item_icon_text.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ └── strings.xml │ └── src │ │ └── org │ │ └── anbox │ │ └── appmgr │ │ ├── AppListAdapter.java │ │ ├── AppListFragment.java │ │ ├── AppModel.java │ │ ├── AppViewActivity.java │ │ ├── AppsGridFragment.java │ │ ├── AppsLoader.java │ │ ├── GridFragment.java │ │ ├── LauncherActivity.java │ │ ├── LauncherService.java │ │ ├── MainApplication.java │ │ ├── PackageEventReceiver.java │ │ ├── PackageIntentReceiver.java │ │ └── PlatformService.java ├── audio │ ├── MODULE_LICENSE_APACHE2 │ ├── NOTICE │ └── audio_hw.cpp ├── camera │ ├── Android.mk │ ├── CallbackNotifier.cpp │ ├── CallbackNotifier.h │ ├── Converters.cpp │ ├── Converters.h │ ├── EmulatedBaseCamera.cpp │ ├── EmulatedBaseCamera.h │ ├── EmulatedCamera.cpp │ ├── EmulatedCamera.h │ ├── EmulatedCamera2.cpp │ ├── EmulatedCamera2.h │ ├── EmulatedCamera3.cpp │ ├── EmulatedCamera3.h │ ├── EmulatedCameraCommon.h │ ├── EmulatedCameraDevice.cpp │ ├── EmulatedCameraDevice.h │ ├── EmulatedCameraFactory.cpp │ ├── EmulatedCameraFactory.h │ ├── EmulatedCameraHal.cpp │ ├── EmulatedCameraHotplugThread.cpp │ ├── EmulatedCameraHotplugThread.h │ ├── EmulatedFakeCamera.cpp │ ├── EmulatedFakeCamera.h │ ├── EmulatedFakeCamera2.cpp │ ├── EmulatedFakeCamera2.h │ ├── EmulatedFakeCamera3.cpp │ ├── EmulatedFakeCamera3.h │ ├── EmulatedFakeCameraDevice.cpp │ ├── EmulatedFakeCameraDevice.h │ ├── EmulatedQemuCamera.cpp │ ├── EmulatedQemuCamera.h │ ├── EmulatedQemuCamera2.cpp │ ├── EmulatedQemuCamera2.h │ ├── EmulatedQemuCameraDevice.cpp │ ├── EmulatedQemuCameraDevice.h │ ├── JpegCompressor.cpp │ ├── JpegCompressor.h │ ├── JpegStub.cpp │ ├── JpegStub.h │ ├── PreviewWindow.cpp │ ├── PreviewWindow.h │ ├── QemuClient.cpp │ ├── QemuClient.h │ ├── fake-pipeline2 │ │ ├── Base.h │ │ ├── JpegCompressor.cpp │ │ ├── JpegCompressor.h │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── Sensor.cpp │ │ └── Sensor.h │ ├── media_codecs.xml │ └── media_profiles.xml ├── data │ └── etc │ │ └── apns-conf.xml ├── fingerprint │ ├── Android.mk │ └── fingerprint.c ├── fstab.goldfish ├── gps │ ├── Android.mk │ └── gps_qemu.c ├── hwcomposer │ └── hwcomposer.cpp ├── init.goldfish.rc ├── init.goldfish.sh ├── lights │ ├── Android.mk │ └── lights_qemu.c ├── opengl │ ├── Android.mk │ ├── README │ ├── common.mk │ ├── host │ │ └── include │ │ │ └── libOpenglRender │ │ │ └── IOStream.h │ ├── shared │ │ └── OpenglCodecCommon │ │ │ ├── Android.mk │ │ │ ├── ChecksumCalculator.cpp │ │ │ ├── ChecksumCalculator.h │ │ │ ├── ErrorLog.h │ │ │ ├── FixedBuffer.h │ │ │ ├── GLClientState.cpp │ │ │ ├── GLClientState.h │ │ │ ├── GLSharedGroup.cpp │ │ │ ├── GLSharedGroup.h │ │ │ ├── Makefile │ │ │ ├── SmartPtr.h │ │ │ ├── SocketStream.cpp │ │ │ ├── SocketStream.h │ │ │ ├── TcpStream.cpp │ │ │ ├── TcpStream.h │ │ │ ├── codec_defs.h │ │ │ ├── glUtils.cpp │ │ │ ├── glUtils.h │ │ │ └── gl_base_types.h │ ├── system │ │ ├── GLESv1 │ │ │ ├── Android.mk │ │ │ └── gl.cpp │ │ ├── GLESv1_enc │ │ │ ├── Android.mk │ │ │ ├── GLEncoder.cpp │ │ │ ├── GLEncoder.h │ │ │ ├── GLEncoderUtils.cpp │ │ │ ├── GLEncoderUtils.h │ │ │ ├── gl_client_context.cpp │ │ │ ├── gl_client_context.h │ │ │ ├── gl_client_proc.h │ │ │ ├── gl_enc.cpp │ │ │ ├── gl_enc.h │ │ │ ├── gl_entry.cpp │ │ │ ├── gl_ftable.h │ │ │ ├── gl_opcodes.h │ │ │ └── gl_types.h │ │ ├── GLESv2 │ │ │ ├── Android.mk │ │ │ └── gl2.cpp │ │ ├── GLESv2_enc │ │ │ ├── Android.mk │ │ │ ├── GL2Encoder.cpp │ │ │ ├── GL2Encoder.h │ │ │ ├── GL2EncoderUtils.cpp │ │ │ ├── GL2EncoderUtils.h │ │ │ ├── gl2_client_context.cpp │ │ │ ├── gl2_client_context.h │ │ │ ├── gl2_client_proc.h │ │ │ ├── gl2_enc.cpp │ │ │ ├── gl2_enc.h │ │ │ ├── gl2_entry.cpp │ │ │ ├── gl2_ftable.h │ │ │ ├── gl2_opcodes.h │ │ │ └── gl2_types.h │ │ ├── OpenglSystemCommon │ │ │ ├── Android.mk │ │ │ ├── EGLClientIface.h │ │ │ ├── EGLImage.h │ │ │ ├── HostConnection.cpp │ │ │ ├── HostConnection.h │ │ │ ├── QemuPipeStream.cpp │ │ │ ├── QemuPipeStream.h │ │ │ ├── ThreadInfo.cpp │ │ │ ├── ThreadInfo.h │ │ │ └── gralloc_cb.h │ │ ├── egl │ │ │ ├── Android.mk │ │ │ ├── ClientAPIExts.cpp │ │ │ ├── ClientAPIExts.h │ │ │ ├── ClientAPIExts.in │ │ │ ├── egl.cfg │ │ │ ├── egl.cpp │ │ │ ├── eglContext.h │ │ │ ├── eglDisplay.cpp │ │ │ ├── eglDisplay.h │ │ │ └── egl_ftable.h │ │ ├── gralloc │ │ │ ├── Android.mk │ │ │ └── gralloc.cpp │ │ └── renderControl_enc │ │ │ ├── Android.mk │ │ │ ├── README │ │ │ ├── renderControl.attrib │ │ │ ├── renderControl.in │ │ │ ├── renderControl.types │ │ │ ├── renderControl_client_base.h │ │ │ ├── renderControl_client_context.cpp │ │ │ ├── renderControl_client_context.h │ │ │ ├── renderControl_client_proc.h │ │ │ ├── renderControl_enc.cpp │ │ │ ├── renderControl_enc.h │ │ │ ├── renderControl_entry.cpp │ │ │ ├── renderControl_ftable.h │ │ │ ├── renderControl_opcodes.h │ │ │ └── renderControl_types.h │ └── tests │ │ ├── gles_android_wrapper │ │ ├── Android.mk │ │ ├── ApiInitializer.h │ │ ├── CleanSpec.mk │ │ ├── ServerConnection.cpp │ │ ├── ServerConnection.h │ │ ├── ThreadInfo.cpp │ │ ├── ThreadInfo.h │ │ ├── egl.cfg │ │ ├── egl.cpp │ │ ├── egl_dispatch.cpp │ │ ├── egl_dispatch.h │ │ ├── egl_ftable.h │ │ ├── egl_proc.h │ │ ├── gles.cpp │ │ ├── gles_dispatch.cpp │ │ ├── gles_dispatch.h │ │ ├── gles_emul.cfg │ │ ├── gles_ftable.h │ │ ├── gles_proc.h │ │ ├── glesv1_emul_ifc.cpp │ │ └── glesv2_emul_ifc.cpp │ │ └── ut_rendercontrol_enc │ │ ├── Android.mk │ │ ├── ut_rendercontrol.attrib │ │ ├── ut_rendercontrol.in │ │ ├── ut_rendercontrol.types │ │ └── ut_rendercontrol_types.h ├── power │ ├── Android.mk │ └── power_qemu.c ├── qemu-props │ ├── Android.mk │ └── qemu-props.c ├── qemud │ ├── Android.mk │ └── qemud.c ├── sensors │ ├── Android.mk │ └── sensors_qemu.c ├── service │ ├── activity_manager_interface.cpp │ ├── activity_manager_interface.h │ ├── android_api_skeleton.cpp │ ├── android_api_skeleton.h │ ├── daemon.cpp │ ├── daemon.h │ ├── host_connector.cpp │ ├── host_connector.h │ ├── local_socket_connection.cpp │ ├── local_socket_connection.h │ ├── main.cpp │ ├── message_processor.cpp │ ├── message_processor.h │ ├── platform_api_stub.cpp │ ├── platform_api_stub.h │ ├── platform_server_proxy.cpp │ ├── platform_server_proxy.h │ ├── platform_service.cpp │ ├── platform_service.h │ ├── platform_service_interface.cpp │ └── platform_service_interface.h ├── ueventd.goldfish.rc └── vibrator │ ├── Android.mk │ └── vibrator_qemu.c ├── cmake ├── FindEGL.cmake ├── FindGLESv2.cmake ├── FindGMock.cmake └── LinuxCrossCompile.cmake ├── cmake_uninstall.cmake.in ├── cross-compile-chroot.sh ├── data ├── anbox.desktop ├── apparmor.json ├── manifest.json ├── ui │ └── loading-screen.png └── xsession.conf ├── debian ├── README.Debian ├── anbox-common.install ├── anbox-modules-dkms.install ├── anbox-modules-dkms.postinst ├── anbox-modules-dkms.prerm ├── changelog ├── compat ├── control ├── copyright ├── dirs ├── rules └── source │ ├── format │ └── options ├── docs ├── architecture.png ├── build-android.md ├── generate-emugl-source.md └── runtime-setup.md ├── external ├── CMakeLists.txt ├── android-emugl │ ├── CMakeLists.txt │ ├── DESIGN │ ├── README │ ├── README.anbox │ ├── common.mk │ ├── googletest.mk │ ├── host │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── ETC1 │ │ │ │ └── etc1.h │ │ │ ├── GLES │ │ │ │ ├── gl.h │ │ │ │ ├── glext.h │ │ │ │ └── glplatform.h │ │ │ ├── OpenGLESDispatch │ │ │ │ ├── EGLDispatch.h │ │ │ │ ├── GLESv1Dispatch.h │ │ │ │ ├── GLESv2Dispatch.h │ │ │ │ ├── gldefs.h │ │ │ │ └── gles_functions.h │ │ │ └── libOpenglRender │ │ │ │ └── IOStream.h │ │ ├── libs │ │ │ ├── CMakeLists.txt │ │ │ ├── GLESv1_dec │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GLESv1Decoder.cpp │ │ │ │ ├── GLESv1Decoder.h │ │ │ │ ├── gles1.addon │ │ │ │ ├── gles1.attrib │ │ │ │ ├── gles1.in │ │ │ │ ├── gles1.types │ │ │ │ └── gles1_types.h │ │ │ ├── GLESv2_dec │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GLESv2Decoder.cpp │ │ │ │ ├── GLESv2Decoder.h │ │ │ │ ├── gles2.attrib │ │ │ │ ├── gles2.in │ │ │ │ ├── gles2.types │ │ │ │ └── gles2_types.h │ │ │ ├── Translator │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── EGL │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ClientAPIExts.cpp │ │ │ │ │ ├── ClientAPIExts.h │ │ │ │ │ ├── ClientAPIExts.in │ │ │ │ │ ├── EglConfig.cpp │ │ │ │ │ ├── EglConfig.h │ │ │ │ │ ├── EglContext.cpp │ │ │ │ │ ├── EglContext.h │ │ │ │ │ ├── EglDisplay.cpp │ │ │ │ │ ├── EglDisplay.h │ │ │ │ │ ├── EglGlobalInfo.cpp │ │ │ │ │ ├── EglGlobalInfo.h │ │ │ │ │ ├── EglImp.cpp │ │ │ │ │ ├── EglOsApi.h │ │ │ │ │ ├── EglOsApi_darwin.cpp │ │ │ │ │ ├── EglOsApi_glx.cpp │ │ │ │ │ ├── EglOsApi_mir.cpp │ │ │ │ │ ├── EglOsApi_null.cpp │ │ │ │ │ ├── EglOsApi_wgl.cpp │ │ │ │ │ ├── EglPbufferSurface.cpp │ │ │ │ │ ├── EglPbufferSurface.h │ │ │ │ │ ├── EglSurface.cpp │ │ │ │ │ ├── EglSurface.h │ │ │ │ │ ├── EglThreadInfo.cpp │ │ │ │ │ ├── EglThreadInfo.h │ │ │ │ │ ├── EglValidate.cpp │ │ │ │ │ ├── EglValidate.h │ │ │ │ │ ├── EglWindowSurface.cpp │ │ │ │ │ ├── EglWindowSurface.h │ │ │ │ │ ├── MacNative.h │ │ │ │ │ ├── MacNative.m │ │ │ │ │ ├── MacPixelFormatsAttribs.h │ │ │ │ │ ├── MacPixelFormatsAttribs.m │ │ │ │ │ ├── ThreadInfo.cpp │ │ │ │ │ └── ThreadInfo.h │ │ │ │ ├── GLES_CM │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── GLEScmContext.cpp │ │ │ │ │ ├── GLEScmContext.h │ │ │ │ │ ├── GLEScmImp.cpp │ │ │ │ │ ├── GLEScmUtils.cpp │ │ │ │ │ ├── GLEScmUtils.h │ │ │ │ │ ├── GLEScmValidate.cpp │ │ │ │ │ └── GLEScmValidate.h │ │ │ │ ├── GLES_V2 │ │ │ │ │ ├── .GLESv2Imp.cpp.swp │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── GLESv2Context.cpp │ │ │ │ │ ├── GLESv2Context.h │ │ │ │ │ ├── GLESv2Imp.cpp │ │ │ │ │ ├── GLESv2Validate.cpp │ │ │ │ │ ├── GLESv2Validate.h │ │ │ │ │ ├── ProgramData.cpp │ │ │ │ │ ├── ProgramData.h │ │ │ │ │ ├── ShaderParser.cpp │ │ │ │ │ └── ShaderParser.h │ │ │ │ ├── GLcommon │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FramebufferData.cpp │ │ │ │ │ ├── GLDispatch.cpp │ │ │ │ │ ├── GLESbuffer.cpp │ │ │ │ │ ├── GLEScontext.cpp │ │ │ │ │ ├── GLESpointer.cpp │ │ │ │ │ ├── GLESvalidate.cpp │ │ │ │ │ ├── GLutils.cpp │ │ │ │ │ ├── PaletteTexture.cpp │ │ │ │ │ ├── RangeManip.cpp │ │ │ │ │ ├── TextureUtils.cpp │ │ │ │ │ ├── etc1.cpp │ │ │ │ │ └── objectNameManager.cpp │ │ │ │ └── include │ │ │ │ │ └── GLcommon │ │ │ │ │ ├── FramebufferData.h │ │ │ │ │ ├── GLDispatch.h │ │ │ │ │ ├── GLESbuffer.h │ │ │ │ │ ├── GLEScontext.h │ │ │ │ │ ├── GLESmacros.h │ │ │ │ │ ├── GLESpointer.h │ │ │ │ │ ├── GLESvalidate.h │ │ │ │ │ ├── GLLibrary.h │ │ │ │ │ ├── GLconversion_macros.h │ │ │ │ │ ├── GLutils.h │ │ │ │ │ ├── PaletteTexture.h │ │ │ │ │ ├── RangeManip.h │ │ │ │ │ ├── TextureUtils.h │ │ │ │ │ ├── TranslatorIfaces.h │ │ │ │ │ ├── etc1.h │ │ │ │ │ └── objectNameManager.h │ │ │ ├── libOpenGLESDispatch │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── EGLDispatch.cpp │ │ │ │ ├── GLESv1Dispatch.cpp │ │ │ │ ├── GLESv2Dispatch.cpp │ │ │ │ ├── gles1_extensions.entries │ │ │ │ ├── gles1_only.entries │ │ │ │ ├── gles2_extensions.entries │ │ │ │ ├── gles2_only.entries │ │ │ │ ├── gles3_only.entries │ │ │ │ ├── gles_common.entries │ │ │ │ ├── gles_extensions.entries │ │ │ │ ├── render_egl.entries │ │ │ │ └── render_egl_extensions.entries │ │ │ └── renderControl_dec │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── renderControl.attrib │ │ │ │ ├── renderControl.in │ │ │ │ ├── renderControl.types │ │ │ │ └── renderControl_types.h │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ └── emugen │ │ │ ├── ApiGen.cpp │ │ │ ├── ApiGen.h │ │ │ ├── CMakeLists.txt │ │ │ ├── EntryPoint.cpp │ │ │ ├── EntryPoint.h │ │ │ ├── Parser.cpp │ │ │ ├── Parser.h │ │ │ ├── Parser_unittest.cpp │ │ │ ├── README │ │ │ ├── TypeFactory.cpp │ │ │ ├── TypeFactory.h │ │ │ ├── Var.h │ │ │ ├── VarType.h │ │ │ ├── errors.h │ │ │ ├── getopt.c │ │ │ ├── getopt.h │ │ │ ├── main.cpp │ │ │ ├── strUtils.cpp │ │ │ ├── strUtils.h │ │ │ └── tests │ │ │ ├── run-tests.sh │ │ │ └── t.001 │ │ │ ├── expected │ │ │ ├── decoder │ │ │ │ ├── foo_dec.cpp │ │ │ │ ├── foo_dec.h │ │ │ │ ├── foo_opcodes.h │ │ │ │ ├── foo_server_context.cpp │ │ │ │ ├── foo_server_context.h │ │ │ │ └── foo_server_proc.h │ │ │ ├── encoder │ │ │ │ ├── foo_client_context.cpp │ │ │ │ ├── foo_client_context.h │ │ │ │ ├── foo_client_proc.h │ │ │ │ ├── foo_enc.cpp │ │ │ │ ├── foo_enc.h │ │ │ │ ├── foo_entry.cpp │ │ │ │ ├── foo_ftable.h │ │ │ │ └── foo_opcodes.h │ │ │ └── wrapper │ │ │ │ ├── foo_wrapper_context.cpp │ │ │ │ ├── foo_wrapper_context.h │ │ │ │ ├── foo_wrapper_entry.cpp │ │ │ │ └── foo_wrapper_proc.h │ │ │ └── input │ │ │ ├── foo.attrib │ │ │ ├── foo.in │ │ │ └── foo.types │ ├── scripts │ │ └── gen-headers.sh │ └── shared │ │ ├── CMakeLists.txt │ │ ├── OpenglCodecCommon │ │ ├── CMakeLists.txt │ │ ├── ChecksumCalculator.cpp │ │ ├── ChecksumCalculator.h │ │ ├── ChecksumCalculatorThreadInfo.cpp │ │ ├── ChecksumCalculatorThreadInfo.h │ │ ├── ErrorLog.h │ │ ├── GLDecoderContextData.h │ │ ├── Makefile │ │ ├── ProtocolUtils.h │ │ ├── glUtils.cpp │ │ ├── glUtils.h │ │ └── gl_base_types.h │ │ └── emugl │ │ ├── CMakeLists.txt │ │ └── common │ │ ├── CMakeLists.txt │ │ ├── condition_variable.h │ │ ├── condition_variable_unittest.cpp │ │ ├── condition_variable_win32.cpp │ │ ├── crash_reporter.cpp │ │ ├── crash_reporter.h │ │ ├── id_to_object_map.cpp │ │ ├── id_to_object_map.h │ │ ├── id_to_object_map_unittest.cpp │ │ ├── lazy_instance.cpp │ │ ├── lazy_instance.h │ │ ├── lazy_instance_unittest.cpp │ │ ├── logging.cpp │ │ ├── logging.h │ │ ├── message_channel.cpp │ │ ├── message_channel.h │ │ ├── message_channel_unittest.cpp │ │ ├── mutex.h │ │ ├── mutex_unittest.cpp │ │ ├── pod_vector.cpp │ │ ├── pod_vector.h │ │ ├── pod_vector_unittest.cpp │ │ ├── scoped_pointer_vector.h │ │ ├── shared_library.cpp │ │ ├── shared_library.h │ │ ├── shared_library_unittest.cpp │ │ ├── smart_ptr.cpp │ │ ├── smart_ptr.h │ │ ├── smart_ptr_unittest.cpp │ │ ├── sockets.cpp │ │ ├── sockets.h │ │ ├── testing │ │ ├── test_shared_library.cpp │ │ └── test_thread.h │ │ ├── thread.h │ │ ├── thread_pthread.cpp │ │ ├── thread_store.cpp │ │ ├── thread_store.h │ │ ├── thread_store_unittest.cpp │ │ ├── thread_unittest.cpp │ │ ├── thread_win32.cpp │ │ ├── unique_integer_map.h │ │ └── unique_integer_map_unittest.cpp ├── nsexec │ └── uidmapshift.c ├── process-cpp-minimal │ ├── CMakeLists.txt │ ├── COPYING │ ├── README.md │ ├── include │ │ └── core │ │ │ ├── connection.h │ │ │ ├── posix │ │ │ ├── child_process.h │ │ │ ├── exec.h │ │ │ ├── exit.h │ │ │ ├── fork.h │ │ │ ├── linux │ │ │ │ └── proc │ │ │ │ │ └── process │ │ │ │ │ ├── oom_adj.h │ │ │ │ │ ├── oom_score.h │ │ │ │ │ ├── oom_score_adj.h │ │ │ │ │ ├── stat.h │ │ │ │ │ └── state.h │ │ │ ├── process.h │ │ │ ├── process_group.h │ │ │ ├── signal.h │ │ │ ├── signalable.h │ │ │ ├── standard_stream.h │ │ │ ├── this_process.h │ │ │ ├── visibility.h │ │ │ └── wait.h │ │ │ ├── signal.h │ │ │ └── testing │ │ │ ├── cross_process_sync.h │ │ │ └── fork_and_run.h │ ├── src │ │ ├── CMakeLists.txt │ │ └── core │ │ │ ├── posix │ │ │ ├── CMakeLists.txt │ │ │ ├── backtrace.cpp │ │ │ ├── backtrace.h │ │ │ ├── child_process.cpp │ │ │ ├── exec.cpp │ │ │ ├── fork.cpp │ │ │ ├── linux │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── proc │ │ │ │ │ └── process │ │ │ │ │ ├── oom_adj.cpp │ │ │ │ │ ├── oom_score.cpp │ │ │ │ │ ├── oom_score_adj.cpp │ │ │ │ │ ├── stat.cpp │ │ │ │ │ └── state.cpp │ │ │ ├── process.cpp │ │ │ ├── process_group.cpp │ │ │ ├── signal.cpp │ │ │ ├── signalable.cpp │ │ │ ├── standard_stream.cpp │ │ │ ├── this_process.cpp │ │ │ └── wait.cpp │ │ │ └── testing │ │ │ ├── cross_process_sync.cpp │ │ │ └── fork_and_run.cpp │ └── symbols.map └── xdg │ ├── CMakeLists.txt │ ├── LICENSE │ ├── xdg.cpp │ ├── xdg.h │ └── xdg_test.cpp ├── kernel ├── 99-anbox.rules ├── anbox.conf ├── ashmem │ ├── Makefile │ ├── ashmem.c │ ├── ashmem.h │ ├── deps.c │ ├── dkms.conf │ └── uapi │ │ └── ashmem.h ├── binder │ ├── Makefile │ ├── binder.c │ ├── binder.h │ ├── binder_trace.h │ ├── deps.c │ └── dkms.conf └── patches │ ├── 0001-ipc-namespace-a-generic-per-ipc-pointer-and-peripc_o.patch │ └── 0002-binder-implement-namepsace-support-for-Android-binde.patch ├── products ├── AndroidProducts.mk ├── anbox.mk ├── anbox.xml ├── anbox_arm64.mk ├── anbox_armv7a_neon.mk ├── anbox_x86_64.mk ├── arm64 │ ├── BoardConfig.mk │ └── device.mk ├── armv7-a-neon │ ├── BoardConfig.mk │ └── device.mk ├── overlay │ └── frameworks │ │ └── base │ │ └── packages │ │ ├── SettingsProvider │ │ └── res │ │ │ └── values │ │ │ └── defaults.xml │ │ └── SystemUI │ │ └── res │ │ └── values │ │ └── config.xml ├── vendorsetup.sh └── x86_64 │ ├── BoardConfig.mk │ └── device.mk ├── robox ├── robox.json ├── scripts ├── anbox-bridge.sh ├── anbox-init.sh ├── android-sync.sh ├── build-with-docker.sh ├── clean-build.sh ├── clean-format.sh ├── collect-bug-info.sh ├── container-manager.sh ├── create-package.sh ├── gen-emugl-entries.py ├── gen-emugl-headers.sh ├── load-kmods.sh ├── mount-android.sh ├── setup-partial-chroot.sh ├── snap-wrapper.sh ├── start-container.sh └── update-emugl-sources.sh ├── snap └── gui │ ├── anbox.desktop │ └── icon.png ├── snapcraft.yaml ├── src ├── CMakeLists.txt ├── anbox │ ├── android │ │ ├── intent.cpp │ │ ├── intent.h │ │ ├── ip_config_builder.cpp │ │ └── ip_config_builder.h │ ├── application │ │ ├── database.cpp │ │ ├── database.h │ │ ├── launcher_storage.cpp │ │ ├── launcher_storage.h │ │ └── manager.h │ ├── audio │ │ ├── client_info.h │ │ ├── server.cpp │ │ ├── server.h │ │ ├── sink.h │ │ └── source.h │ ├── bridge │ │ ├── android_api_stub.cpp │ │ ├── android_api_stub.h │ │ ├── platform_api_skeleton.cpp │ │ ├── platform_api_skeleton.h │ │ ├── platform_message_processor.cpp │ │ └── platform_message_processor.h │ ├── build │ │ └── config.h.in │ ├── cli.cpp │ ├── cli.h │ ├── cmds │ │ ├── container_manager.cpp │ │ ├── container_manager.h │ │ ├── generate_ip_config.cpp │ │ ├── generate_ip_config.h │ │ ├── install.cpp │ │ ├── install.h │ │ ├── launch.cpp │ │ ├── launch.h │ │ ├── session_manager.cpp │ │ ├── session_manager.h │ │ ├── system_info.cpp │ │ ├── system_info.h │ │ ├── version.cpp │ │ └── version.h │ ├── common │ │ ├── binary_writer.cpp │ │ ├── binary_writer.h │ │ ├── dispatcher.cpp │ │ ├── dispatcher.h │ │ ├── fd.cpp │ │ ├── fd.h │ │ ├── fd_sets.h │ │ ├── loop_device.cpp │ │ ├── loop_device.h │ │ ├── loop_device_allocator.cpp │ │ ├── loop_device_allocator.h │ │ ├── message_channel.cpp │ │ ├── message_channel.h │ │ ├── mount_entry.cpp │ │ ├── mount_entry.h │ │ ├── scope_ptr.h │ │ ├── small_vector.h │ │ ├── type_traits.h │ │ ├── variable_length_array.h │ │ ├── wait_handle.cpp │ │ └── wait_handle.h │ ├── container │ │ ├── client.cpp │ │ ├── client.h │ │ ├── configuration.h │ │ ├── container.cpp │ │ ├── container.h │ │ ├── lxc_container.cpp │ │ ├── lxc_container.h │ │ ├── management_api_message_processor.cpp │ │ ├── management_api_message_processor.h │ │ ├── management_api_skeleton.cpp │ │ ├── management_api_skeleton.h │ │ ├── management_api_stub.cpp │ │ ├── management_api_stub.h │ │ ├── service.cpp │ │ └── service.h │ ├── daemon.cpp │ ├── daemon.h │ ├── dbus │ │ ├── codecs.h │ │ ├── interface.h │ │ ├── skeleton │ │ │ ├── application_manager.cpp │ │ │ ├── application_manager.h │ │ │ ├── service.cpp │ │ │ └── service.h │ │ └── stub │ │ │ ├── application_manager.cpp │ │ │ └── application_manager.h │ ├── defer_action.h │ ├── do_not_copy_or_move.h │ ├── graphics │ │ ├── buffer_queue.cpp │ │ ├── buffer_queue.h │ │ ├── buffered_io_stream.cpp │ │ ├── buffered_io_stream.h │ │ ├── density.h │ │ ├── emugl │ │ │ ├── ColorBuffer.cpp │ │ │ ├── ColorBuffer.h │ │ │ ├── DispatchTables.h │ │ │ ├── DisplayManager.cpp │ │ │ ├── DisplayManager.h │ │ │ ├── ReadBuffer.cpp │ │ │ ├── ReadBuffer.h │ │ │ ├── RenderApi.cpp │ │ │ ├── RenderApi.h │ │ │ ├── RenderContext.cpp │ │ │ ├── RenderContext.h │ │ │ ├── RenderControl.cpp │ │ │ ├── RenderControl.h │ │ │ ├── RenderThread.cpp │ │ │ ├── RenderThread.h │ │ │ ├── RenderThreadInfo.cpp │ │ │ ├── RenderThreadInfo.h │ │ │ ├── Renderable.cpp │ │ │ ├── Renderable.h │ │ │ ├── Renderer.cpp │ │ │ ├── Renderer.h │ │ │ ├── RendererConfig.cpp │ │ │ ├── RendererConfig.h │ │ │ ├── TextureDraw.cpp │ │ │ ├── TextureDraw.h │ │ │ ├── TextureResize.cpp │ │ │ ├── TextureResize.h │ │ │ ├── TimeUtils.cpp │ │ │ ├── TimeUtils.h │ │ │ ├── WindowSurface.cpp │ │ │ └── WindowSurface.h │ │ ├── gl_extensions.h │ │ ├── gl_renderer_server.cpp │ │ ├── gl_renderer_server.h │ │ ├── layer_composer.cpp │ │ ├── layer_composer.h │ │ ├── multi_window_composer_strategy.cpp │ │ ├── multi_window_composer_strategy.h │ │ ├── opengles_message_processor.cpp │ │ ├── opengles_message_processor.h │ │ ├── primitives.h │ │ ├── program_family.cpp │ │ ├── program_family.h │ │ ├── rect.cpp │ │ ├── rect.h │ │ ├── renderer.h │ │ ├── single_window_composer_strategy.cpp │ │ └── single_window_composer_strategy.h │ ├── input │ │ ├── device.cpp │ │ ├── device.h │ │ ├── manager.cpp │ │ └── manager.h │ ├── logger.cpp │ ├── logger.h │ ├── network │ │ ├── base_socket_messenger.cpp │ │ ├── base_socket_messenger.h │ │ ├── connection_context.cpp │ │ ├── connection_context.h │ │ ├── connection_creator.cpp │ │ ├── connection_creator.h │ │ ├── connections.h │ │ ├── connector.h │ │ ├── credentials.cpp │ │ ├── credentials.h │ │ ├── delegate_connection_creator.h │ │ ├── delegate_message_processor.cpp │ │ ├── delegate_message_processor.h │ │ ├── fd_socket_transmission.cpp │ │ ├── fd_socket_transmission.h │ │ ├── local_socket_messenger.cpp │ │ ├── local_socket_messenger.h │ │ ├── message_processor.h │ │ ├── message_receiver.h │ │ ├── message_sender.h │ │ ├── published_socket_connector.cpp │ │ ├── published_socket_connector.h │ │ ├── socket_connection.cpp │ │ ├── socket_connection.h │ │ ├── socket_helper.cpp │ │ ├── socket_helper.h │ │ ├── socket_messenger.cpp │ │ ├── socket_messenger.h │ │ ├── stream_socket_transport.cpp │ │ ├── stream_socket_transport.h │ │ ├── tcp_socket_connector.cpp │ │ ├── tcp_socket_connector.h │ │ ├── tcp_socket_messenger.cpp │ │ └── tcp_socket_messenger.h │ ├── not_reachable.cpp │ ├── not_reachable.h │ ├── optional.h │ ├── platform │ │ ├── base_platform.cpp │ │ ├── base_platform.h │ │ ├── null │ │ │ ├── platform.cpp │ │ │ └── platform.h │ │ └── sdl │ │ │ ├── audio_sink.cpp │ │ │ ├── audio_sink.h │ │ │ ├── keycode_converter.cpp │ │ │ ├── keycode_converter.h │ │ │ ├── mir_display_connection.cpp │ │ │ ├── mir_display_connection.h │ │ │ ├── platform.cpp │ │ │ ├── platform.h │ │ │ ├── sdl_wrapper.h │ │ │ ├── window.cpp │ │ │ └── window.h │ ├── protobuf │ │ ├── anbox_bridge.proto │ │ ├── anbox_container.proto │ │ ├── anbox_rpc.proto │ │ └── google_protobuf_guard.cpp │ ├── qemu │ │ ├── adb_message_processor.cpp │ │ ├── adb_message_processor.h │ │ ├── at_parser.cpp │ │ ├── at_parser.h │ │ ├── boot_properties_message_processor.cpp │ │ ├── boot_properties_message_processor.h │ │ ├── bootanimation_message_processor.cpp │ │ ├── bootanimation_message_processor.h │ │ ├── camera_message_processor.cpp │ │ ├── camera_message_processor.h │ │ ├── fingerprint_message_processor.cpp │ │ ├── fingerprint_message_processor.h │ │ ├── gsm_message_processor.cpp │ │ ├── gsm_message_processor.h │ │ ├── hwcontrol_message_processor.cpp │ │ ├── hwcontrol_message_processor.h │ │ ├── null_message_processor.cpp │ │ ├── null_message_processor.h │ │ ├── pipe_connection_creator.cpp │ │ ├── pipe_connection_creator.h │ │ ├── qemud_message_processor.cpp │ │ ├── qemud_message_processor.h │ │ ├── telephony_manager.cpp │ │ └── telephony_manager.h │ ├── rotation_status.h │ ├── rpc │ │ ├── channel.cpp │ │ ├── channel.h │ │ ├── connection_creator.cpp │ │ ├── connection_creator.h │ │ ├── constants.h │ │ ├── make_protobuf_object.h │ │ ├── message_processor.cpp │ │ ├── message_processor.h │ │ ├── pending_call_cache.cpp │ │ ├── pending_call_cache.h │ │ └── template_message_processor.h │ ├── runtime.cpp │ ├── runtime.h │ ├── sensors │ │ ├── sensors_common.h │ │ ├── sensors_data.cpp │ │ ├── sensors_data.h │ │ ├── sensors_manager.cpp │ │ ├── sensors_manager.h │ │ ├── sensors_message_processor.cpp │ │ ├── sensors_message_processor.h │ │ ├── sensors_sensor.cpp │ │ ├── sensors_sensor.h │ │ └── simulated_sensor_data.h │ ├── system_configuration.cpp │ ├── system_configuration.h │ ├── testing │ │ └── gtest_utils.h │ ├── ui │ │ ├── splash_screen.cpp │ │ └── splash_screen.h │ ├── utils.cpp │ ├── utils.h │ ├── utils │ │ ├── environment_file.cpp │ │ └── environment_file.h │ └── wm │ │ ├── display.cpp │ │ ├── display.h │ │ ├── manager.cpp │ │ ├── manager.h │ │ ├── multi_window_manager.cpp │ │ ├── multi_window_manager.h │ │ ├── single_window_manager.cpp │ │ ├── single_window_manager.h │ │ ├── stack.cpp │ │ ├── stack.h │ │ ├── task.cpp │ │ ├── task.h │ │ ├── window.cpp │ │ ├── window.h │ │ ├── window_state.cpp │ │ └── window_state.h └── main.cpp └── tests ├── CMakeLists.txt ├── anbox ├── CMakeLists.txt ├── android │ ├── CMakeLists.txt │ └── intent_tests.cpp ├── application │ ├── CMakeLists.txt │ └── restricted_manager_tests.cpp ├── common │ ├── CMakeLists.txt │ ├── binary_writer_tests.cpp │ ├── message_channel_tests.cpp │ ├── scope_ptr_tests.cpp │ ├── small_vector_tests.cpp │ └── type_traits_tests.cpp ├── graphics │ ├── CMakeLists.txt │ ├── buffer_queue_tests.cpp │ ├── buffered_io_stream_tests.cpp │ ├── layer_composer_tests.cpp │ └── render_control_tests.cpp └── support │ ├── CMakeLists.txt │ └── at_parser_tests.cpp └── robox └── scalability.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/AUTHORS -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/Android.mk -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/COPYING.GPL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/README.md -------------------------------------------------------------------------------- /android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/CMakeLists.txt -------------------------------------------------------------------------------- /android/anbox-touch.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/anbox-touch.idc -------------------------------------------------------------------------------- /android/anboxd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/anboxd.rc -------------------------------------------------------------------------------- /android/appmgr/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/Android.mk -------------------------------------------------------------------------------- /android/appmgr/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/AndroidManifest.xml -------------------------------------------------------------------------------- /android/appmgr/res/layout/app_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/res/layout/app_view.xml -------------------------------------------------------------------------------- /android/appmgr/res/layout/list_item_icon_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/res/layout/list_item_icon_text.xml -------------------------------------------------------------------------------- /android/appmgr/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/res/values/dimens.xml -------------------------------------------------------------------------------- /android/appmgr/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/res/values/strings.xml -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/AppListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/AppListAdapter.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/AppListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/AppListFragment.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/AppModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/AppModel.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/AppViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/AppViewActivity.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/AppsGridFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/AppsGridFragment.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/AppsLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/AppsLoader.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/GridFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/GridFragment.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/LauncherActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/LauncherActivity.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/LauncherService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/LauncherService.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/MainApplication.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/PackageEventReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/PackageEventReceiver.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/PackageIntentReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/PackageIntentReceiver.java -------------------------------------------------------------------------------- /android/appmgr/src/org/anbox/appmgr/PlatformService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/appmgr/src/org/anbox/appmgr/PlatformService.java -------------------------------------------------------------------------------- /android/audio/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/audio/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/audio/NOTICE -------------------------------------------------------------------------------- /android/audio/audio_hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/audio/audio_hw.cpp -------------------------------------------------------------------------------- /android/camera/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/Android.mk -------------------------------------------------------------------------------- /android/camera/CallbackNotifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/CallbackNotifier.cpp -------------------------------------------------------------------------------- /android/camera/CallbackNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/CallbackNotifier.h -------------------------------------------------------------------------------- /android/camera/Converters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/Converters.cpp -------------------------------------------------------------------------------- /android/camera/Converters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/Converters.h -------------------------------------------------------------------------------- /android/camera/EmulatedBaseCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedBaseCamera.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedBaseCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedBaseCamera.h -------------------------------------------------------------------------------- /android/camera/EmulatedCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCamera.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCamera.h -------------------------------------------------------------------------------- /android/camera/EmulatedCamera2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCamera2.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedCamera2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCamera2.h -------------------------------------------------------------------------------- /android/camera/EmulatedCamera3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCamera3.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedCamera3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCamera3.h -------------------------------------------------------------------------------- /android/camera/EmulatedCameraCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCameraCommon.h -------------------------------------------------------------------------------- /android/camera/EmulatedCameraDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCameraDevice.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedCameraDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCameraDevice.h -------------------------------------------------------------------------------- /android/camera/EmulatedCameraFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCameraFactory.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedCameraFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCameraFactory.h -------------------------------------------------------------------------------- /android/camera/EmulatedCameraHal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCameraHal.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedCameraHotplugThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCameraHotplugThread.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedCameraHotplugThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedCameraHotplugThread.h -------------------------------------------------------------------------------- /android/camera/EmulatedFakeCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedFakeCamera.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedFakeCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedFakeCamera.h -------------------------------------------------------------------------------- /android/camera/EmulatedFakeCamera2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedFakeCamera2.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedFakeCamera2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedFakeCamera2.h -------------------------------------------------------------------------------- /android/camera/EmulatedFakeCamera3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedFakeCamera3.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedFakeCamera3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedFakeCamera3.h -------------------------------------------------------------------------------- /android/camera/EmulatedFakeCameraDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedFakeCameraDevice.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedFakeCameraDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedFakeCameraDevice.h -------------------------------------------------------------------------------- /android/camera/EmulatedQemuCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedQemuCamera.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedQemuCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedQemuCamera.h -------------------------------------------------------------------------------- /android/camera/EmulatedQemuCamera2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedQemuCamera2.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedQemuCamera2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedQemuCamera2.h -------------------------------------------------------------------------------- /android/camera/EmulatedQemuCameraDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedQemuCameraDevice.cpp -------------------------------------------------------------------------------- /android/camera/EmulatedQemuCameraDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/EmulatedQemuCameraDevice.h -------------------------------------------------------------------------------- /android/camera/JpegCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/JpegCompressor.cpp -------------------------------------------------------------------------------- /android/camera/JpegCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/JpegCompressor.h -------------------------------------------------------------------------------- /android/camera/JpegStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/JpegStub.cpp -------------------------------------------------------------------------------- /android/camera/JpegStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/JpegStub.h -------------------------------------------------------------------------------- /android/camera/PreviewWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/PreviewWindow.cpp -------------------------------------------------------------------------------- /android/camera/PreviewWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/PreviewWindow.h -------------------------------------------------------------------------------- /android/camera/QemuClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/QemuClient.cpp -------------------------------------------------------------------------------- /android/camera/QemuClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/QemuClient.h -------------------------------------------------------------------------------- /android/camera/fake-pipeline2/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/fake-pipeline2/Base.h -------------------------------------------------------------------------------- /android/camera/fake-pipeline2/JpegCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/fake-pipeline2/JpegCompressor.cpp -------------------------------------------------------------------------------- /android/camera/fake-pipeline2/JpegCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/fake-pipeline2/JpegCompressor.h -------------------------------------------------------------------------------- /android/camera/fake-pipeline2/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/fake-pipeline2/Scene.cpp -------------------------------------------------------------------------------- /android/camera/fake-pipeline2/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/fake-pipeline2/Scene.h -------------------------------------------------------------------------------- /android/camera/fake-pipeline2/Sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/fake-pipeline2/Sensor.cpp -------------------------------------------------------------------------------- /android/camera/fake-pipeline2/Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/fake-pipeline2/Sensor.h -------------------------------------------------------------------------------- /android/camera/media_codecs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/media_codecs.xml -------------------------------------------------------------------------------- /android/camera/media_profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/camera/media_profiles.xml -------------------------------------------------------------------------------- /android/data/etc/apns-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/data/etc/apns-conf.xml -------------------------------------------------------------------------------- /android/fingerprint/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/fingerprint/Android.mk -------------------------------------------------------------------------------- /android/fingerprint/fingerprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/fingerprint/fingerprint.c -------------------------------------------------------------------------------- /android/fstab.goldfish: -------------------------------------------------------------------------------- 1 | # Android fstab file. 2 | -------------------------------------------------------------------------------- /android/gps/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/gps/Android.mk -------------------------------------------------------------------------------- /android/gps/gps_qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/gps/gps_qemu.c -------------------------------------------------------------------------------- /android/hwcomposer/hwcomposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/hwcomposer/hwcomposer.cpp -------------------------------------------------------------------------------- /android/init.goldfish.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/init.goldfish.rc -------------------------------------------------------------------------------- /android/init.goldfish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/init.goldfish.sh -------------------------------------------------------------------------------- /android/lights/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/lights/Android.mk -------------------------------------------------------------------------------- /android/lights/lights_qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/lights/lights_qemu.c -------------------------------------------------------------------------------- /android/opengl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/Android.mk -------------------------------------------------------------------------------- /android/opengl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/README -------------------------------------------------------------------------------- /android/opengl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/common.mk -------------------------------------------------------------------------------- /android/opengl/host/include/libOpenglRender/IOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/host/include/libOpenglRender/IOStream.h -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/Android.mk -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/ChecksumCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/ChecksumCalculator.cpp -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/ChecksumCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/ChecksumCalculator.h -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/ErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/ErrorLog.h -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/FixedBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/FixedBuffer.h -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/GLClientState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/GLClientState.cpp -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/GLClientState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/GLClientState.h -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/GLSharedGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/GLSharedGroup.cpp -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/GLSharedGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/GLSharedGroup.h -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/Makefile -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/SmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/SmartPtr.h -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/SocketStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/SocketStream.cpp -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/SocketStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/SocketStream.h -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/TcpStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/TcpStream.cpp -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/TcpStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/TcpStream.h -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/codec_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/codec_defs.h -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/glUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/glUtils.cpp -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/glUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/glUtils.h -------------------------------------------------------------------------------- /android/opengl/shared/OpenglCodecCommon/gl_base_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/shared/OpenglCodecCommon/gl_base_types.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv1/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1/Android.mk -------------------------------------------------------------------------------- /android/opengl/system/GLESv1/gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1/gl.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/Android.mk -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/GLEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/GLEncoder.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/GLEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/GLEncoder.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/GLEncoderUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/GLEncoderUtils.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/GLEncoderUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/GLEncoderUtils.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/gl_client_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/gl_client_context.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/gl_client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/gl_client_context.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/gl_client_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/gl_client_proc.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/gl_enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/gl_enc.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/gl_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/gl_enc.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/gl_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/gl_entry.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/gl_ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/gl_ftable.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/gl_opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/gl_opcodes.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv1_enc/gl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv1_enc/gl_types.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2/Android.mk -------------------------------------------------------------------------------- /android/opengl/system/GLESv2/gl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2/gl2.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/Android.mk -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/GL2Encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/GL2Encoder.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/GL2Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/GL2Encoder.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/GL2EncoderUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/GL2EncoderUtils.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/GL2EncoderUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/GL2EncoderUtils.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/gl2_client_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/gl2_client_context.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/gl2_client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/gl2_client_context.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/gl2_client_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/gl2_client_proc.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/gl2_enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/gl2_enc.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/gl2_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/gl2_enc.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/gl2_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/gl2_entry.cpp -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/gl2_ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/gl2_ftable.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/gl2_opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/gl2_opcodes.h -------------------------------------------------------------------------------- /android/opengl/system/GLESv2_enc/gl2_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/GLESv2_enc/gl2_types.h -------------------------------------------------------------------------------- /android/opengl/system/OpenglSystemCommon/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/OpenglSystemCommon/Android.mk -------------------------------------------------------------------------------- /android/opengl/system/OpenglSystemCommon/EGLClientIface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/OpenglSystemCommon/EGLClientIface.h -------------------------------------------------------------------------------- /android/opengl/system/OpenglSystemCommon/EGLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/OpenglSystemCommon/EGLImage.h -------------------------------------------------------------------------------- /android/opengl/system/OpenglSystemCommon/HostConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/OpenglSystemCommon/HostConnection.cpp -------------------------------------------------------------------------------- /android/opengl/system/OpenglSystemCommon/HostConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/OpenglSystemCommon/HostConnection.h -------------------------------------------------------------------------------- /android/opengl/system/OpenglSystemCommon/QemuPipeStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/OpenglSystemCommon/QemuPipeStream.cpp -------------------------------------------------------------------------------- /android/opengl/system/OpenglSystemCommon/QemuPipeStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/OpenglSystemCommon/QemuPipeStream.h -------------------------------------------------------------------------------- /android/opengl/system/OpenglSystemCommon/ThreadInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/OpenglSystemCommon/ThreadInfo.cpp -------------------------------------------------------------------------------- /android/opengl/system/OpenglSystemCommon/ThreadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/OpenglSystemCommon/ThreadInfo.h -------------------------------------------------------------------------------- /android/opengl/system/OpenglSystemCommon/gralloc_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/OpenglSystemCommon/gralloc_cb.h -------------------------------------------------------------------------------- /android/opengl/system/egl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/egl/Android.mk -------------------------------------------------------------------------------- /android/opengl/system/egl/ClientAPIExts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/egl/ClientAPIExts.cpp -------------------------------------------------------------------------------- /android/opengl/system/egl/ClientAPIExts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/egl/ClientAPIExts.h -------------------------------------------------------------------------------- /android/opengl/system/egl/ClientAPIExts.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/egl/ClientAPIExts.in -------------------------------------------------------------------------------- /android/opengl/system/egl/egl.cfg: -------------------------------------------------------------------------------- 1 | 0 0 emulation 2 | -------------------------------------------------------------------------------- /android/opengl/system/egl/egl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/egl/egl.cpp -------------------------------------------------------------------------------- /android/opengl/system/egl/eglContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/egl/eglContext.h -------------------------------------------------------------------------------- /android/opengl/system/egl/eglDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/egl/eglDisplay.cpp -------------------------------------------------------------------------------- /android/opengl/system/egl/eglDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/egl/eglDisplay.h -------------------------------------------------------------------------------- /android/opengl/system/egl/egl_ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/egl/egl_ftable.h -------------------------------------------------------------------------------- /android/opengl/system/gralloc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/gralloc/Android.mk -------------------------------------------------------------------------------- /android/opengl/system/gralloc/gralloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/gralloc/gralloc.cpp -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/Android.mk -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/README -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/renderControl.attrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/renderControl.attrib -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/renderControl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/renderControl.in -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/renderControl.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/renderControl.types -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/renderControl_client_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/renderControl_client_base.h -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/renderControl_client_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/renderControl_client_proc.h -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/renderControl_enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/renderControl_enc.cpp -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/renderControl_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/renderControl_enc.h -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/renderControl_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/renderControl_entry.cpp -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/renderControl_ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/renderControl_ftable.h -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/renderControl_opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/renderControl_opcodes.h -------------------------------------------------------------------------------- /android/opengl/system/renderControl_enc/renderControl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/system/renderControl_enc/renderControl_types.h -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/Android.mk -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/ApiInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/ApiInitializer.h -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/CleanSpec.mk -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/ServerConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/ServerConnection.cpp -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/ServerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/ServerConnection.h -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/ThreadInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/ThreadInfo.cpp -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/ThreadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/ThreadInfo.h -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/egl.cfg: -------------------------------------------------------------------------------- 1 | 0 0 emul -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/egl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/egl.cpp -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/egl_dispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/egl_dispatch.cpp -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/egl_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/egl_dispatch.h -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/egl_ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/egl_ftable.h -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/egl_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/egl_proc.h -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/gles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/gles.cpp -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/gles_dispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/gles_dispatch.cpp -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/gles_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/gles_dispatch.h -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/gles_emul.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/gles_emul.cfg -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/gles_ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/gles_ftable.h -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/gles_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/gles_proc.h -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/glesv1_emul_ifc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/glesv1_emul_ifc.cpp -------------------------------------------------------------------------------- /android/opengl/tests/gles_android_wrapper/glesv2_emul_ifc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/gles_android_wrapper/glesv2_emul_ifc.cpp -------------------------------------------------------------------------------- /android/opengl/tests/ut_rendercontrol_enc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/ut_rendercontrol_enc/Android.mk -------------------------------------------------------------------------------- /android/opengl/tests/ut_rendercontrol_enc/ut_rendercontrol.attrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/ut_rendercontrol_enc/ut_rendercontrol.attrib -------------------------------------------------------------------------------- /android/opengl/tests/ut_rendercontrol_enc/ut_rendercontrol.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/ut_rendercontrol_enc/ut_rendercontrol.in -------------------------------------------------------------------------------- /android/opengl/tests/ut_rendercontrol_enc/ut_rendercontrol.types: -------------------------------------------------------------------------------- 1 | uint32_t 32 0x%08x false 2 | 3 | -------------------------------------------------------------------------------- /android/opengl/tests/ut_rendercontrol_enc/ut_rendercontrol_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/opengl/tests/ut_rendercontrol_enc/ut_rendercontrol_types.h -------------------------------------------------------------------------------- /android/power/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/power/Android.mk -------------------------------------------------------------------------------- /android/power/power_qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/power/power_qemu.c -------------------------------------------------------------------------------- /android/qemu-props/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/qemu-props/Android.mk -------------------------------------------------------------------------------- /android/qemu-props/qemu-props.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/qemu-props/qemu-props.c -------------------------------------------------------------------------------- /android/qemud/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/qemud/Android.mk -------------------------------------------------------------------------------- /android/qemud/qemud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/qemud/qemud.c -------------------------------------------------------------------------------- /android/sensors/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/sensors/Android.mk -------------------------------------------------------------------------------- /android/sensors/sensors_qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/sensors/sensors_qemu.c -------------------------------------------------------------------------------- /android/service/activity_manager_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/activity_manager_interface.cpp -------------------------------------------------------------------------------- /android/service/activity_manager_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/activity_manager_interface.h -------------------------------------------------------------------------------- /android/service/android_api_skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/android_api_skeleton.cpp -------------------------------------------------------------------------------- /android/service/android_api_skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/android_api_skeleton.h -------------------------------------------------------------------------------- /android/service/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/daemon.cpp -------------------------------------------------------------------------------- /android/service/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/daemon.h -------------------------------------------------------------------------------- /android/service/host_connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/host_connector.cpp -------------------------------------------------------------------------------- /android/service/host_connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/host_connector.h -------------------------------------------------------------------------------- /android/service/local_socket_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/local_socket_connection.cpp -------------------------------------------------------------------------------- /android/service/local_socket_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/local_socket_connection.h -------------------------------------------------------------------------------- /android/service/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/main.cpp -------------------------------------------------------------------------------- /android/service/message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/message_processor.cpp -------------------------------------------------------------------------------- /android/service/message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/message_processor.h -------------------------------------------------------------------------------- /android/service/platform_api_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/platform_api_stub.cpp -------------------------------------------------------------------------------- /android/service/platform_api_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/platform_api_stub.h -------------------------------------------------------------------------------- /android/service/platform_server_proxy.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/service/platform_server_proxy.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/service/platform_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/platform_service.cpp -------------------------------------------------------------------------------- /android/service/platform_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/platform_service.h -------------------------------------------------------------------------------- /android/service/platform_service_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/platform_service_interface.cpp -------------------------------------------------------------------------------- /android/service/platform_service_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/service/platform_service_interface.h -------------------------------------------------------------------------------- /android/ueventd.goldfish.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/ueventd.goldfish.rc -------------------------------------------------------------------------------- /android/vibrator/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/vibrator/Android.mk -------------------------------------------------------------------------------- /android/vibrator/vibrator_qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/android/vibrator/vibrator_qemu.c -------------------------------------------------------------------------------- /cmake/FindEGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/cmake/FindEGL.cmake -------------------------------------------------------------------------------- /cmake/FindGLESv2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/cmake/FindGLESv2.cmake -------------------------------------------------------------------------------- /cmake/FindGMock.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/cmake/FindGMock.cmake -------------------------------------------------------------------------------- /cmake/LinuxCrossCompile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/cmake/LinuxCrossCompile.cmake -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /cross-compile-chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/cross-compile-chroot.sh -------------------------------------------------------------------------------- /data/anbox.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/data/anbox.desktop -------------------------------------------------------------------------------- /data/apparmor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/data/apparmor.json -------------------------------------------------------------------------------- /data/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/data/manifest.json -------------------------------------------------------------------------------- /data/ui/loading-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/data/ui/loading-screen.png -------------------------------------------------------------------------------- /data/xsession.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/data/xsession.conf -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/anbox-common.install: -------------------------------------------------------------------------------- 1 | etc/X11/Xsession.d/68anbox 2 | -------------------------------------------------------------------------------- /debian/anbox-modules-dkms.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/debian/anbox-modules-dkms.install -------------------------------------------------------------------------------- /debian/anbox-modules-dkms.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/debian/anbox-modules-dkms.postinst -------------------------------------------------------------------------------- /debian/anbox-modules-dkms.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/debian/anbox-modules-dkms.prerm -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- 1 | usr/src 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/debian/source/options -------------------------------------------------------------------------------- /docs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/docs/architecture.png -------------------------------------------------------------------------------- /docs/build-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/docs/build-android.md -------------------------------------------------------------------------------- /docs/generate-emugl-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/docs/generate-emugl-source.md -------------------------------------------------------------------------------- /docs/runtime-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/docs/runtime-setup.md -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/DESIGN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/DESIGN -------------------------------------------------------------------------------- /external/android-emugl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/README -------------------------------------------------------------------------------- /external/android-emugl/README.anbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/README.anbox -------------------------------------------------------------------------------- /external/android-emugl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/common.mk -------------------------------------------------------------------------------- /external/android-emugl/googletest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/googletest.mk -------------------------------------------------------------------------------- /external/android-emugl/host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/include/ETC1/etc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/include/ETC1/etc1.h -------------------------------------------------------------------------------- /external/android-emugl/host/include/GLES/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/include/GLES/gl.h -------------------------------------------------------------------------------- /external/android-emugl/host/include/GLES/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/include/GLES/glext.h -------------------------------------------------------------------------------- /external/android-emugl/host/include/GLES/glplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/include/GLES/glplatform.h -------------------------------------------------------------------------------- /external/android-emugl/host/include/OpenGLESDispatch/EGLDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/include/OpenGLESDispatch/EGLDispatch.h -------------------------------------------------------------------------------- /external/android-emugl/host/include/OpenGLESDispatch/gldefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/include/OpenGLESDispatch/gldefs.h -------------------------------------------------------------------------------- /external/android-emugl/host/include/libOpenglRender/IOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/include/libOpenglRender/IOStream.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv1_dec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv1_dec/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv1_dec/GLESv1Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv1_dec/GLESv1Decoder.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv1_dec/GLESv1Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv1_dec/GLESv1Decoder.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv1_dec/gles1.addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv1_dec/gles1.addon -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv1_dec/gles1.attrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv1_dec/gles1.attrib -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv1_dec/gles1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv1_dec/gles1.in -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv1_dec/gles1.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv1_dec/gles1.types -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv1_dec/gles1_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv1_dec/gles1_types.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv2_dec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv2_dec/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv2_dec/GLESv2Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv2_dec/GLESv2Decoder.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv2_dec/GLESv2Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv2_dec/GLESv2Decoder.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv2_dec/gles2.attrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv2_dec/gles2.attrib -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv2_dec/gles2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv2_dec/gles2.in -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv2_dec/gles2.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv2_dec/gles2.types -------------------------------------------------------------------------------- /external/android-emugl/host/libs/GLESv2_dec/gles2_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/GLESv2_dec/gles2_types.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/Android.mk -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/ClientAPIExts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/ClientAPIExts.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/ClientAPIExts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/ClientAPIExts.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/ClientAPIExts.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/ClientAPIExts.in -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglConfig.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglConfig.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglContext.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglContext.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglDisplay.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglDisplay.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglGlobalInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglGlobalInfo.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglGlobalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglGlobalInfo.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglImp.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglOsApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglOsApi.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglOsApi_darwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglOsApi_darwin.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglOsApi_glx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglOsApi_glx.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglOsApi_mir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglOsApi_mir.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglOsApi_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglOsApi_null.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglOsApi_wgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglOsApi_wgl.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglPbufferSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglPbufferSurface.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglSurface.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglSurface.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglThreadInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglThreadInfo.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglThreadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglThreadInfo.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglValidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglValidate.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglValidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglValidate.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglWindowSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglWindowSurface.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/EglWindowSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/EglWindowSurface.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/MacNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/MacNative.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/MacNative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/MacNative.m -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/ThreadInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/ThreadInfo.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/EGL/ThreadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/EGL/ThreadInfo.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_CM/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_CM/Android.mk -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_CM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_CM/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_CM/GLEScmContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_CM/GLEScmContext.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_CM/GLEScmImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_CM/GLEScmImp.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_CM/GLEScmUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_CM/GLEScmUtils.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_CM/GLEScmUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_CM/GLEScmUtils.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_CM/GLEScmValidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_CM/GLEScmValidate.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_V2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_V2/Android.mk -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_V2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_V2/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_V2/GLESv2Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_V2/GLESv2Context.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_V2/GLESv2Imp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_V2/GLESv2Imp.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_V2/GLESv2Validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_V2/GLESv2Validate.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_V2/ProgramData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_V2/ProgramData.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_V2/ProgramData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_V2/ProgramData.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_V2/ShaderParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_V2/ShaderParser.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLES_V2/ShaderParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLES_V2/ShaderParser.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLcommon/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLcommon/Android.mk -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLcommon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLcommon/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLcommon/GLDispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLcommon/GLDispatch.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLcommon/GLESbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLcommon/GLESbuffer.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLcommon/GLEScontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLcommon/GLEScontext.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLcommon/GLESpointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLcommon/GLESpointer.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLcommon/GLutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLcommon/GLutils.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLcommon/RangeManip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLcommon/RangeManip.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/GLcommon/etc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/GLcommon/etc1.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/libs/Translator/include/GLcommon/etc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/Translator/include/GLcommon/etc1.h -------------------------------------------------------------------------------- /external/android-emugl/host/libs/libOpenGLESDispatch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/libOpenGLESDispatch/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/libs/renderControl_dec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/libs/renderControl_dec/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(emugen) 2 | -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/ApiGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/ApiGen.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/ApiGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/ApiGen.h -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/EntryPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/EntryPoint.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/EntryPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/EntryPoint.h -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/Parser.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/Parser.h -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/Parser_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/Parser_unittest.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/README -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/TypeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/TypeFactory.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/TypeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/TypeFactory.h -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/Var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/Var.h -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/VarType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/VarType.h -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/errors.h -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/getopt.c -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/getopt.h -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/main.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/strUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/strUtils.cpp -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/strUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/strUtils.h -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/tests/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/tests/run-tests.sh -------------------------------------------------------------------------------- /external/android-emugl/host/tools/emugen/tests/t.001/input/foo.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/host/tools/emugen/tests/t.001/input/foo.in -------------------------------------------------------------------------------- /external/android-emugl/scripts/gen-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/scripts/gen-headers.sh -------------------------------------------------------------------------------- /external/android-emugl/shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/shared/OpenglCodecCommon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/OpenglCodecCommon/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/shared/OpenglCodecCommon/ErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/OpenglCodecCommon/ErrorLog.h -------------------------------------------------------------------------------- /external/android-emugl/shared/OpenglCodecCommon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/OpenglCodecCommon/Makefile -------------------------------------------------------------------------------- /external/android-emugl/shared/OpenglCodecCommon/ProtocolUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/OpenglCodecCommon/ProtocolUtils.h -------------------------------------------------------------------------------- /external/android-emugl/shared/OpenglCodecCommon/glUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/OpenglCodecCommon/glUtils.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/OpenglCodecCommon/glUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/OpenglCodecCommon/glUtils.h -------------------------------------------------------------------------------- /external/android-emugl/shared/OpenglCodecCommon/gl_base_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/OpenglCodecCommon/gl_base_types.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(common) 2 | -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/CMakeLists.txt -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/condition_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/condition_variable.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/crash_reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/crash_reporter.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/crash_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/crash_reporter.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/id_to_object_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/id_to_object_map.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/id_to_object_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/id_to_object_map.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/lazy_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/lazy_instance.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/lazy_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/lazy_instance.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/logging.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/logging.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/message_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/message_channel.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/message_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/message_channel.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/mutex.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/mutex_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/mutex_unittest.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/pod_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/pod_vector.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/pod_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/pod_vector.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/shared_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/shared_library.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/shared_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/shared_library.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/smart_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/smart_ptr.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/smart_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/smart_ptr.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/smart_ptr_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/smart_ptr_unittest.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/sockets.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/sockets.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/testing/test_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/testing/test_thread.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/thread.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/thread_pthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/thread_pthread.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/thread_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/thread_store.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/thread_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/thread_store.h -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/thread_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/thread_unittest.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/thread_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/thread_win32.cpp -------------------------------------------------------------------------------- /external/android-emugl/shared/emugl/common/unique_integer_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/android-emugl/shared/emugl/common/unique_integer_map.h -------------------------------------------------------------------------------- /external/nsexec/uidmapshift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/nsexec/uidmapshift.c -------------------------------------------------------------------------------- /external/process-cpp-minimal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/CMakeLists.txt -------------------------------------------------------------------------------- /external/process-cpp-minimal/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/COPYING -------------------------------------------------------------------------------- /external/process-cpp-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/README.md -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/connection.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/child_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/child_process.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/exec.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/exit.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/fork.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/process.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/process_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/process_group.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/signal.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/signalable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/signalable.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/standard_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/standard_stream.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/this_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/this_process.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/visibility.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/posix/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/posix/wait.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/signal.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/include/core/testing/fork_and_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/include/core/testing/fork_and_run.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/CMakeLists.txt -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/CMakeLists.txt -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/backtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/backtrace.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/backtrace.h -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/child_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/child_process.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/exec.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/fork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/fork.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/linux/CMakeLists.txt -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/process.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/process_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/process_group.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/signal.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/signalable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/signalable.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/standard_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/standard_stream.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/this_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/this_process.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/posix/wait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/posix/wait.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/src/core/testing/fork_and_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/src/core/testing/fork_and_run.cpp -------------------------------------------------------------------------------- /external/process-cpp-minimal/symbols.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/process-cpp-minimal/symbols.map -------------------------------------------------------------------------------- /external/xdg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/xdg/CMakeLists.txt -------------------------------------------------------------------------------- /external/xdg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/xdg/LICENSE -------------------------------------------------------------------------------- /external/xdg/xdg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/xdg/xdg.cpp -------------------------------------------------------------------------------- /external/xdg/xdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/xdg/xdg.h -------------------------------------------------------------------------------- /external/xdg/xdg_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/external/xdg/xdg_test.cpp -------------------------------------------------------------------------------- /kernel/99-anbox.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/99-anbox.rules -------------------------------------------------------------------------------- /kernel/anbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/anbox.conf -------------------------------------------------------------------------------- /kernel/ashmem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/ashmem/Makefile -------------------------------------------------------------------------------- /kernel/ashmem/ashmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/ashmem/ashmem.c -------------------------------------------------------------------------------- /kernel/ashmem/ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/ashmem/ashmem.h -------------------------------------------------------------------------------- /kernel/ashmem/deps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/ashmem/deps.c -------------------------------------------------------------------------------- /kernel/ashmem/dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/ashmem/dkms.conf -------------------------------------------------------------------------------- /kernel/ashmem/uapi/ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/ashmem/uapi/ashmem.h -------------------------------------------------------------------------------- /kernel/binder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/binder/Makefile -------------------------------------------------------------------------------- /kernel/binder/binder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/binder/binder.c -------------------------------------------------------------------------------- /kernel/binder/binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/binder/binder.h -------------------------------------------------------------------------------- /kernel/binder/binder_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/binder/binder_trace.h -------------------------------------------------------------------------------- /kernel/binder/deps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/binder/deps.c -------------------------------------------------------------------------------- /kernel/binder/dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/kernel/binder/dkms.conf -------------------------------------------------------------------------------- /products/AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/products/AndroidProducts.mk -------------------------------------------------------------------------------- /products/anbox.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/products/anbox.mk -------------------------------------------------------------------------------- /products/anbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/products/anbox.xml -------------------------------------------------------------------------------- /products/anbox_arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/products/anbox_arm64.mk -------------------------------------------------------------------------------- /products/anbox_armv7a_neon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/products/anbox_armv7a_neon.mk -------------------------------------------------------------------------------- /products/anbox_x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/products/anbox_x86_64.mk -------------------------------------------------------------------------------- /products/arm64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/products/arm64/BoardConfig.mk -------------------------------------------------------------------------------- /products/arm64/device.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/products/arm64/device.mk -------------------------------------------------------------------------------- /products/armv7-a-neon/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/products/armv7-a-neon/BoardConfig.mk -------------------------------------------------------------------------------- /products/armv7-a-neon/device.mk: -------------------------------------------------------------------------------- 1 | # Nothing yet 2 | -------------------------------------------------------------------------------- /products/vendorsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/products/vendorsetup.sh -------------------------------------------------------------------------------- /products/x86_64/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/products/x86_64/BoardConfig.mk -------------------------------------------------------------------------------- /products/x86_64/device.mk: -------------------------------------------------------------------------------- 1 | # Nothing yet 2 | -------------------------------------------------------------------------------- /robox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/robox -------------------------------------------------------------------------------- /robox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/robox.json -------------------------------------------------------------------------------- /scripts/anbox-bridge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/anbox-bridge.sh -------------------------------------------------------------------------------- /scripts/anbox-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/anbox-init.sh -------------------------------------------------------------------------------- /scripts/android-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/android-sync.sh -------------------------------------------------------------------------------- /scripts/build-with-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/build-with-docker.sh -------------------------------------------------------------------------------- /scripts/clean-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/clean-build.sh -------------------------------------------------------------------------------- /scripts/clean-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/clean-format.sh -------------------------------------------------------------------------------- /scripts/collect-bug-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/collect-bug-info.sh -------------------------------------------------------------------------------- /scripts/container-manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/container-manager.sh -------------------------------------------------------------------------------- /scripts/create-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/create-package.sh -------------------------------------------------------------------------------- /scripts/gen-emugl-entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/gen-emugl-entries.py -------------------------------------------------------------------------------- /scripts/gen-emugl-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/gen-emugl-headers.sh -------------------------------------------------------------------------------- /scripts/load-kmods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/load-kmods.sh -------------------------------------------------------------------------------- /scripts/mount-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/mount-android.sh -------------------------------------------------------------------------------- /scripts/setup-partial-chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/setup-partial-chroot.sh -------------------------------------------------------------------------------- /scripts/snap-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/snap-wrapper.sh -------------------------------------------------------------------------------- /scripts/start-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/start-container.sh -------------------------------------------------------------------------------- /scripts/update-emugl-sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/scripts/update-emugl-sources.sh -------------------------------------------------------------------------------- /snap/gui/anbox.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/snap/gui/anbox.desktop -------------------------------------------------------------------------------- /snap/gui/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/snap/gui/icon.png -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/anbox/android/intent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/android/intent.cpp -------------------------------------------------------------------------------- /src/anbox/android/intent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/android/intent.h -------------------------------------------------------------------------------- /src/anbox/android/ip_config_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/android/ip_config_builder.cpp -------------------------------------------------------------------------------- /src/anbox/android/ip_config_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/android/ip_config_builder.h -------------------------------------------------------------------------------- /src/anbox/application/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/application/database.cpp -------------------------------------------------------------------------------- /src/anbox/application/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/application/database.h -------------------------------------------------------------------------------- /src/anbox/application/launcher_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/application/launcher_storage.cpp -------------------------------------------------------------------------------- /src/anbox/application/launcher_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/application/launcher_storage.h -------------------------------------------------------------------------------- /src/anbox/application/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/application/manager.h -------------------------------------------------------------------------------- /src/anbox/audio/client_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/audio/client_info.h -------------------------------------------------------------------------------- /src/anbox/audio/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/audio/server.cpp -------------------------------------------------------------------------------- /src/anbox/audio/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/audio/server.h -------------------------------------------------------------------------------- /src/anbox/audio/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/audio/sink.h -------------------------------------------------------------------------------- /src/anbox/audio/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/audio/source.h -------------------------------------------------------------------------------- /src/anbox/bridge/android_api_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/bridge/android_api_stub.cpp -------------------------------------------------------------------------------- /src/anbox/bridge/android_api_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/bridge/android_api_stub.h -------------------------------------------------------------------------------- /src/anbox/bridge/platform_api_skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/bridge/platform_api_skeleton.cpp -------------------------------------------------------------------------------- /src/anbox/bridge/platform_api_skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/bridge/platform_api_skeleton.h -------------------------------------------------------------------------------- /src/anbox/bridge/platform_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/bridge/platform_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/bridge/platform_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/bridge/platform_message_processor.h -------------------------------------------------------------------------------- /src/anbox/build/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/build/config.h.in -------------------------------------------------------------------------------- /src/anbox/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cli.cpp -------------------------------------------------------------------------------- /src/anbox/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cli.h -------------------------------------------------------------------------------- /src/anbox/cmds/container_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/container_manager.cpp -------------------------------------------------------------------------------- /src/anbox/cmds/container_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/container_manager.h -------------------------------------------------------------------------------- /src/anbox/cmds/generate_ip_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/generate_ip_config.cpp -------------------------------------------------------------------------------- /src/anbox/cmds/generate_ip_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/generate_ip_config.h -------------------------------------------------------------------------------- /src/anbox/cmds/install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/install.cpp -------------------------------------------------------------------------------- /src/anbox/cmds/install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/install.h -------------------------------------------------------------------------------- /src/anbox/cmds/launch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/launch.cpp -------------------------------------------------------------------------------- /src/anbox/cmds/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/launch.h -------------------------------------------------------------------------------- /src/anbox/cmds/session_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/session_manager.cpp -------------------------------------------------------------------------------- /src/anbox/cmds/session_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/session_manager.h -------------------------------------------------------------------------------- /src/anbox/cmds/system_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/system_info.cpp -------------------------------------------------------------------------------- /src/anbox/cmds/system_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/system_info.h -------------------------------------------------------------------------------- /src/anbox/cmds/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/version.cpp -------------------------------------------------------------------------------- /src/anbox/cmds/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/cmds/version.h -------------------------------------------------------------------------------- /src/anbox/common/binary_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/binary_writer.cpp -------------------------------------------------------------------------------- /src/anbox/common/binary_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/binary_writer.h -------------------------------------------------------------------------------- /src/anbox/common/dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/dispatcher.cpp -------------------------------------------------------------------------------- /src/anbox/common/dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/dispatcher.h -------------------------------------------------------------------------------- /src/anbox/common/fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/fd.cpp -------------------------------------------------------------------------------- /src/anbox/common/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/fd.h -------------------------------------------------------------------------------- /src/anbox/common/fd_sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/fd_sets.h -------------------------------------------------------------------------------- /src/anbox/common/loop_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/loop_device.cpp -------------------------------------------------------------------------------- /src/anbox/common/loop_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/loop_device.h -------------------------------------------------------------------------------- /src/anbox/common/loop_device_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/loop_device_allocator.cpp -------------------------------------------------------------------------------- /src/anbox/common/loop_device_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/loop_device_allocator.h -------------------------------------------------------------------------------- /src/anbox/common/message_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/message_channel.cpp -------------------------------------------------------------------------------- /src/anbox/common/message_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/message_channel.h -------------------------------------------------------------------------------- /src/anbox/common/mount_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/mount_entry.cpp -------------------------------------------------------------------------------- /src/anbox/common/mount_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/mount_entry.h -------------------------------------------------------------------------------- /src/anbox/common/scope_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/scope_ptr.h -------------------------------------------------------------------------------- /src/anbox/common/small_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/small_vector.h -------------------------------------------------------------------------------- /src/anbox/common/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/type_traits.h -------------------------------------------------------------------------------- /src/anbox/common/variable_length_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/variable_length_array.h -------------------------------------------------------------------------------- /src/anbox/common/wait_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/wait_handle.cpp -------------------------------------------------------------------------------- /src/anbox/common/wait_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/common/wait_handle.h -------------------------------------------------------------------------------- /src/anbox/container/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/client.cpp -------------------------------------------------------------------------------- /src/anbox/container/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/client.h -------------------------------------------------------------------------------- /src/anbox/container/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/configuration.h -------------------------------------------------------------------------------- /src/anbox/container/container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/container.cpp -------------------------------------------------------------------------------- /src/anbox/container/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/container.h -------------------------------------------------------------------------------- /src/anbox/container/lxc_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/lxc_container.cpp -------------------------------------------------------------------------------- /src/anbox/container/lxc_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/lxc_container.h -------------------------------------------------------------------------------- /src/anbox/container/management_api_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/management_api_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/container/management_api_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/management_api_message_processor.h -------------------------------------------------------------------------------- /src/anbox/container/management_api_skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/management_api_skeleton.cpp -------------------------------------------------------------------------------- /src/anbox/container/management_api_skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/management_api_skeleton.h -------------------------------------------------------------------------------- /src/anbox/container/management_api_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/management_api_stub.cpp -------------------------------------------------------------------------------- /src/anbox/container/management_api_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/management_api_stub.h -------------------------------------------------------------------------------- /src/anbox/container/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/service.cpp -------------------------------------------------------------------------------- /src/anbox/container/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/container/service.h -------------------------------------------------------------------------------- /src/anbox/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/daemon.cpp -------------------------------------------------------------------------------- /src/anbox/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/daemon.h -------------------------------------------------------------------------------- /src/anbox/dbus/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/dbus/codecs.h -------------------------------------------------------------------------------- /src/anbox/dbus/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/dbus/interface.h -------------------------------------------------------------------------------- /src/anbox/dbus/skeleton/application_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/dbus/skeleton/application_manager.cpp -------------------------------------------------------------------------------- /src/anbox/dbus/skeleton/application_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/dbus/skeleton/application_manager.h -------------------------------------------------------------------------------- /src/anbox/dbus/skeleton/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/dbus/skeleton/service.cpp -------------------------------------------------------------------------------- /src/anbox/dbus/skeleton/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/dbus/skeleton/service.h -------------------------------------------------------------------------------- /src/anbox/dbus/stub/application_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/dbus/stub/application_manager.cpp -------------------------------------------------------------------------------- /src/anbox/dbus/stub/application_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/dbus/stub/application_manager.h -------------------------------------------------------------------------------- /src/anbox/defer_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/defer_action.h -------------------------------------------------------------------------------- /src/anbox/do_not_copy_or_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/do_not_copy_or_move.h -------------------------------------------------------------------------------- /src/anbox/graphics/buffer_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/buffer_queue.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/buffer_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/buffer_queue.h -------------------------------------------------------------------------------- /src/anbox/graphics/buffered_io_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/buffered_io_stream.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/buffered_io_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/buffered_io_stream.h -------------------------------------------------------------------------------- /src/anbox/graphics/density.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/density.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/ColorBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/ColorBuffer.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/ColorBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/ColorBuffer.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/DispatchTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/DispatchTables.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/DisplayManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/DisplayManager.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/DisplayManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/DisplayManager.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/ReadBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/ReadBuffer.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/ReadBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/ReadBuffer.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RenderApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RenderApi.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RenderApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RenderApi.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RenderContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RenderContext.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RenderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RenderContext.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RenderControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RenderControl.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RenderControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RenderControl.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RenderThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RenderThread.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RenderThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RenderThread.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RenderThreadInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RenderThreadInfo.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RenderThreadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RenderThreadInfo.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/Renderable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/Renderable.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/Renderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/Renderable.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/Renderer.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/Renderer.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RendererConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RendererConfig.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/RendererConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/RendererConfig.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/TextureDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/TextureDraw.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/TextureDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/TextureDraw.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/TextureResize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/TextureResize.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/TextureResize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/TextureResize.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/TimeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/TimeUtils.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/TimeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/TimeUtils.h -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/WindowSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/WindowSurface.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/emugl/WindowSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/emugl/WindowSurface.h -------------------------------------------------------------------------------- /src/anbox/graphics/gl_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/gl_extensions.h -------------------------------------------------------------------------------- /src/anbox/graphics/gl_renderer_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/gl_renderer_server.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/gl_renderer_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/gl_renderer_server.h -------------------------------------------------------------------------------- /src/anbox/graphics/layer_composer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/layer_composer.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/layer_composer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/layer_composer.h -------------------------------------------------------------------------------- /src/anbox/graphics/multi_window_composer_strategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/multi_window_composer_strategy.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/multi_window_composer_strategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/multi_window_composer_strategy.h -------------------------------------------------------------------------------- /src/anbox/graphics/opengles_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/opengles_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/opengles_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/opengles_message_processor.h -------------------------------------------------------------------------------- /src/anbox/graphics/primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/primitives.h -------------------------------------------------------------------------------- /src/anbox/graphics/program_family.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/program_family.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/program_family.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/program_family.h -------------------------------------------------------------------------------- /src/anbox/graphics/rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/rect.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/rect.h -------------------------------------------------------------------------------- /src/anbox/graphics/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/renderer.h -------------------------------------------------------------------------------- /src/anbox/graphics/single_window_composer_strategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/single_window_composer_strategy.cpp -------------------------------------------------------------------------------- /src/anbox/graphics/single_window_composer_strategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/graphics/single_window_composer_strategy.h -------------------------------------------------------------------------------- /src/anbox/input/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/input/device.cpp -------------------------------------------------------------------------------- /src/anbox/input/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/input/device.h -------------------------------------------------------------------------------- /src/anbox/input/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/input/manager.cpp -------------------------------------------------------------------------------- /src/anbox/input/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/input/manager.h -------------------------------------------------------------------------------- /src/anbox/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/logger.cpp -------------------------------------------------------------------------------- /src/anbox/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/logger.h -------------------------------------------------------------------------------- /src/anbox/network/base_socket_messenger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/base_socket_messenger.cpp -------------------------------------------------------------------------------- /src/anbox/network/base_socket_messenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/base_socket_messenger.h -------------------------------------------------------------------------------- /src/anbox/network/connection_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/connection_context.cpp -------------------------------------------------------------------------------- /src/anbox/network/connection_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/connection_context.h -------------------------------------------------------------------------------- /src/anbox/network/connection_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/connection_creator.cpp -------------------------------------------------------------------------------- /src/anbox/network/connection_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/connection_creator.h -------------------------------------------------------------------------------- /src/anbox/network/connections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/connections.h -------------------------------------------------------------------------------- /src/anbox/network/connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/connector.h -------------------------------------------------------------------------------- /src/anbox/network/credentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/credentials.cpp -------------------------------------------------------------------------------- /src/anbox/network/credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/credentials.h -------------------------------------------------------------------------------- /src/anbox/network/delegate_connection_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/delegate_connection_creator.h -------------------------------------------------------------------------------- /src/anbox/network/delegate_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/delegate_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/network/delegate_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/delegate_message_processor.h -------------------------------------------------------------------------------- /src/anbox/network/fd_socket_transmission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/fd_socket_transmission.cpp -------------------------------------------------------------------------------- /src/anbox/network/fd_socket_transmission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/fd_socket_transmission.h -------------------------------------------------------------------------------- /src/anbox/network/local_socket_messenger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/local_socket_messenger.cpp -------------------------------------------------------------------------------- /src/anbox/network/local_socket_messenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/local_socket_messenger.h -------------------------------------------------------------------------------- /src/anbox/network/message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/message_processor.h -------------------------------------------------------------------------------- /src/anbox/network/message_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/message_receiver.h -------------------------------------------------------------------------------- /src/anbox/network/message_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/message_sender.h -------------------------------------------------------------------------------- /src/anbox/network/published_socket_connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/published_socket_connector.cpp -------------------------------------------------------------------------------- /src/anbox/network/published_socket_connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/published_socket_connector.h -------------------------------------------------------------------------------- /src/anbox/network/socket_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/socket_connection.cpp -------------------------------------------------------------------------------- /src/anbox/network/socket_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/socket_connection.h -------------------------------------------------------------------------------- /src/anbox/network/socket_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/socket_helper.cpp -------------------------------------------------------------------------------- /src/anbox/network/socket_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/socket_helper.h -------------------------------------------------------------------------------- /src/anbox/network/socket_messenger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anbox/network/socket_messenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/socket_messenger.h -------------------------------------------------------------------------------- /src/anbox/network/stream_socket_transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/stream_socket_transport.cpp -------------------------------------------------------------------------------- /src/anbox/network/stream_socket_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/stream_socket_transport.h -------------------------------------------------------------------------------- /src/anbox/network/tcp_socket_connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/tcp_socket_connector.cpp -------------------------------------------------------------------------------- /src/anbox/network/tcp_socket_connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/tcp_socket_connector.h -------------------------------------------------------------------------------- /src/anbox/network/tcp_socket_messenger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/tcp_socket_messenger.cpp -------------------------------------------------------------------------------- /src/anbox/network/tcp_socket_messenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/network/tcp_socket_messenger.h -------------------------------------------------------------------------------- /src/anbox/not_reachable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/not_reachable.cpp -------------------------------------------------------------------------------- /src/anbox/not_reachable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/not_reachable.h -------------------------------------------------------------------------------- /src/anbox/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/optional.h -------------------------------------------------------------------------------- /src/anbox/platform/base_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/base_platform.cpp -------------------------------------------------------------------------------- /src/anbox/platform/base_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/base_platform.h -------------------------------------------------------------------------------- /src/anbox/platform/null/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/null/platform.cpp -------------------------------------------------------------------------------- /src/anbox/platform/null/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/null/platform.h -------------------------------------------------------------------------------- /src/anbox/platform/sdl/audio_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/sdl/audio_sink.cpp -------------------------------------------------------------------------------- /src/anbox/platform/sdl/audio_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/sdl/audio_sink.h -------------------------------------------------------------------------------- /src/anbox/platform/sdl/keycode_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/sdl/keycode_converter.cpp -------------------------------------------------------------------------------- /src/anbox/platform/sdl/keycode_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/sdl/keycode_converter.h -------------------------------------------------------------------------------- /src/anbox/platform/sdl/mir_display_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/sdl/mir_display_connection.cpp -------------------------------------------------------------------------------- /src/anbox/platform/sdl/mir_display_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/sdl/mir_display_connection.h -------------------------------------------------------------------------------- /src/anbox/platform/sdl/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/sdl/platform.cpp -------------------------------------------------------------------------------- /src/anbox/platform/sdl/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/sdl/platform.h -------------------------------------------------------------------------------- /src/anbox/platform/sdl/sdl_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/sdl/sdl_wrapper.h -------------------------------------------------------------------------------- /src/anbox/platform/sdl/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/sdl/window.cpp -------------------------------------------------------------------------------- /src/anbox/platform/sdl/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/platform/sdl/window.h -------------------------------------------------------------------------------- /src/anbox/protobuf/anbox_bridge.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/protobuf/anbox_bridge.proto -------------------------------------------------------------------------------- /src/anbox/protobuf/anbox_container.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/protobuf/anbox_container.proto -------------------------------------------------------------------------------- /src/anbox/protobuf/anbox_rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/protobuf/anbox_rpc.proto -------------------------------------------------------------------------------- /src/anbox/protobuf/google_protobuf_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/protobuf/google_protobuf_guard.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/adb_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/adb_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/adb_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/adb_message_processor.h -------------------------------------------------------------------------------- /src/anbox/qemu/at_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/at_parser.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/at_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/at_parser.h -------------------------------------------------------------------------------- /src/anbox/qemu/boot_properties_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/boot_properties_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/boot_properties_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/boot_properties_message_processor.h -------------------------------------------------------------------------------- /src/anbox/qemu/bootanimation_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/bootanimation_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/bootanimation_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/bootanimation_message_processor.h -------------------------------------------------------------------------------- /src/anbox/qemu/camera_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/camera_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/camera_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/camera_message_processor.h -------------------------------------------------------------------------------- /src/anbox/qemu/fingerprint_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/fingerprint_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/fingerprint_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/fingerprint_message_processor.h -------------------------------------------------------------------------------- /src/anbox/qemu/gsm_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/gsm_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/gsm_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/gsm_message_processor.h -------------------------------------------------------------------------------- /src/anbox/qemu/hwcontrol_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/hwcontrol_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/hwcontrol_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/hwcontrol_message_processor.h -------------------------------------------------------------------------------- /src/anbox/qemu/null_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/null_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/null_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/null_message_processor.h -------------------------------------------------------------------------------- /src/anbox/qemu/pipe_connection_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/pipe_connection_creator.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/pipe_connection_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/pipe_connection_creator.h -------------------------------------------------------------------------------- /src/anbox/qemu/qemud_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/qemud_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/qemud_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/qemud_message_processor.h -------------------------------------------------------------------------------- /src/anbox/qemu/telephony_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/telephony_manager.cpp -------------------------------------------------------------------------------- /src/anbox/qemu/telephony_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/qemu/telephony_manager.h -------------------------------------------------------------------------------- /src/anbox/rotation_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rotation_status.h -------------------------------------------------------------------------------- /src/anbox/rpc/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rpc/channel.cpp -------------------------------------------------------------------------------- /src/anbox/rpc/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rpc/channel.h -------------------------------------------------------------------------------- /src/anbox/rpc/connection_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rpc/connection_creator.cpp -------------------------------------------------------------------------------- /src/anbox/rpc/connection_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rpc/connection_creator.h -------------------------------------------------------------------------------- /src/anbox/rpc/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rpc/constants.h -------------------------------------------------------------------------------- /src/anbox/rpc/make_protobuf_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rpc/make_protobuf_object.h -------------------------------------------------------------------------------- /src/anbox/rpc/message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rpc/message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/rpc/message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rpc/message_processor.h -------------------------------------------------------------------------------- /src/anbox/rpc/pending_call_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rpc/pending_call_cache.cpp -------------------------------------------------------------------------------- /src/anbox/rpc/pending_call_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rpc/pending_call_cache.h -------------------------------------------------------------------------------- /src/anbox/rpc/template_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/rpc/template_message_processor.h -------------------------------------------------------------------------------- /src/anbox/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/runtime.cpp -------------------------------------------------------------------------------- /src/anbox/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/runtime.h -------------------------------------------------------------------------------- /src/anbox/sensors/sensors_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/sensors/sensors_common.h -------------------------------------------------------------------------------- /src/anbox/sensors/sensors_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/sensors/sensors_data.cpp -------------------------------------------------------------------------------- /src/anbox/sensors/sensors_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/sensors/sensors_data.h -------------------------------------------------------------------------------- /src/anbox/sensors/sensors_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/sensors/sensors_manager.cpp -------------------------------------------------------------------------------- /src/anbox/sensors/sensors_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/sensors/sensors_manager.h -------------------------------------------------------------------------------- /src/anbox/sensors/sensors_message_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/sensors/sensors_message_processor.cpp -------------------------------------------------------------------------------- /src/anbox/sensors/sensors_message_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/sensors/sensors_message_processor.h -------------------------------------------------------------------------------- /src/anbox/sensors/sensors_sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/sensors/sensors_sensor.cpp -------------------------------------------------------------------------------- /src/anbox/sensors/sensors_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/sensors/sensors_sensor.h -------------------------------------------------------------------------------- /src/anbox/sensors/simulated_sensor_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/sensors/simulated_sensor_data.h -------------------------------------------------------------------------------- /src/anbox/system_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/system_configuration.cpp -------------------------------------------------------------------------------- /src/anbox/system_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/system_configuration.h -------------------------------------------------------------------------------- /src/anbox/testing/gtest_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/testing/gtest_utils.h -------------------------------------------------------------------------------- /src/anbox/ui/splash_screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/ui/splash_screen.cpp -------------------------------------------------------------------------------- /src/anbox/ui/splash_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/ui/splash_screen.h -------------------------------------------------------------------------------- /src/anbox/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/utils.cpp -------------------------------------------------------------------------------- /src/anbox/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/utils.h -------------------------------------------------------------------------------- /src/anbox/utils/environment_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/utils/environment_file.cpp -------------------------------------------------------------------------------- /src/anbox/utils/environment_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/utils/environment_file.h -------------------------------------------------------------------------------- /src/anbox/wm/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/display.cpp -------------------------------------------------------------------------------- /src/anbox/wm/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/display.h -------------------------------------------------------------------------------- /src/anbox/wm/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/manager.cpp -------------------------------------------------------------------------------- /src/anbox/wm/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/manager.h -------------------------------------------------------------------------------- /src/anbox/wm/multi_window_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/multi_window_manager.cpp -------------------------------------------------------------------------------- /src/anbox/wm/multi_window_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/multi_window_manager.h -------------------------------------------------------------------------------- /src/anbox/wm/single_window_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/single_window_manager.cpp -------------------------------------------------------------------------------- /src/anbox/wm/single_window_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/single_window_manager.h -------------------------------------------------------------------------------- /src/anbox/wm/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/stack.cpp -------------------------------------------------------------------------------- /src/anbox/wm/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/stack.h -------------------------------------------------------------------------------- /src/anbox/wm/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/task.cpp -------------------------------------------------------------------------------- /src/anbox/wm/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/task.h -------------------------------------------------------------------------------- /src/anbox/wm/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/window.cpp -------------------------------------------------------------------------------- /src/anbox/wm/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/window.h -------------------------------------------------------------------------------- /src/anbox/wm/window_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/window_state.cpp -------------------------------------------------------------------------------- /src/anbox/wm/window_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/anbox/wm/window_state.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/src/main.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/anbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/CMakeLists.txt -------------------------------------------------------------------------------- /tests/anbox/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/android/CMakeLists.txt -------------------------------------------------------------------------------- /tests/anbox/android/intent_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/android/intent_tests.cpp -------------------------------------------------------------------------------- /tests/anbox/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/application/CMakeLists.txt -------------------------------------------------------------------------------- /tests/anbox/application/restricted_manager_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/application/restricted_manager_tests.cpp -------------------------------------------------------------------------------- /tests/anbox/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/common/CMakeLists.txt -------------------------------------------------------------------------------- /tests/anbox/common/binary_writer_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/common/binary_writer_tests.cpp -------------------------------------------------------------------------------- /tests/anbox/common/message_channel_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/common/message_channel_tests.cpp -------------------------------------------------------------------------------- /tests/anbox/common/scope_ptr_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/common/scope_ptr_tests.cpp -------------------------------------------------------------------------------- /tests/anbox/common/small_vector_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/common/small_vector_tests.cpp -------------------------------------------------------------------------------- /tests/anbox/common/type_traits_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/common/type_traits_tests.cpp -------------------------------------------------------------------------------- /tests/anbox/graphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/graphics/CMakeLists.txt -------------------------------------------------------------------------------- /tests/anbox/graphics/buffer_queue_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/graphics/buffer_queue_tests.cpp -------------------------------------------------------------------------------- /tests/anbox/graphics/buffered_io_stream_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/graphics/buffered_io_stream_tests.cpp -------------------------------------------------------------------------------- /tests/anbox/graphics/layer_composer_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/graphics/layer_composer_tests.cpp -------------------------------------------------------------------------------- /tests/anbox/graphics/render_control_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/graphics/render_control_tests.cpp -------------------------------------------------------------------------------- /tests/anbox/support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/support/CMakeLists.txt -------------------------------------------------------------------------------- /tests/anbox/support/at_parser_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/anbox/support/at_parser_tests.cpp -------------------------------------------------------------------------------- /tests/robox/scalability.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lag-linaro/robox/HEAD/tests/robox/scalability.sh --------------------------------------------------------------------------------