├── .bazelci └── presubmit.yml ├── .bazelignore ├── .bazelrc ├── .clang-format ├── .github └── workflows │ ├── fedora-cmake.yml │ ├── generator-tool.yml │ ├── ubuntu-cmake-contrib.yml │ └── ubuntu-cmake.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── MODULE.bazel ├── MODULE.bazel.lock ├── README.md ├── WORKSPACE.bzlmod ├── cmake ├── SapiBuildDefs.cmake ├── SapiDeps.cmake ├── SapiFetchContent.cmake ├── SapiOptions.cmake ├── SapiUtil.cmake ├── abseil-cpp.cmake ├── benchmark.cmake ├── googletest.cmake ├── libcap.cmake ├── libcap_capability.h.in ├── libffi.cmake ├── libunwind.cmake ├── modules │ ├── FindLibcap.cmake │ └── FindLibffi.cmake ├── protobuf.cmake ├── sandbox2.pc.in ├── sapi.pc.in ├── sapi_force_cxx_linkage.cc.in └── zlib.cmake ├── contrib ├── CMakeLists.txt ├── README.md ├── brotli │ ├── CMakeLists.txt │ ├── brotli.gen.h.in │ ├── example │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── files │ │ ├── text │ │ ├── text.chunk.brotli │ │ └── text.full.brotli │ ├── sandboxed.h │ ├── test │ │ ├── CMakeLists.txt │ │ └── brotli_test.cc │ └── utils │ │ ├── utils_brotli.cc │ │ ├── utils_brotli.h │ │ ├── utils_brotli_dec.cc │ │ ├── utils_brotli_dec.h │ │ ├── utils_brotli_enc.cc │ │ └── utils_brotli_enc.h ├── c-blosc │ ├── CMakeLists.txt │ ├── example │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── files │ │ ├── text │ │ ├── text.blosclz │ │ ├── text.lz4 │ │ ├── text.lz4hc │ │ ├── text.zlib │ │ └── text.zstd │ ├── sandboxed.h │ ├── test │ │ ├── CMakeLists.txt │ │ └── test_blosc.cc │ └── utils │ │ ├── utils_blosc.cc │ │ └── utils_blosc.h ├── hunspell │ ├── CMakeLists.txt │ ├── example │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── files │ │ ├── utf8.aff │ │ ├── utf8.dic │ │ ├── utf8.good │ │ └── utf8.wrong │ ├── sandboxed.h │ └── test │ │ ├── CMakeLists.txt │ │ └── hunspell_test.cc ├── jsonnet │ ├── CMakeLists.txt │ ├── README.md │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── jsonnet_base_example.cc │ │ ├── jsonnet_base_transaction.cc │ │ ├── jsonnet_codes │ │ │ ├── arith.jsonnet │ │ │ ├── formatter_example.jsonnet │ │ │ ├── imports.jsonnet │ │ │ ├── multiple_files_example.jsonnet │ │ │ ├── negroni.jsonnet │ │ │ ├── utils.libsonnet │ │ │ └── yaml_stream_example.jsonnet │ │ ├── jsonnet_codes_expected_output │ │ │ ├── arith.golden │ │ │ ├── first_file.json │ │ │ ├── negroni.golden │ │ │ ├── second_file.json │ │ │ └── yaml_stream_example.yaml │ │ ├── jsonnet_formatter_example.cc │ │ ├── jsonnet_multiple_files_example.cc │ │ └── jsonnet_yaml_stream_example.cc │ ├── jsonnet.patch │ ├── jsonnet_base_sandbox.h │ ├── jsonnet_base_transaction.h │ ├── jsonnet_helper.cc │ ├── jsonnet_helper.h │ └── jsonnet_tests.cc ├── libidn2 │ ├── CMakeLists.txt │ ├── libidn2_sapi.cc │ ├── libidn2_sapi.h │ └── tests │ │ ├── CMakeLists.txt │ │ └── libidn2_sapi_test.cc ├── libraw │ ├── CMakeLists.txt │ ├── example │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── files │ │ └── img.raw │ ├── raw.gen.h.in │ ├── sandboxed.h │ ├── test │ │ ├── CMakeLists.txt │ │ └── libraw_test.cc │ └── utils │ │ ├── utils_libraw.cc │ │ └── utils_libraw.h ├── libtiff │ ├── CMakeLists.txt │ ├── README.md │ ├── example │ │ ├── CMakeLists.txt │ │ └── main_sandboxed.cc │ ├── sandboxed.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── check_tag.cc │ │ ├── check_tag.h │ │ ├── defer_strile_writing.cc │ │ ├── helper.cc │ │ ├── helper.h │ │ ├── images │ │ │ └── quad-tile.jpg.tiff │ │ ├── long_tag.cc │ │ ├── raw_decode.cc │ │ └── short_tag.cc │ └── wrapper │ │ ├── CMakeLists.txt │ │ ├── func.cc │ │ └── func.h ├── libxls │ ├── CMakeLists.txt │ ├── README.md │ ├── example │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── files │ │ ├── t1.xls │ │ ├── t2.xls │ │ └── t3.xls │ ├── sandboxed.h │ ├── test │ │ ├── CMakeLists.txt │ │ └── libxls_test.cc │ ├── utils │ │ ├── utils_libxls.cc │ │ └── utils_libxls.h │ └── xls.gen.h.in ├── libzip │ ├── CMakeLists.txt │ ├── example │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── files │ │ ├── binary │ │ ├── notinzip │ │ ├── text │ │ └── zip.zip │ ├── sandboxed.h │ ├── test │ │ ├── CMakeLists.txt │ │ └── test_zip.cc │ ├── utils │ │ ├── utils_zip.cc │ │ └── utils_zip.h │ └── wrapper │ │ ├── CMakeLists.txt │ │ ├── wrapper_zip.cc │ │ └── wrapper_zip.h ├── lodepng │ ├── CMakeLists.txt │ ├── README.md │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── helpers.cc │ │ ├── helpers.h │ │ ├── main_sandboxed.cc │ │ ├── main_unit_test.cc │ │ ├── main_unsandboxed.cc │ │ └── sandbox.h │ └── lodepng.gen.h.in ├── pffft │ ├── CMakeLists.txt │ ├── README.md │ └── main_pffft_sandboxed.cc ├── turbojpeg │ ├── CMakeLists.txt │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── sample.jpeg │ │ ├── sample.rgb │ │ └── turbojpeg_sapi_test.cc │ └── turbojpeg_sapi.h ├── uriparser │ ├── CMakeLists.txt │ ├── example │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── sandboxed.h │ ├── test │ │ ├── CMakeLists.txt │ │ └── test_uriparser.cc │ ├── uri.gen.h.in │ └── utils │ │ ├── utils_uriparser.cc │ │ └── utils_uriparser.h ├── woff2 │ ├── CMakeLists.txt │ ├── testdata │ │ ├── Roboto-Regular.ttf │ │ └── Roboto-Regular.woff2 │ ├── woff2_sapi.h │ ├── woff2_sapi_test.cc │ ├── woff2_wrapper.cc │ └── woff2_wrapper.h ├── zopfli │ ├── CMakeLists.txt │ ├── example │ │ ├── CMakeLists.txt │ │ └── main.cc │ ├── files │ │ ├── binary │ │ └── text │ ├── sandboxed.h │ ├── test │ │ ├── CMakeLists.txt │ │ └── zopfli_test.cc │ ├── utils │ │ ├── utils_zopfli.cc │ │ └── utils_zopfli.h │ └── wrapper │ │ ├── CMakeLists.txt │ │ ├── wrapper_zopfli.cc │ │ └── wrapper_zopfli.h └── zstd │ ├── CMakeLists.txt │ ├── example │ ├── CMakeLists.txt │ └── main.cc │ ├── files │ ├── text │ ├── text.blob.zstd │ └── text.stream.zstd │ ├── sandboxed.h │ ├── test │ ├── CMakeLists.txt │ └── zstd_test.cc │ ├── utils │ ├── utils_zstd.cc │ └── utils_zstd.h │ └── wrapper │ ├── CMakeLists.txt │ ├── wrapper_zstd.cc │ └── wrapper_zstd.h ├── oss-internship-2020 ├── README.md ├── curl │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── callbacks │ │ ├── callbacks.cc │ │ └── callbacks.h │ ├── curl_util.cc │ ├── curl_util.h │ ├── curl_wrapper │ │ ├── CMakeLists.txt │ │ ├── curl_wrapper.cc │ │ └── curl_wrapper.h │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── example1.cc │ │ ├── example2.cc │ │ ├── example3.cc │ │ ├── example4.cc │ │ ├── example5.cc │ │ └── example6.cc │ ├── sandbox.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── test_utils.cc │ │ ├── test_utils.h │ │ └── tests.cc ├── gdal │ ├── CANYrelief1-geo.tif │ ├── CMakeLists.txt │ ├── README.md │ ├── raster.cc │ └── raster_to_gtiff │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── gdal_sandbox.h │ │ ├── get_raster_data.cc │ │ ├── get_raster_data.h │ │ ├── gtiff_converter.cc │ │ ├── gtiff_converter.h │ │ ├── raster_to_gtiff.cc │ │ ├── testdata │ │ ├── SP27GTIF.tif │ │ └── cea.tif │ │ ├── tests.cc │ │ ├── utils.cc │ │ └── utils.h ├── guetzli │ ├── .bazelrc │ ├── BUILD.bazel │ ├── README.md │ ├── WORKSPACE.bazel │ ├── external │ │ ├── butteraugli.BUILD │ │ ├── guetzli.BUILD │ │ ├── jpeg.BUILD │ │ ├── png.BUILD │ │ └── zlib.BUILD │ ├── guetzli_entry_points.cc │ ├── guetzli_entry_points.h │ ├── guetzli_sandbox.h │ ├── guetzli_sandboxed.cc │ ├── guetzli_sapi_test.cc │ ├── guetzli_transaction.cc │ ├── guetzli_transaction.h │ ├── guetzli_transaction_test.cc │ └── testdata │ │ ├── bees.png │ │ ├── bees_reference.jpg │ │ ├── nature.jpg │ │ └── nature_reference.jpg ├── libarchive │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── sandbox.h │ │ ├── sapi_minitar.cc │ │ ├── sapi_minitar.h │ │ └── sapi_minitar_main.cc │ ├── functions_to_sandbox.txt │ ├── ld_preload_example │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── minitar.cc │ │ ├── minitar.h │ │ ├── minitar_main.cc │ │ └── sapi_minitar.cc │ ├── patches │ │ ├── archive_virtual.patch │ │ └── header.patch │ └── test │ │ ├── CMakeLists.txt │ │ └── minitar_test.cc ├── libpng │ ├── CMakeLists.txt │ ├── README.md │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── example1.cc │ │ └── example2.cc │ ├── images │ │ ├── pngtest.png │ │ ├── pngtopng_pngtest.png │ │ ├── red_ball.png │ │ ├── rgbtobgr_red_ball.png │ │ └── test_output.png │ ├── sandboxed.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── basic_test.cc │ │ ├── extended_test.cc │ │ ├── helper.cc │ │ ├── helper.h │ │ └── libpng.h │ └── wrapper │ │ ├── CMakeLists.txt │ │ ├── func.cc │ │ └── func.h ├── libuv │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── callbacks │ │ ├── callbacks.cc │ │ └── callbacks.h │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── helloworld.cc │ │ ├── idle-basic.cc │ │ └── uvcat.cc │ ├── generator │ │ └── wrapper_generator.py │ └── tests │ │ ├── CMakeLists.txt │ │ ├── test_array.cc │ │ ├── test_callback.cc │ │ ├── test_error.cc │ │ ├── test_loop.cc │ │ └── test_os.cc └── openjpeg │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ └── examples │ ├── CMakeLists.txt │ ├── convert.patch │ ├── convert_h.patch │ └── decompress_example.cc └── sandboxed_api ├── BUILD ├── CMakeLists.txt ├── bazel ├── BUILD ├── build_defs.bzl ├── embed_data.bzl ├── llvm_config.bzl ├── proto.bzl ├── repositories.bzl └── sapi.bzl ├── call.h ├── client.cc ├── config.cc ├── config.h ├── docs ├── getting-started.md └── images │ └── sapi-lockup-vertical.png ├── embed_file.cc ├── embed_file.h ├── embed_file_test.cc ├── examples ├── CMakeLists.txt ├── hello_sapi │ ├── .bazelrc │ ├── BUILD │ ├── CMakeLists.txt │ ├── WORKSPACE │ ├── hello_lib.cc │ ├── hello_main.cc │ └── hello_transacted.cc ├── stringop │ ├── BUILD │ ├── CMakeLists.txt │ ├── main_stringop.cc │ ├── stringop.cc │ └── stringop_params.proto ├── sum │ ├── BUILD │ ├── CMakeLists.txt │ ├── main_sum.cc │ ├── main_sum_test.sh │ ├── sum.c │ ├── sum_cpp.cc │ └── sum_params.proto └── zlib │ ├── BUILD │ ├── CMakeLists.txt │ ├── main_zlib.cc │ ├── main_zlib_test.sh │ └── unsandboxed_zlib.cc ├── file_toc.h ├── lenval_core.h ├── rpcchannel.cc ├── rpcchannel.h ├── sandbox.cc ├── sandbox.h ├── sandbox2 ├── BUILD ├── CMakeLists.txt ├── README.md ├── allowlists │ ├── BUILD │ ├── CMakeLists.txt │ ├── all_syscalls.h │ ├── map_exec.h │ ├── mount_propagation.h │ ├── namespaces.h │ ├── seccomp_speculation.h │ ├── trace_all_syscalls.h │ └── unrestricted_networking.h ├── bpf_evaluator.cc ├── bpf_evaluator.h ├── bpf_evaluator_test.cc ├── bpfdisassembler.cc ├── bpfdisassembler.h ├── bpfdisassembler_test.cc ├── buffer.cc ├── buffer.h ├── buffer_test.cc ├── client.cc ├── client.h ├── comms.cc ├── comms.h ├── comms_test.cc ├── comms_test.proto ├── examples │ ├── CMakeLists.txt │ ├── crc4 │ │ ├── BUILD │ │ ├── CMakeLists.txt │ │ ├── crc4bin.cc │ │ ├── crc4sandbox.cc │ │ └── crc4sandbox_test.cc │ ├── custom_fork │ │ ├── BUILD │ │ ├── CMakeLists.txt │ │ ├── custom_fork_bin.cc │ │ ├── custom_fork_sandbox.cc │ │ └── custom_fork_sandbox_test.sh │ ├── network │ │ ├── BUILD │ │ ├── CMakeLists.txt │ │ ├── network_bin.cc │ │ ├── network_sandbox.cc │ │ └── network_sandbox_test.sh │ ├── network_proxy │ │ ├── BUILD │ │ ├── CMakeLists.txt │ │ ├── networkproxy_bin.cc │ │ ├── networkproxy_sandbox.cc │ │ └── networkproxy_sandbox_test.sh │ ├── static │ │ ├── BUILD │ │ ├── CMakeLists.txt │ │ ├── static_bin.cc │ │ ├── static_sandbox.cc │ │ └── static_sandbox_test.sh │ ├── tool │ │ ├── BUILD │ │ ├── CMakeLists.txt │ │ ├── sandbox2tool.cc │ │ └── sandbox2tool_test.sh │ └── zlib │ │ ├── BUILD │ │ ├── CMakeLists.txt │ │ ├── zpipe.c │ │ └── zpipe_sandbox.cc ├── executor.cc ├── executor.h ├── flags.cc ├── flags.h ├── fork_client.cc ├── fork_client.h ├── forkingclient.cc ├── forkingclient.h ├── forkserver.cc ├── forkserver.h ├── forkserver.proto ├── forkserver_bin.cc ├── forkserver_test.cc ├── global_forkclient.cc ├── global_forkclient.h ├── global_forkclient_lib_ctor.cc ├── ipc.cc ├── ipc.h ├── ipc_test.cc ├── limits.h ├── limits_test.cc ├── logserver.cc ├── logserver.h ├── logserver.proto ├── logsink.cc ├── logsink.h ├── monitor_base.cc ├── monitor_base.h ├── monitor_ptrace.cc ├── monitor_ptrace.h ├── monitor_unotify.cc ├── monitor_unotify.h ├── mount_tree.proto ├── mounts.cc ├── mounts.h ├── mounts_test.cc ├── namespace.cc ├── namespace.h ├── namespace_test.cc ├── network_proxy │ ├── BUILD │ ├── CMakeLists.txt │ ├── client.cc │ ├── client.h │ ├── filtering.cc │ ├── filtering.h │ ├── filtering_test.cc │ ├── server.cc │ ├── server.h │ ├── testing.cc │ └── testing.h ├── network_proxy_test.cc ├── notify.h ├── notify_test.cc ├── policy.cc ├── policy.h ├── policy_test.cc ├── policybuilder.cc ├── policybuilder.h ├── policybuilder_test.cc ├── regs.cc ├── regs.h ├── regs_test.cc ├── result.cc ├── result.h ├── sandbox2.cc ├── sandbox2.h ├── sandbox2_test.cc ├── sanitizer.cc ├── sanitizer.h ├── sanitizer_test.cc ├── stack_trace.cc ├── stack_trace.h ├── stack_trace_test.cc ├── syscall.cc ├── syscall.h ├── syscall_defs.cc ├── syscall_defs.h ├── syscall_test.cc ├── testcases │ ├── BUILD │ ├── CMakeLists.txt │ ├── abort.cc │ ├── add_policy_on_syscalls.cc │ ├── buffer.cc │ ├── close_fds.cc │ ├── custom_fork.cc │ ├── execveat.cc │ ├── ipc.cc │ ├── limits.cc │ ├── malloc.cc │ ├── minimal.cc │ ├── namespace.cc │ ├── network_proxy.cc │ ├── personality.cc │ ├── pidcomms.cc │ ├── policy.cc │ ├── posix_timers.cc │ ├── sandbox_detection.cc │ ├── sanitizer.cc │ ├── sleep.cc │ ├── starve.cc │ ├── symbolize.cc │ ├── symbolize_lib.cc │ ├── symbolize_lib.h │ ├── terminate_process_group.cc │ ├── terminate_process_group_sandboxee.cc │ ├── tsync.cc │ └── util_communicate.cc ├── testing.h ├── trace_all_syscalls.h ├── unwind │ ├── BUILD │ ├── CMakeLists.txt │ ├── ptrace_hook.cc │ ├── ptrace_hook.h │ ├── unwind.cc │ ├── unwind.h │ └── unwind.proto ├── util.cc ├── util.h ├── util │ ├── BUILD │ ├── CMakeLists.txt │ ├── bpf_helper.c │ ├── bpf_helper.h │ ├── bpf_helper_test.cc │ ├── deadline_manager.cc │ ├── deadline_manager.h │ ├── deadline_manager_test.cc │ ├── demangle.cc │ ├── demangle.h │ ├── elf_parser.cc │ ├── elf_parser.h │ ├── library_resolver.cc │ ├── library_resolver.h │ ├── maps_parser.cc │ ├── maps_parser.h │ ├── maps_parser_test.cc │ ├── minielf.cc │ ├── minielf.h │ ├── minielf_test.cc │ ├── pid_waiter.cc │ ├── pid_waiter.h │ ├── pid_waiter_test.cc │ ├── seccomp_unotify.cc │ ├── seccomp_unotify.h │ ├── seccomp_unotify_test.cc │ ├── syscall_trap.cc │ ├── syscall_trap.h │ └── testdata │ │ ├── chrome_grte_header │ │ └── hello_world ├── util_c.cc ├── util_c.h └── util_test.cc ├── sapi_test.cc ├── testcases ├── BUILD ├── replaced_library.cc ├── replaced_library.h └── replaced_library_test.cc ├── testing.cc ├── testing.h ├── tools ├── clang_generator │ ├── BUILD │ ├── CMakeLists.txt │ ├── compilation_database.cc │ ├── compilation_database.h │ ├── diagnostics.cc │ ├── diagnostics.h │ ├── emitter.cc │ ├── emitter.h │ ├── emitter_base.cc │ ├── emitter_base.h │ ├── emitter_test.cc │ ├── frontend_action_test_util.cc │ ├── frontend_action_test_util.h │ ├── generator.cc │ ├── generator.h │ ├── generator_tool.cc │ ├── includes.h │ ├── sandboxed_library_emitter.cc │ ├── sandboxed_library_emitter.h │ ├── symbol_list_emitter.cc │ ├── symbol_list_emitter.h │ ├── testdata │ │ └── simple_functions.cc │ ├── types.cc │ └── types.h ├── filewrapper │ ├── BUILD │ ├── CMakeLists.txt │ ├── filewrapper.cc │ ├── filewrapper_test.cc │ └── testdata │ │ └── filewrapper_embedded.bin └── python_generator │ ├── BUILD │ ├── build_test.sh │ ├── sapi_code.py │ ├── sapi_code_test.py │ ├── sapi_code_test_util.py │ ├── sapi_generator.py │ └── testdata │ ├── main.cc │ ├── tests.cc │ ├── tests.h │ └── tests2.cc ├── transaction.cc ├── transaction.h ├── util ├── BUILD ├── CMakeLists.txt ├── file_helpers.cc ├── file_helpers.h ├── file_helpers_test.cc ├── fileops.cc ├── fileops.h ├── fileops_test.cc ├── path.cc ├── path.h ├── path_test.cc ├── proto_arg.proto ├── proto_helper.cc ├── proto_helper.h ├── raw_logging.cc ├── raw_logging.h ├── runfiles.h ├── runfiles_bazel.cc ├── runfiles_nobazel.cc ├── status.cc ├── status.h ├── status.proto ├── status_macros.h ├── status_macros_test.cc ├── status_test.cc ├── strerror.cc ├── strerror.h ├── strerror_test.cc ├── temp_file.cc ├── temp_file.h ├── temp_file_test.cc └── thread.h ├── var_abstract.cc ├── var_abstract.h ├── var_array.h ├── var_int.cc ├── var_int.h ├── var_lenval.cc ├── var_lenval.h ├── var_proto.h ├── var_ptr.h ├── var_reg.h ├── var_struct.h ├── var_type.h ├── var_void.h └── vars.h /.bazelci/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/.bazelci/presubmit.yml -------------------------------------------------------------------------------- /.bazelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/.bazelignore -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/.bazelrc -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/fedora-cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/.github/workflows/fedora-cmake.yml -------------------------------------------------------------------------------- /.github/workflows/generator-tool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/.github/workflows/generator-tool.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu-cmake-contrib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/.github/workflows/ubuntu-cmake-contrib.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu-cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/.github/workflows/ubuntu-cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /MODULE.bazel.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/MODULE.bazel.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE.bzlmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/WORKSPACE.bzlmod -------------------------------------------------------------------------------- /cmake/SapiBuildDefs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/SapiBuildDefs.cmake -------------------------------------------------------------------------------- /cmake/SapiDeps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/SapiDeps.cmake -------------------------------------------------------------------------------- /cmake/SapiFetchContent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/SapiFetchContent.cmake -------------------------------------------------------------------------------- /cmake/SapiOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/SapiOptions.cmake -------------------------------------------------------------------------------- /cmake/SapiUtil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/SapiUtil.cmake -------------------------------------------------------------------------------- /cmake/abseil-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/abseil-cpp.cmake -------------------------------------------------------------------------------- /cmake/benchmark.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/benchmark.cmake -------------------------------------------------------------------------------- /cmake/googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/googletest.cmake -------------------------------------------------------------------------------- /cmake/libcap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/libcap.cmake -------------------------------------------------------------------------------- /cmake/libcap_capability.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/libcap_capability.h.in -------------------------------------------------------------------------------- /cmake/libffi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/libffi.cmake -------------------------------------------------------------------------------- /cmake/libunwind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/libunwind.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLibcap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/modules/FindLibcap.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLibffi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/modules/FindLibffi.cmake -------------------------------------------------------------------------------- /cmake/protobuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/protobuf.cmake -------------------------------------------------------------------------------- /cmake/sandbox2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/sandbox2.pc.in -------------------------------------------------------------------------------- /cmake/sapi.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/sapi.pc.in -------------------------------------------------------------------------------- /cmake/sapi_force_cxx_linkage.cc.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/cmake/zlib.cmake -------------------------------------------------------------------------------- /contrib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/brotli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/brotli/brotli.gen.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/brotli.gen.h.in -------------------------------------------------------------------------------- /contrib/brotli/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/example/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/brotli/example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/example/main.cc -------------------------------------------------------------------------------- /contrib/brotli/files/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/files/text -------------------------------------------------------------------------------- /contrib/brotli/files/text.chunk.brotli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/files/text.chunk.brotli -------------------------------------------------------------------------------- /contrib/brotli/files/text.full.brotli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/files/text.full.brotli -------------------------------------------------------------------------------- /contrib/brotli/sandboxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/sandboxed.h -------------------------------------------------------------------------------- /contrib/brotli/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/test/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/brotli/test/brotli_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/test/brotli_test.cc -------------------------------------------------------------------------------- /contrib/brotli/utils/utils_brotli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/utils/utils_brotli.cc -------------------------------------------------------------------------------- /contrib/brotli/utils/utils_brotli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/utils/utils_brotli.h -------------------------------------------------------------------------------- /contrib/brotli/utils/utils_brotli_dec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/utils/utils_brotli_dec.cc -------------------------------------------------------------------------------- /contrib/brotli/utils/utils_brotli_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/utils/utils_brotli_dec.h -------------------------------------------------------------------------------- /contrib/brotli/utils/utils_brotli_enc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/utils/utils_brotli_enc.cc -------------------------------------------------------------------------------- /contrib/brotli/utils/utils_brotli_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/brotli/utils/utils_brotli_enc.h -------------------------------------------------------------------------------- /contrib/c-blosc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/c-blosc/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/example/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/c-blosc/example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/example/main.cc -------------------------------------------------------------------------------- /contrib/c-blosc/files/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/files/text -------------------------------------------------------------------------------- /contrib/c-blosc/files/text.blosclz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/files/text.blosclz -------------------------------------------------------------------------------- /contrib/c-blosc/files/text.lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/files/text.lz4 -------------------------------------------------------------------------------- /contrib/c-blosc/files/text.lz4hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/files/text.lz4hc -------------------------------------------------------------------------------- /contrib/c-blosc/files/text.zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/files/text.zlib -------------------------------------------------------------------------------- /contrib/c-blosc/files/text.zstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/files/text.zstd -------------------------------------------------------------------------------- /contrib/c-blosc/sandboxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/sandboxed.h -------------------------------------------------------------------------------- /contrib/c-blosc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/test/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/c-blosc/test/test_blosc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/test/test_blosc.cc -------------------------------------------------------------------------------- /contrib/c-blosc/utils/utils_blosc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/utils/utils_blosc.cc -------------------------------------------------------------------------------- /contrib/c-blosc/utils/utils_blosc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/c-blosc/utils/utils_blosc.h -------------------------------------------------------------------------------- /contrib/hunspell/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/hunspell/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/hunspell/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/hunspell/example/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/hunspell/example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/hunspell/example/main.cc -------------------------------------------------------------------------------- /contrib/hunspell/files/utf8.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/hunspell/files/utf8.aff -------------------------------------------------------------------------------- /contrib/hunspell/files/utf8.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/hunspell/files/utf8.dic -------------------------------------------------------------------------------- /contrib/hunspell/files/utf8.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/hunspell/files/utf8.good -------------------------------------------------------------------------------- /contrib/hunspell/files/utf8.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/hunspell/files/utf8.wrong -------------------------------------------------------------------------------- /contrib/hunspell/sandboxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/hunspell/sandboxed.h -------------------------------------------------------------------------------- /contrib/hunspell/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/hunspell/test/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/hunspell/test/hunspell_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/hunspell/test/hunspell_test.cc -------------------------------------------------------------------------------- /contrib/jsonnet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/jsonnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/README.md -------------------------------------------------------------------------------- /contrib/jsonnet/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_base_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_base_example.cc -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_base_transaction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_base_transaction.cc -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes/arith.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes/arith.jsonnet -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes/formatter_example.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes/formatter_example.jsonnet -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes/imports.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes/imports.jsonnet -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes/multiple_files_example.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes/multiple_files_example.jsonnet -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes/negroni.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes/negroni.jsonnet -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes/utils.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes/utils.libsonnet -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes/yaml_stream_example.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes/yaml_stream_example.jsonnet -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes_expected_output/arith.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes_expected_output/arith.golden -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes_expected_output/first_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes_expected_output/first_file.json -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes_expected_output/negroni.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes_expected_output/negroni.golden -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes_expected_output/second_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes_expected_output/second_file.json -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_codes_expected_output/yaml_stream_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_codes_expected_output/yaml_stream_example.yaml -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_formatter_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_formatter_example.cc -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_multiple_files_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_multiple_files_example.cc -------------------------------------------------------------------------------- /contrib/jsonnet/examples/jsonnet_yaml_stream_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/examples/jsonnet_yaml_stream_example.cc -------------------------------------------------------------------------------- /contrib/jsonnet/jsonnet.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/jsonnet.patch -------------------------------------------------------------------------------- /contrib/jsonnet/jsonnet_base_sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/jsonnet_base_sandbox.h -------------------------------------------------------------------------------- /contrib/jsonnet/jsonnet_base_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/jsonnet_base_transaction.h -------------------------------------------------------------------------------- /contrib/jsonnet/jsonnet_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/jsonnet_helper.cc -------------------------------------------------------------------------------- /contrib/jsonnet/jsonnet_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/jsonnet_helper.h -------------------------------------------------------------------------------- /contrib/jsonnet/jsonnet_tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/jsonnet/jsonnet_tests.cc -------------------------------------------------------------------------------- /contrib/libidn2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libidn2/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libidn2/libidn2_sapi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libidn2/libidn2_sapi.cc -------------------------------------------------------------------------------- /contrib/libidn2/libidn2_sapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libidn2/libidn2_sapi.h -------------------------------------------------------------------------------- /contrib/libidn2/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libidn2/tests/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libidn2/tests/libidn2_sapi_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libidn2/tests/libidn2_sapi_test.cc -------------------------------------------------------------------------------- /contrib/libraw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libraw/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libraw/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libraw/example/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libraw/example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libraw/example/main.cc -------------------------------------------------------------------------------- /contrib/libraw/files/img.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libraw/files/img.raw -------------------------------------------------------------------------------- /contrib/libraw/raw.gen.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libraw/raw.gen.h.in -------------------------------------------------------------------------------- /contrib/libraw/sandboxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libraw/sandboxed.h -------------------------------------------------------------------------------- /contrib/libraw/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libraw/test/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libraw/test/libraw_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libraw/test/libraw_test.cc -------------------------------------------------------------------------------- /contrib/libraw/utils/utils_libraw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libraw/utils/utils_libraw.cc -------------------------------------------------------------------------------- /contrib/libraw/utils/utils_libraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libraw/utils/utils_libraw.h -------------------------------------------------------------------------------- /contrib/libtiff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libtiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/README.md -------------------------------------------------------------------------------- /contrib/libtiff/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/example/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libtiff/example/main_sandboxed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/example/main_sandboxed.cc -------------------------------------------------------------------------------- /contrib/libtiff/sandboxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/sandboxed.h -------------------------------------------------------------------------------- /contrib/libtiff/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/test/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libtiff/test/check_tag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/test/check_tag.cc -------------------------------------------------------------------------------- /contrib/libtiff/test/check_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/test/check_tag.h -------------------------------------------------------------------------------- /contrib/libtiff/test/defer_strile_writing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/test/defer_strile_writing.cc -------------------------------------------------------------------------------- /contrib/libtiff/test/helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/test/helper.cc -------------------------------------------------------------------------------- /contrib/libtiff/test/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/test/helper.h -------------------------------------------------------------------------------- /contrib/libtiff/test/images/quad-tile.jpg.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/test/images/quad-tile.jpg.tiff -------------------------------------------------------------------------------- /contrib/libtiff/test/long_tag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/test/long_tag.cc -------------------------------------------------------------------------------- /contrib/libtiff/test/raw_decode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/test/raw_decode.cc -------------------------------------------------------------------------------- /contrib/libtiff/test/short_tag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/test/short_tag.cc -------------------------------------------------------------------------------- /contrib/libtiff/wrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/wrapper/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libtiff/wrapper/func.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/wrapper/func.cc -------------------------------------------------------------------------------- /contrib/libtiff/wrapper/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libtiff/wrapper/func.h -------------------------------------------------------------------------------- /contrib/libxls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libxls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/README.md -------------------------------------------------------------------------------- /contrib/libxls/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/example/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libxls/example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/example/main.cc -------------------------------------------------------------------------------- /contrib/libxls/files/t1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/files/t1.xls -------------------------------------------------------------------------------- /contrib/libxls/files/t2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/files/t2.xls -------------------------------------------------------------------------------- /contrib/libxls/files/t3.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/files/t3.xls -------------------------------------------------------------------------------- /contrib/libxls/sandboxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/sandboxed.h -------------------------------------------------------------------------------- /contrib/libxls/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/test/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libxls/test/libxls_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/test/libxls_test.cc -------------------------------------------------------------------------------- /contrib/libxls/utils/utils_libxls.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/utils/utils_libxls.cc -------------------------------------------------------------------------------- /contrib/libxls/utils/utils_libxls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/utils/utils_libxls.h -------------------------------------------------------------------------------- /contrib/libxls/xls.gen.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libxls/xls.gen.h.in -------------------------------------------------------------------------------- /contrib/libzip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libzip/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/example/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libzip/example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/example/main.cc -------------------------------------------------------------------------------- /contrib/libzip/files/binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/files/binary -------------------------------------------------------------------------------- /contrib/libzip/files/notinzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/files/notinzip -------------------------------------------------------------------------------- /contrib/libzip/files/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/files/text -------------------------------------------------------------------------------- /contrib/libzip/files/zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/files/zip.zip -------------------------------------------------------------------------------- /contrib/libzip/sandboxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/sandboxed.h -------------------------------------------------------------------------------- /contrib/libzip/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/test/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libzip/test/test_zip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/test/test_zip.cc -------------------------------------------------------------------------------- /contrib/libzip/utils/utils_zip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/utils/utils_zip.cc -------------------------------------------------------------------------------- /contrib/libzip/utils/utils_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/utils/utils_zip.h -------------------------------------------------------------------------------- /contrib/libzip/wrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/wrapper/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/libzip/wrapper/wrapper_zip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/wrapper/wrapper_zip.cc -------------------------------------------------------------------------------- /contrib/libzip/wrapper/wrapper_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/libzip/wrapper/wrapper_zip.h -------------------------------------------------------------------------------- /contrib/lodepng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/lodepng/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/lodepng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/lodepng/README.md -------------------------------------------------------------------------------- /contrib/lodepng/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/lodepng/examples/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/lodepng/examples/helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/lodepng/examples/helpers.cc -------------------------------------------------------------------------------- /contrib/lodepng/examples/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/lodepng/examples/helpers.h -------------------------------------------------------------------------------- /contrib/lodepng/examples/main_sandboxed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/lodepng/examples/main_sandboxed.cc -------------------------------------------------------------------------------- /contrib/lodepng/examples/main_unit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/lodepng/examples/main_unit_test.cc -------------------------------------------------------------------------------- /contrib/lodepng/examples/main_unsandboxed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/lodepng/examples/main_unsandboxed.cc -------------------------------------------------------------------------------- /contrib/lodepng/examples/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/lodepng/examples/sandbox.h -------------------------------------------------------------------------------- /contrib/lodepng/lodepng.gen.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/lodepng/lodepng.gen.h.in -------------------------------------------------------------------------------- /contrib/pffft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/pffft/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/pffft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/pffft/README.md -------------------------------------------------------------------------------- /contrib/pffft/main_pffft_sandboxed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/pffft/main_pffft_sandboxed.cc -------------------------------------------------------------------------------- /contrib/turbojpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/turbojpeg/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/turbojpeg/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/turbojpeg/tests/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/turbojpeg/tests/sample.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/turbojpeg/tests/sample.jpeg -------------------------------------------------------------------------------- /contrib/turbojpeg/tests/sample.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/turbojpeg/tests/sample.rgb -------------------------------------------------------------------------------- /contrib/turbojpeg/tests/turbojpeg_sapi_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/turbojpeg/tests/turbojpeg_sapi_test.cc -------------------------------------------------------------------------------- /contrib/turbojpeg/turbojpeg_sapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/turbojpeg/turbojpeg_sapi.h -------------------------------------------------------------------------------- /contrib/uriparser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/uriparser/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/uriparser/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/uriparser/example/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/uriparser/example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/uriparser/example/main.cc -------------------------------------------------------------------------------- /contrib/uriparser/sandboxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/uriparser/sandboxed.h -------------------------------------------------------------------------------- /contrib/uriparser/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/uriparser/test/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/uriparser/test/test_uriparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/uriparser/test/test_uriparser.cc -------------------------------------------------------------------------------- /contrib/uriparser/uri.gen.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/uriparser/uri.gen.h.in -------------------------------------------------------------------------------- /contrib/uriparser/utils/utils_uriparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/uriparser/utils/utils_uriparser.cc -------------------------------------------------------------------------------- /contrib/uriparser/utils/utils_uriparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/uriparser/utils/utils_uriparser.h -------------------------------------------------------------------------------- /contrib/woff2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/woff2/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/woff2/testdata/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/woff2/testdata/Roboto-Regular.ttf -------------------------------------------------------------------------------- /contrib/woff2/testdata/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/woff2/testdata/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /contrib/woff2/woff2_sapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/woff2/woff2_sapi.h -------------------------------------------------------------------------------- /contrib/woff2/woff2_sapi_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/woff2/woff2_sapi_test.cc -------------------------------------------------------------------------------- /contrib/woff2/woff2_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/woff2/woff2_wrapper.cc -------------------------------------------------------------------------------- /contrib/woff2/woff2_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/woff2/woff2_wrapper.h -------------------------------------------------------------------------------- /contrib/zopfli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/zopfli/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/example/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/zopfli/example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/example/main.cc -------------------------------------------------------------------------------- /contrib/zopfli/files/binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/files/binary -------------------------------------------------------------------------------- /contrib/zopfli/files/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/files/text -------------------------------------------------------------------------------- /contrib/zopfli/sandboxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/sandboxed.h -------------------------------------------------------------------------------- /contrib/zopfli/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/test/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/zopfli/test/zopfli_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/test/zopfli_test.cc -------------------------------------------------------------------------------- /contrib/zopfli/utils/utils_zopfli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/utils/utils_zopfli.cc -------------------------------------------------------------------------------- /contrib/zopfli/utils/utils_zopfli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/utils/utils_zopfli.h -------------------------------------------------------------------------------- /contrib/zopfli/wrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/wrapper/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/zopfli/wrapper/wrapper_zopfli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/wrapper/wrapper_zopfli.cc -------------------------------------------------------------------------------- /contrib/zopfli/wrapper/wrapper_zopfli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zopfli/wrapper/wrapper_zopfli.h -------------------------------------------------------------------------------- /contrib/zstd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/zstd/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/example/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/zstd/example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/example/main.cc -------------------------------------------------------------------------------- /contrib/zstd/files/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/files/text -------------------------------------------------------------------------------- /contrib/zstd/files/text.blob.zstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/files/text.blob.zstd -------------------------------------------------------------------------------- /contrib/zstd/files/text.stream.zstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/files/text.stream.zstd -------------------------------------------------------------------------------- /contrib/zstd/sandboxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/sandboxed.h -------------------------------------------------------------------------------- /contrib/zstd/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/test/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/zstd/test/zstd_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/test/zstd_test.cc -------------------------------------------------------------------------------- /contrib/zstd/utils/utils_zstd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/utils/utils_zstd.cc -------------------------------------------------------------------------------- /contrib/zstd/utils/utils_zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/utils/utils_zstd.h -------------------------------------------------------------------------------- /contrib/zstd/wrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/wrapper/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/zstd/wrapper/wrapper_zstd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/wrapper/wrapper_zstd.cc -------------------------------------------------------------------------------- /contrib/zstd/wrapper/wrapper_zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/contrib/zstd/wrapper/wrapper_zstd.h -------------------------------------------------------------------------------- /oss-internship-2020/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/README.md -------------------------------------------------------------------------------- /oss-internship-2020/curl/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /oss-internship-2020/curl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/curl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/README.md -------------------------------------------------------------------------------- /oss-internship-2020/curl/callbacks/callbacks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/callbacks/callbacks.cc -------------------------------------------------------------------------------- /oss-internship-2020/curl/callbacks/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/callbacks/callbacks.h -------------------------------------------------------------------------------- /oss-internship-2020/curl/curl_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/curl_util.cc -------------------------------------------------------------------------------- /oss-internship-2020/curl/curl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/curl_util.h -------------------------------------------------------------------------------- /oss-internship-2020/curl/curl_wrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/curl_wrapper/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/curl/curl_wrapper/curl_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/curl_wrapper/curl_wrapper.cc -------------------------------------------------------------------------------- /oss-internship-2020/curl/curl_wrapper/curl_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/curl_wrapper/curl_wrapper.h -------------------------------------------------------------------------------- /oss-internship-2020/curl/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/examples/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/curl/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/examples/README.md -------------------------------------------------------------------------------- /oss-internship-2020/curl/examples/example1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/examples/example1.cc -------------------------------------------------------------------------------- /oss-internship-2020/curl/examples/example2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/examples/example2.cc -------------------------------------------------------------------------------- /oss-internship-2020/curl/examples/example3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/examples/example3.cc -------------------------------------------------------------------------------- /oss-internship-2020/curl/examples/example4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/examples/example4.cc -------------------------------------------------------------------------------- /oss-internship-2020/curl/examples/example5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/examples/example5.cc -------------------------------------------------------------------------------- /oss-internship-2020/curl/examples/example6.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/examples/example6.cc -------------------------------------------------------------------------------- /oss-internship-2020/curl/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/sandbox.h -------------------------------------------------------------------------------- /oss-internship-2020/curl/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/tests/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/curl/tests/test_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/tests/test_utils.cc -------------------------------------------------------------------------------- /oss-internship-2020/curl/tests/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/tests/test_utils.h -------------------------------------------------------------------------------- /oss-internship-2020/curl/tests/tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/curl/tests/tests.cc -------------------------------------------------------------------------------- /oss-internship-2020/gdal/CANYrelief1-geo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/CANYrelief1-geo.tif -------------------------------------------------------------------------------- /oss-internship-2020/gdal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/gdal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/README.md -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster.cc -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/README.md -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/gdal_sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/gdal_sandbox.h -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/get_raster_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/get_raster_data.cc -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/get_raster_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/get_raster_data.h -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/gtiff_converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/gtiff_converter.cc -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/gtiff_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/gtiff_converter.h -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/raster_to_gtiff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/raster_to_gtiff.cc -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/testdata/SP27GTIF.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/testdata/SP27GTIF.tif -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/testdata/cea.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/testdata/cea.tif -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/tests.cc -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/utils.cc -------------------------------------------------------------------------------- /oss-internship-2020/gdal/raster_to_gtiff/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/gdal/raster_to_gtiff/utils.h -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/.bazelrc -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/BUILD.bazel -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/README.md -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/WORKSPACE.bazel -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/external/butteraugli.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/external/butteraugli.BUILD -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/external/guetzli.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/external/guetzli.BUILD -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/external/jpeg.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/external/jpeg.BUILD -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/external/png.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/external/png.BUILD -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/external/zlib.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/external/zlib.BUILD -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/guetzli_entry_points.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/guetzli_entry_points.cc -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/guetzli_entry_points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/guetzli_entry_points.h -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/guetzli_sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/guetzli_sandbox.h -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/guetzli_sandboxed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/guetzli_sandboxed.cc -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/guetzli_sapi_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/guetzli_sapi_test.cc -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/guetzli_transaction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/guetzli_transaction.cc -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/guetzli_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/guetzli_transaction.h -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/guetzli_transaction_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/guetzli_transaction_test.cc -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/testdata/bees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/testdata/bees.png -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/testdata/bees_reference.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/testdata/bees_reference.jpg -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/testdata/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/testdata/nature.jpg -------------------------------------------------------------------------------- /oss-internship-2020/guetzli/testdata/nature_reference.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/guetzli/testdata/nature_reference.jpg -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .cache 3 | .vscode 4 | -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/README.md -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/examples/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/examples/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/examples/sandbox.h -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/examples/sapi_minitar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/examples/sapi_minitar.cc -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/examples/sapi_minitar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/examples/sapi_minitar.h -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/examples/sapi_minitar_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/examples/sapi_minitar_main.cc -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/functions_to_sandbox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/functions_to_sandbox.txt -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/ld_preload_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/ld_preload_example/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/ld_preload_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/ld_preload_example/README.md -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/ld_preload_example/minitar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/ld_preload_example/minitar.cc -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/ld_preload_example/minitar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/ld_preload_example/minitar.h -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/ld_preload_example/minitar_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/ld_preload_example/minitar_main.cc -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/ld_preload_example/sapi_minitar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/ld_preload_example/sapi_minitar.cc -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/patches/archive_virtual.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/patches/archive_virtual.patch -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/patches/header.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/patches/header.patch -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/test/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/libarchive/test/minitar_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libarchive/test/minitar_test.cc -------------------------------------------------------------------------------- /oss-internship-2020/libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/libpng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/README.md -------------------------------------------------------------------------------- /oss-internship-2020/libpng/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/examples/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/libpng/examples/example1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/examples/example1.cc -------------------------------------------------------------------------------- /oss-internship-2020/libpng/examples/example2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/examples/example2.cc -------------------------------------------------------------------------------- /oss-internship-2020/libpng/images/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/images/pngtest.png -------------------------------------------------------------------------------- /oss-internship-2020/libpng/images/pngtopng_pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/images/pngtopng_pngtest.png -------------------------------------------------------------------------------- /oss-internship-2020/libpng/images/red_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/images/red_ball.png -------------------------------------------------------------------------------- /oss-internship-2020/libpng/images/rgbtobgr_red_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/images/rgbtobgr_red_ball.png -------------------------------------------------------------------------------- /oss-internship-2020/libpng/images/test_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/images/test_output.png -------------------------------------------------------------------------------- /oss-internship-2020/libpng/sandboxed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/sandboxed.h -------------------------------------------------------------------------------- /oss-internship-2020/libpng/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/tests/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/libpng/tests/basic_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/tests/basic_test.cc -------------------------------------------------------------------------------- /oss-internship-2020/libpng/tests/extended_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/tests/extended_test.cc -------------------------------------------------------------------------------- /oss-internship-2020/libpng/tests/helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/tests/helper.cc -------------------------------------------------------------------------------- /oss-internship-2020/libpng/tests/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/tests/helper.h -------------------------------------------------------------------------------- /oss-internship-2020/libpng/tests/libpng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/tests/libpng.h -------------------------------------------------------------------------------- /oss-internship-2020/libpng/wrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/wrapper/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/libpng/wrapper/func.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/wrapper/func.cc -------------------------------------------------------------------------------- /oss-internship-2020/libpng/wrapper/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libpng/wrapper/func.h -------------------------------------------------------------------------------- /oss-internship-2020/libuv/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /oss-internship-2020/libuv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/libuv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/README.md -------------------------------------------------------------------------------- /oss-internship-2020/libuv/callbacks/callbacks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/callbacks/callbacks.cc -------------------------------------------------------------------------------- /oss-internship-2020/libuv/callbacks/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/callbacks/callbacks.h -------------------------------------------------------------------------------- /oss-internship-2020/libuv/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/examples/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/libuv/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/examples/README.md -------------------------------------------------------------------------------- /oss-internship-2020/libuv/examples/helloworld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/examples/helloworld.cc -------------------------------------------------------------------------------- /oss-internship-2020/libuv/examples/idle-basic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/examples/idle-basic.cc -------------------------------------------------------------------------------- /oss-internship-2020/libuv/examples/uvcat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/examples/uvcat.cc -------------------------------------------------------------------------------- /oss-internship-2020/libuv/generator/wrapper_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/generator/wrapper_generator.py -------------------------------------------------------------------------------- /oss-internship-2020/libuv/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/tests/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/libuv/tests/test_array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/tests/test_array.cc -------------------------------------------------------------------------------- /oss-internship-2020/libuv/tests/test_callback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/tests/test_callback.cc -------------------------------------------------------------------------------- /oss-internship-2020/libuv/tests/test_error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/tests/test_error.cc -------------------------------------------------------------------------------- /oss-internship-2020/libuv/tests/test_loop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/tests/test_loop.cc -------------------------------------------------------------------------------- /oss-internship-2020/libuv/tests/test_os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/libuv/tests/test_os.cc -------------------------------------------------------------------------------- /oss-internship-2020/openjpeg/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /oss-internship-2020/openjpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/openjpeg/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/openjpeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/openjpeg/README.md -------------------------------------------------------------------------------- /oss-internship-2020/openjpeg/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/openjpeg/examples/CMakeLists.txt -------------------------------------------------------------------------------- /oss-internship-2020/openjpeg/examples/convert.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/openjpeg/examples/convert.patch -------------------------------------------------------------------------------- /oss-internship-2020/openjpeg/examples/convert_h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/openjpeg/examples/convert_h.patch -------------------------------------------------------------------------------- /oss-internship-2020/openjpeg/examples/decompress_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/oss-internship-2020/openjpeg/examples/decompress_example.cc -------------------------------------------------------------------------------- /sandboxed_api/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/BUILD -------------------------------------------------------------------------------- /sandboxed_api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/bazel/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/bazel/BUILD -------------------------------------------------------------------------------- /sandboxed_api/bazel/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/bazel/build_defs.bzl -------------------------------------------------------------------------------- /sandboxed_api/bazel/embed_data.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/bazel/embed_data.bzl -------------------------------------------------------------------------------- /sandboxed_api/bazel/llvm_config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/bazel/llvm_config.bzl -------------------------------------------------------------------------------- /sandboxed_api/bazel/proto.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/bazel/proto.bzl -------------------------------------------------------------------------------- /sandboxed_api/bazel/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/bazel/repositories.bzl -------------------------------------------------------------------------------- /sandboxed_api/bazel/sapi.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/bazel/sapi.bzl -------------------------------------------------------------------------------- /sandboxed_api/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/call.h -------------------------------------------------------------------------------- /sandboxed_api/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/client.cc -------------------------------------------------------------------------------- /sandboxed_api/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/config.cc -------------------------------------------------------------------------------- /sandboxed_api/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/config.h -------------------------------------------------------------------------------- /sandboxed_api/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/docs/getting-started.md -------------------------------------------------------------------------------- /sandboxed_api/docs/images/sapi-lockup-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/docs/images/sapi-lockup-vertical.png -------------------------------------------------------------------------------- /sandboxed_api/embed_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/embed_file.cc -------------------------------------------------------------------------------- /sandboxed_api/embed_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/embed_file.h -------------------------------------------------------------------------------- /sandboxed_api/embed_file_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/embed_file_test.cc -------------------------------------------------------------------------------- /sandboxed_api/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/examples/hello_sapi/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/hello_sapi/.bazelrc -------------------------------------------------------------------------------- /sandboxed_api/examples/hello_sapi/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/hello_sapi/BUILD -------------------------------------------------------------------------------- /sandboxed_api/examples/hello_sapi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/hello_sapi/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/examples/hello_sapi/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/hello_sapi/WORKSPACE -------------------------------------------------------------------------------- /sandboxed_api/examples/hello_sapi/hello_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/hello_sapi/hello_lib.cc -------------------------------------------------------------------------------- /sandboxed_api/examples/hello_sapi/hello_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/hello_sapi/hello_main.cc -------------------------------------------------------------------------------- /sandboxed_api/examples/hello_sapi/hello_transacted.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/hello_sapi/hello_transacted.cc -------------------------------------------------------------------------------- /sandboxed_api/examples/stringop/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/stringop/BUILD -------------------------------------------------------------------------------- /sandboxed_api/examples/stringop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/stringop/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/examples/stringop/main_stringop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/stringop/main_stringop.cc -------------------------------------------------------------------------------- /sandboxed_api/examples/stringop/stringop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/stringop/stringop.cc -------------------------------------------------------------------------------- /sandboxed_api/examples/stringop/stringop_params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/stringop/stringop_params.proto -------------------------------------------------------------------------------- /sandboxed_api/examples/sum/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/sum/BUILD -------------------------------------------------------------------------------- /sandboxed_api/examples/sum/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/sum/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/examples/sum/main_sum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/sum/main_sum.cc -------------------------------------------------------------------------------- /sandboxed_api/examples/sum/main_sum_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/sum/main_sum_test.sh -------------------------------------------------------------------------------- /sandboxed_api/examples/sum/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/sum/sum.c -------------------------------------------------------------------------------- /sandboxed_api/examples/sum/sum_cpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/sum/sum_cpp.cc -------------------------------------------------------------------------------- /sandboxed_api/examples/sum/sum_params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/sum/sum_params.proto -------------------------------------------------------------------------------- /sandboxed_api/examples/zlib/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/zlib/BUILD -------------------------------------------------------------------------------- /sandboxed_api/examples/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/examples/zlib/main_zlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/zlib/main_zlib.cc -------------------------------------------------------------------------------- /sandboxed_api/examples/zlib/main_zlib_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/zlib/main_zlib_test.sh -------------------------------------------------------------------------------- /sandboxed_api/examples/zlib/unsandboxed_zlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/examples/zlib/unsandboxed_zlib.cc -------------------------------------------------------------------------------- /sandboxed_api/file_toc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/file_toc.h -------------------------------------------------------------------------------- /sandboxed_api/lenval_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/lenval_core.h -------------------------------------------------------------------------------- /sandboxed_api/rpcchannel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/rpcchannel.cc -------------------------------------------------------------------------------- /sandboxed_api/rpcchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/rpcchannel.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/README.md -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/allowlists/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/allowlists/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/allowlists/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/allowlists/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/allowlists/all_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/allowlists/all_syscalls.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/allowlists/map_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/allowlists/map_exec.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/allowlists/mount_propagation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/allowlists/mount_propagation.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/allowlists/namespaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/allowlists/namespaces.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/allowlists/seccomp_speculation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/allowlists/seccomp_speculation.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/allowlists/trace_all_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/allowlists/trace_all_syscalls.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/allowlists/unrestricted_networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/allowlists/unrestricted_networking.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/bpf_evaluator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/bpf_evaluator.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/bpf_evaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/bpf_evaluator.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/bpf_evaluator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/bpf_evaluator_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/bpfdisassembler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/bpfdisassembler.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/bpfdisassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/bpfdisassembler.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/bpfdisassembler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/bpfdisassembler_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/buffer.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/buffer.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/buffer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/buffer_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/client.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/client.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/comms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/comms.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/comms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/comms.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/comms_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/comms_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/comms_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/comms_test.proto -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/crc4/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/crc4/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/crc4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/crc4/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/crc4/crc4bin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/crc4/crc4bin.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/crc4/crc4sandbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/crc4/crc4sandbox.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/crc4/crc4sandbox_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/crc4/crc4sandbox_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/custom_fork/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/custom_fork/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/custom_fork/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/custom_fork/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/custom_fork/custom_fork_bin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/custom_fork/custom_fork_bin.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/custom_fork/custom_fork_sandbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/custom_fork/custom_fork_sandbox.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/custom_fork/custom_fork_sandbox_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/custom_fork/custom_fork_sandbox_test.sh -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/network/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/network/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/network/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/network/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/network/network_bin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/network/network_bin.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/network/network_sandbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/network/network_sandbox.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/network/network_sandbox_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/network/network_sandbox_test.sh -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/network_proxy/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/network_proxy/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/network_proxy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/network_proxy/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/network_proxy/networkproxy_bin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/network_proxy/networkproxy_bin.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/network_proxy/networkproxy_sandbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/network_proxy/networkproxy_sandbox.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/network_proxy/networkproxy_sandbox_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/network_proxy/networkproxy_sandbox_test.sh -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/static/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/static/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/static/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/static/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/static/static_bin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/static/static_bin.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/static/static_sandbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/static/static_sandbox.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/static/static_sandbox_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/static/static_sandbox_test.sh -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/tool/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/tool/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/tool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/tool/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/tool/sandbox2tool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/tool/sandbox2tool.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/tool/sandbox2tool_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/tool/sandbox2tool_test.sh -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/zlib/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/zlib/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/zlib/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/zlib/zpipe.c -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/examples/zlib/zpipe_sandbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/examples/zlib/zpipe_sandbox.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/executor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/executor.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/executor.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/flags.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/flags.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/fork_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/fork_client.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/fork_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/fork_client.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/forkingclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/forkingclient.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/forkingclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/forkingclient.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/forkserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/forkserver.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/forkserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/forkserver.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/forkserver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/forkserver.proto -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/forkserver_bin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/forkserver_bin.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/forkserver_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/forkserver_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/global_forkclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/global_forkclient.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/global_forkclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/global_forkclient.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/global_forkclient_lib_ctor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/global_forkclient_lib_ctor.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/ipc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/ipc.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/ipc.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/ipc_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/ipc_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/limits.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/limits_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/limits_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/logserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/logserver.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/logserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/logserver.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/logserver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/logserver.proto -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/logsink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/logsink.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/logsink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/logsink.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/monitor_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/monitor_base.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/monitor_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/monitor_base.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/monitor_ptrace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/monitor_ptrace.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/monitor_ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/monitor_ptrace.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/monitor_unotify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/monitor_unotify.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/monitor_unotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/monitor_unotify.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/mount_tree.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/mount_tree.proto -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/mounts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/mounts.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/mounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/mounts.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/mounts_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/mounts_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/namespace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/namespace.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/namespace.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/namespace_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/namespace_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy/client.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy/client.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy/filtering.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy/filtering.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy/filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy/filtering.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy/filtering_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy/filtering_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy/server.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy/server.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy/testing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy/testing.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy/testing.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/network_proxy_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/network_proxy_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/notify.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/notify_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/notify_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/policy.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/policy.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/policy_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/policy_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/policybuilder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/policybuilder.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/policybuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/policybuilder.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/policybuilder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/policybuilder_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/regs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/regs.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/regs.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/regs_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/regs_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/result.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/result.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/result.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/sandbox2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/sandbox2.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/sandbox2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/sandbox2.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/sandbox2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/sandbox2_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/sanitizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/sanitizer.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/sanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/sanitizer.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/sanitizer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/sanitizer_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/stack_trace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/stack_trace.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/stack_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/stack_trace.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/stack_trace_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/stack_trace_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/syscall.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/syscall.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/syscall.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/syscall_defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/syscall_defs.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/syscall_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/syscall_defs.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/syscall_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/syscall_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/abort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/abort.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/add_policy_on_syscalls.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/add_policy_on_syscalls.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/buffer.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/close_fds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/close_fds.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/custom_fork.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/custom_fork.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/execveat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/execveat.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/ipc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/ipc.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/limits.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/limits.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/malloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/malloc.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/minimal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/minimal.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/namespace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/namespace.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/network_proxy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/network_proxy.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/personality.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/personality.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/pidcomms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/pidcomms.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/policy.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/posix_timers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/posix_timers.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/sandbox_detection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/sandbox_detection.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/sanitizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/sanitizer.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/sleep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/sleep.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/starve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/starve.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/symbolize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/symbolize.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/symbolize_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/symbolize_lib.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/symbolize_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/symbolize_lib.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/terminate_process_group.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/terminate_process_group.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/terminate_process_group_sandboxee.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/terminate_process_group_sandboxee.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/tsync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/tsync.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testcases/util_communicate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testcases/util_communicate.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/testing.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/trace_all_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/trace_all_syscalls.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/unwind/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/unwind/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/unwind/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/unwind/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/unwind/ptrace_hook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/unwind/ptrace_hook.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/unwind/ptrace_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/unwind/ptrace_hook.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/unwind/unwind.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/unwind/unwind.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/unwind/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/unwind/unwind.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/unwind/unwind.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/unwind/unwind.proto -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/BUILD -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/bpf_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/bpf_helper.c -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/bpf_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/bpf_helper.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/bpf_helper_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/bpf_helper_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/deadline_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/deadline_manager.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/deadline_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/deadline_manager.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/deadline_manager_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/deadline_manager_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/demangle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/demangle.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/demangle.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/elf_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/elf_parser.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/elf_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/elf_parser.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/library_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/library_resolver.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/library_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/library_resolver.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/maps_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/maps_parser.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/maps_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/maps_parser.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/maps_parser_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/maps_parser_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/minielf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/minielf.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/minielf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/minielf.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/minielf_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/minielf_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/pid_waiter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/pid_waiter.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/pid_waiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/pid_waiter.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/pid_waiter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/pid_waiter_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/seccomp_unotify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/seccomp_unotify.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/seccomp_unotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/seccomp_unotify.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/seccomp_unotify_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/seccomp_unotify_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/syscall_trap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/syscall_trap.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/syscall_trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/syscall_trap.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/testdata/chrome_grte_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/testdata/chrome_grte_header -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util/testdata/hello_world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util/testdata/hello_world -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util_c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util_c.cc -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util_c.h -------------------------------------------------------------------------------- /sandboxed_api/sandbox2/util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sandbox2/util_test.cc -------------------------------------------------------------------------------- /sandboxed_api/sapi_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/sapi_test.cc -------------------------------------------------------------------------------- /sandboxed_api/testcases/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/testcases/BUILD -------------------------------------------------------------------------------- /sandboxed_api/testcases/replaced_library.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/testcases/replaced_library.cc -------------------------------------------------------------------------------- /sandboxed_api/testcases/replaced_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/testcases/replaced_library.h -------------------------------------------------------------------------------- /sandboxed_api/testcases/replaced_library_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/testcases/replaced_library_test.cc -------------------------------------------------------------------------------- /sandboxed_api/testing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/testing.cc -------------------------------------------------------------------------------- /sandboxed_api/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/testing.h -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/BUILD -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/compilation_database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/compilation_database.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/compilation_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/compilation_database.h -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/diagnostics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/diagnostics.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/diagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/diagnostics.h -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/emitter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/emitter.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/emitter.h -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/emitter_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/emitter_base.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/emitter_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/emitter_base.h -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/emitter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/emitter_test.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/frontend_action_test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/frontend_action_test_util.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/frontend_action_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/frontend_action_test_util.h -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/generator.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/generator.h -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/generator_tool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/generator_tool.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/includes.h -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/sandboxed_library_emitter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/sandboxed_library_emitter.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/sandboxed_library_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/sandboxed_library_emitter.h -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/symbol_list_emitter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/symbol_list_emitter.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/symbol_list_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/symbol_list_emitter.h -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/testdata/simple_functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/testdata/simple_functions.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/types.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/clang_generator/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/clang_generator/types.h -------------------------------------------------------------------------------- /sandboxed_api/tools/filewrapper/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/filewrapper/BUILD -------------------------------------------------------------------------------- /sandboxed_api/tools/filewrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/filewrapper/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/tools/filewrapper/filewrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/filewrapper/filewrapper.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/filewrapper/filewrapper_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/filewrapper/filewrapper_test.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/filewrapper/testdata/filewrapper_embedded.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/filewrapper/testdata/filewrapper_embedded.bin -------------------------------------------------------------------------------- /sandboxed_api/tools/python_generator/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/python_generator/BUILD -------------------------------------------------------------------------------- /sandboxed_api/tools/python_generator/build_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/python_generator/build_test.sh -------------------------------------------------------------------------------- /sandboxed_api/tools/python_generator/sapi_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/python_generator/sapi_code.py -------------------------------------------------------------------------------- /sandboxed_api/tools/python_generator/sapi_code_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/python_generator/sapi_code_test.py -------------------------------------------------------------------------------- /sandboxed_api/tools/python_generator/sapi_code_test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/python_generator/sapi_code_test_util.py -------------------------------------------------------------------------------- /sandboxed_api/tools/python_generator/sapi_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/python_generator/sapi_generator.py -------------------------------------------------------------------------------- /sandboxed_api/tools/python_generator/testdata/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/python_generator/testdata/main.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/python_generator/testdata/tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/python_generator/testdata/tests.cc -------------------------------------------------------------------------------- /sandboxed_api/tools/python_generator/testdata/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/python_generator/testdata/tests.h -------------------------------------------------------------------------------- /sandboxed_api/tools/python_generator/testdata/tests2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/tools/python_generator/testdata/tests2.cc -------------------------------------------------------------------------------- /sandboxed_api/transaction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/transaction.cc -------------------------------------------------------------------------------- /sandboxed_api/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/transaction.h -------------------------------------------------------------------------------- /sandboxed_api/util/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/BUILD -------------------------------------------------------------------------------- /sandboxed_api/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/CMakeLists.txt -------------------------------------------------------------------------------- /sandboxed_api/util/file_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/file_helpers.cc -------------------------------------------------------------------------------- /sandboxed_api/util/file_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/file_helpers.h -------------------------------------------------------------------------------- /sandboxed_api/util/file_helpers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/file_helpers_test.cc -------------------------------------------------------------------------------- /sandboxed_api/util/fileops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/fileops.cc -------------------------------------------------------------------------------- /sandboxed_api/util/fileops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/fileops.h -------------------------------------------------------------------------------- /sandboxed_api/util/fileops_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/fileops_test.cc -------------------------------------------------------------------------------- /sandboxed_api/util/path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/path.cc -------------------------------------------------------------------------------- /sandboxed_api/util/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/path.h -------------------------------------------------------------------------------- /sandboxed_api/util/path_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/path_test.cc -------------------------------------------------------------------------------- /sandboxed_api/util/proto_arg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/proto_arg.proto -------------------------------------------------------------------------------- /sandboxed_api/util/proto_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/proto_helper.cc -------------------------------------------------------------------------------- /sandboxed_api/util/proto_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/proto_helper.h -------------------------------------------------------------------------------- /sandboxed_api/util/raw_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/raw_logging.cc -------------------------------------------------------------------------------- /sandboxed_api/util/raw_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/raw_logging.h -------------------------------------------------------------------------------- /sandboxed_api/util/runfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/runfiles.h -------------------------------------------------------------------------------- /sandboxed_api/util/runfiles_bazel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/runfiles_bazel.cc -------------------------------------------------------------------------------- /sandboxed_api/util/runfiles_nobazel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/runfiles_nobazel.cc -------------------------------------------------------------------------------- /sandboxed_api/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/status.cc -------------------------------------------------------------------------------- /sandboxed_api/util/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/status.h -------------------------------------------------------------------------------- /sandboxed_api/util/status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/status.proto -------------------------------------------------------------------------------- /sandboxed_api/util/status_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/status_macros.h -------------------------------------------------------------------------------- /sandboxed_api/util/status_macros_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/status_macros_test.cc -------------------------------------------------------------------------------- /sandboxed_api/util/status_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/status_test.cc -------------------------------------------------------------------------------- /sandboxed_api/util/strerror.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/strerror.cc -------------------------------------------------------------------------------- /sandboxed_api/util/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/strerror.h -------------------------------------------------------------------------------- /sandboxed_api/util/strerror_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/strerror_test.cc -------------------------------------------------------------------------------- /sandboxed_api/util/temp_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/temp_file.cc -------------------------------------------------------------------------------- /sandboxed_api/util/temp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/temp_file.h -------------------------------------------------------------------------------- /sandboxed_api/util/temp_file_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/temp_file_test.cc -------------------------------------------------------------------------------- /sandboxed_api/util/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/util/thread.h -------------------------------------------------------------------------------- /sandboxed_api/var_abstract.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_abstract.cc -------------------------------------------------------------------------------- /sandboxed_api/var_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_abstract.h -------------------------------------------------------------------------------- /sandboxed_api/var_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_array.h -------------------------------------------------------------------------------- /sandboxed_api/var_int.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_int.cc -------------------------------------------------------------------------------- /sandboxed_api/var_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_int.h -------------------------------------------------------------------------------- /sandboxed_api/var_lenval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_lenval.cc -------------------------------------------------------------------------------- /sandboxed_api/var_lenval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_lenval.h -------------------------------------------------------------------------------- /sandboxed_api/var_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_proto.h -------------------------------------------------------------------------------- /sandboxed_api/var_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_ptr.h -------------------------------------------------------------------------------- /sandboxed_api/var_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_reg.h -------------------------------------------------------------------------------- /sandboxed_api/var_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_struct.h -------------------------------------------------------------------------------- /sandboxed_api/var_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_type.h -------------------------------------------------------------------------------- /sandboxed_api/var_void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/var_void.h -------------------------------------------------------------------------------- /sandboxed_api/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sandboxed-api/HEAD/sandboxed_api/vars.h --------------------------------------------------------------------------------