├── .bazelignore ├── .bazelrc ├── .bazelversion ├── .clang-format ├── .clang-tidy ├── .codespellrc ├── .github ├── CODEOWNERS └── workflows │ └── scorecard.yaml ├── .gitignore ├── .hadolint.yaml ├── .markdown-link-check.json ├── .markdownlint-cli2.yaml ├── .npmrc ├── .pre-commit-config.yaml ├── .prettierrc.yaml ├── .pylintrc ├── BUILD.bazel ├── LICENSE ├── README.md ├── WORKSPACE ├── apis ├── BUILD.bazel ├── MODULE.bazel ├── MODULE.bazel.lock ├── WORKSPACE.bzlmod ├── buf.lock ├── buf.yaml └── privacysandbox │ └── apis │ ├── parc │ └── v0 │ │ ├── BUILD.bazel │ │ ├── blob.proto │ │ ├── parameter.proto │ │ └── parc_service.proto │ └── roma │ └── app_api │ └── v1 │ ├── BUILD.bazel │ └── options.proto ├── buf.work.yaml ├── deps.bzl ├── docs ├── aws │ └── proxy.md ├── building.md ├── contributing.md ├── cpio │ ├── README.md │ ├── core-config-provider.md │ ├── protobuf │ │ ├── BUILD.bazel │ │ ├── auto-scaling-service.md │ │ ├── blob-storage-service.md │ │ ├── common.md │ │ ├── crypto-service.md │ │ ├── detailed-execution-result.md │ │ ├── instance-service.md │ │ ├── kms-service.md │ │ ├── metric-service.md │ │ ├── parameter-service.md │ │ ├── private-key-service.md │ │ ├── public-key-service.md │ │ ├── queue-service.md │ │ └── validator-config.md │ └── validator.md ├── parc │ ├── api_overview.md │ ├── azure_deployment_guide.md │ ├── azure_reference_server_overview.md │ ├── images │ │ └── parc-api-overview.png │ ├── overview.md │ └── parc_functional_testing.md └── roma │ ├── BUILD.bazel │ ├── README.md │ ├── byob │ ├── Benchmarking.md │ └── sdk │ │ └── docs │ │ └── udf │ │ ├── Communication Interface.md │ │ ├── amd64-syscalls.md │ │ └── arm64-syscalls.md │ ├── compiler_options.md │ ├── host_api.md │ ├── images │ ├── dataflow.svg │ ├── metadata-flow.png │ └── overview.svg │ ├── metadata.md │ ├── roma_byob.md │ ├── traffic_generator.md │ └── v8 │ └── sdk │ └── docs │ ├── Guide to the SDK.md │ └── tools │ ├── logging.md │ ├── shell_cli.md │ └── udf_benchmark_cli.md ├── parc ├── README.md └── azure │ ├── .bazelignore │ ├── .bazelrc │ ├── .bazelversion │ ├── .clang-tidy │ ├── BUILD.bazel │ ├── Dockerfile │ ├── MODULE.bazel │ ├── MODULE.bazel.lock │ ├── README.md │ ├── WORKSPACE.bzlmod │ ├── deps │ ├── BUILD.bazel │ ├── google_cloud_cpp.patch │ ├── googleapis.BUILD │ └── grpc.patch │ ├── grpc.patch │ ├── src │ ├── proto │ │ ├── BUILD.bazel │ │ └── parameter.proto │ └── server │ │ └── cpp │ │ ├── BUILD.bazel │ │ ├── callback_server.cc │ │ ├── callback_server_impl.cc │ │ ├── callback_server_impl.h │ │ └── utils │ │ ├── BUILD.bazel │ │ ├── blocking_bounded_queue.h │ │ ├── blocking_bounded_queue_test.cc │ │ ├── status_util.cc │ │ ├── status_util.h │ │ └── status_util_test.cc │ └── tools │ └── generate_system_bazelrc ├── pnpm-lock.yaml ├── production └── packaging │ └── aws │ └── BUILD.bazel ├── scripts ├── build-docs ├── build-proxy ├── collect-test-logs └── run-benchmarks ├── src ├── BUILD.bazel ├── CPPLINT.cfg ├── README.md ├── aws │ └── proxy │ │ ├── BUILD.bazel │ │ ├── acceptor_pool.h │ │ ├── benchmark_test.cc │ │ ├── buffer.h │ │ ├── buffer_test.cc │ │ ├── client_session_pool.cc │ │ ├── client_session_pool.h │ │ ├── client_session_pool_test.cc │ │ ├── config.h │ │ ├── curl_client_test │ │ ├── freelist.h │ │ ├── freelist_test.cc │ │ ├── preload.cc │ │ ├── preload.h │ │ ├── preload_exported_symbols │ │ ├── preload_test.cc │ │ ├── protocol.cc │ │ ├── protocol.h │ │ ├── protocol_test.cc │ │ ├── proxify.cc │ │ ├── proxy.cc │ │ ├── proxy_bridge.cc │ │ ├── proxy_bridge.h │ │ ├── proxy_bridge_test.cc │ │ ├── proxy_server.cc │ │ ├── proxy_server.h │ │ ├── proxy_server_test.cc │ │ ├── resolv_conf_getter.proto │ │ ├── resolv_conf_getter_client.cc │ │ ├── resolv_conf_getter_server.cc │ │ ├── resolv_conf_getter_test_app │ │ ├── socket_types.h │ │ ├── socket_vendor.cc │ │ ├── socket_vendor_protocol.h │ │ ├── socket_vendor_server.cc │ │ ├── socket_vendor_server.h │ │ ├── socket_vendor_server_test.cc │ │ ├── socks5_state.cc │ │ ├── socks5_state.h │ │ ├── socks5_state_input_test.cc │ │ ├── socks5_state_test.cc │ │ └── socks5_test.py ├── buf.yaml ├── clients │ ├── async_client │ │ ├── BUILD.bazel │ │ ├── async_http_client.h │ │ └── mocks.h │ └── http_fetcher_async │ │ ├── BUILD.bazel │ │ ├── curl_request_data.cc │ │ ├── curl_request_data.h │ │ ├── curl_request_queue.cc │ │ ├── curl_request_queue.h │ │ ├── curl_request_queue_test.cc │ │ ├── curl_request_worker.cc │ │ ├── curl_request_worker.h │ │ ├── curl_request_worker_test.cc │ │ ├── http_fetcher_async.h │ │ ├── multi_curl_http_fetcher_async.cc │ │ ├── multi_curl_http_fetcher_async.h │ │ ├── multi_curl_http_fetcher_async_test.cc │ │ ├── multi_curl_request_manager.cc │ │ └── multi_curl_request_manager.h ├── communication │ ├── BUILD.bazel │ ├── compression.cc │ ├── compression.h │ ├── compression_brotli.cc │ ├── compression_brotli.h │ ├── compression_brotli_test.cc │ ├── compression_gzip.cc │ ├── compression_gzip.h │ ├── compression_gzip_test.cc │ ├── encoding_utils.cc │ ├── encoding_utils.h │ ├── encoding_utils_test.cc │ ├── framing_utils.cc │ ├── framing_utils.h │ ├── framing_utils_test.cc │ ├── json_utils.h │ ├── json_utils_test.cc │ ├── ohttp_utils.cc │ ├── ohttp_utils.h │ ├── ohttp_utils_test.cc │ ├── string_padder.cc │ ├── string_padder.h │ ├── string_padder_test.cc │ ├── uncompressed.cc │ ├── uncompressed.h │ └── uncompressed_test.cc ├── concurrent │ ├── BUILD.bazel │ ├── event_engine_executor.cc │ ├── event_engine_executor.h │ ├── event_engine_executor_test.cc │ ├── executor.h │ └── mocks.h ├── core │ ├── BUILD.bazel │ ├── async_executor │ │ ├── BUILD.bazel │ │ ├── async_executor.cc │ │ ├── async_executor.h │ │ ├── async_executor_test.cc │ │ ├── async_executor_utils.h │ │ ├── async_executor_utils_test.cc │ │ ├── async_task.h │ │ ├── async_task_test.cc │ │ ├── aws │ │ │ ├── BUILD.bazel │ │ │ └── aws_async_executor.h │ │ ├── error_codes.h │ │ ├── mock │ │ │ ├── BUILD.bazel │ │ │ ├── mock_async_executor.h │ │ │ └── mock_async_executor_with_internals.h │ │ ├── single_thread_async_executor.cc │ │ ├── single_thread_async_executor.h │ │ ├── single_thread_async_executor_benchmark_test.cc │ │ ├── single_thread_async_executor_test.cc │ │ ├── single_thread_priority_async_executor.cc │ │ ├── single_thread_priority_async_executor.h │ │ ├── single_thread_priority_async_executor_test.cc │ │ └── typedef.h │ ├── blob_storage_provider │ │ ├── aws │ │ │ ├── BUILD.bazel │ │ │ ├── aws_s3.cc │ │ │ ├── aws_s3.h │ │ │ ├── aws_s3_test.cc │ │ │ ├── aws_s3_utils.h │ │ │ └── aws_s3_utils_test.cc │ │ ├── common │ │ │ ├── BUILD.bazel │ │ │ └── error_codes.h │ │ ├── gcp │ │ │ ├── BUILD.bazel │ │ │ ├── gcp_cloud_storage.cc │ │ │ ├── gcp_cloud_storage.h │ │ │ ├── gcp_cloud_storage_async_test.cc │ │ │ ├── gcp_cloud_storage_test.cc │ │ │ └── gcp_cloud_storage_utils.h │ │ └── mock │ │ │ ├── BUILD.bazel │ │ │ ├── aws │ │ │ ├── mock_aws_s3_client.h │ │ │ └── mock_s3_client.h │ │ │ └── mock_blob_storage_provider.h │ ├── common │ │ ├── concurrent_map │ │ │ ├── BUILD.bazel │ │ │ ├── concurrent_map.h │ │ │ ├── concurrent_map_test.cc │ │ │ └── error_codes.h │ │ ├── concurrent_queue │ │ │ ├── BUILD.bazel │ │ │ ├── concurrent_queue.h │ │ │ ├── concurrent_queue_test.cc │ │ │ └── error_codes.h │ │ ├── global_logger │ │ │ ├── BUILD.bazel │ │ │ ├── global_logger.cc │ │ │ └── global_logger.h │ │ ├── operation_dispatcher │ │ │ ├── BUILD.bazel │ │ │ ├── error_codes.h │ │ │ ├── operation_dispatcher.h │ │ │ ├── operation_dispatcher_test.cc │ │ │ ├── retry_strategy.h │ │ │ └── retry_strategy_test.cc │ │ ├── proto │ │ │ ├── BUILD.bazel │ │ │ └── common.proto │ │ ├── streaming_context │ │ │ ├── BUILD.bazel │ │ │ └── error_codes.h │ │ ├── time_provider │ │ │ ├── BUILD.bazel │ │ │ └── time_provider.h │ │ └── uuid │ │ │ ├── BUILD.bazel │ │ │ ├── error_codes.h │ │ │ ├── uuid.cc │ │ │ ├── uuid.h │ │ │ ├── uuid_benchmark.cc │ │ │ ├── uuid_test.cc │ │ │ ├── uuid_to_string.cc │ │ │ ├── uuid_to_string.h │ │ │ └── uuid_to_string_test.cc │ ├── config_provider │ │ ├── BUILD.bazel │ │ ├── config_provider.cc │ │ ├── config_provider.h │ │ ├── config_provider_test.cc │ │ ├── env_config_provider.cc │ │ ├── env_config_provider.h │ │ ├── env_config_provider_test.cc │ │ ├── error_codes.h │ │ ├── mock │ │ │ ├── BUILD.bazel │ │ │ └── mock_config_provider.h │ │ └── resources │ │ │ └── test_config.json │ ├── credentials_provider │ │ ├── BUILD.bazel │ │ ├── aws_assume_role_credentials_provider.cc │ │ ├── aws_assume_role_credentials_provider.h │ │ ├── aws_credentials_provider.cc │ │ ├── aws_credentials_provider.h │ │ └── error_codes.h │ ├── curl_client │ │ ├── BUILD.bazel │ │ ├── error_codes.h │ │ ├── http1_curl_client.cc │ │ ├── http1_curl_client.h │ │ ├── http1_curl_client_test.cc │ │ ├── http1_curl_wrapper.cc │ │ ├── http1_curl_wrapper.h │ │ ├── http1_curl_wrapper_test.cc │ │ └── mock │ │ │ ├── BUILD.bazel │ │ │ └── mock_curl_client.h │ ├── event │ │ ├── BUILD.bazel │ │ ├── constants.h │ │ ├── event.cc │ │ ├── event.h │ │ ├── event_base.cc │ │ └── event_base.h │ ├── http2_client │ │ ├── BUILD.bazel │ │ ├── aws │ │ │ ├── aws_v4_signer.cc │ │ │ ├── aws_v4_signer.h │ │ │ └── aws_v4_signer_test.cc │ │ ├── error_codes.h │ │ ├── http2_client.cc │ │ ├── http2_client.h │ │ ├── http2_client_test.cc │ │ ├── http2_connection_pool_test.cc │ │ ├── http2_connection_test.cc │ │ ├── http_connection.cc │ │ ├── http_connection.h │ │ ├── http_connection_pool.cc │ │ ├── http_connection_pool.h │ │ └── mock │ │ │ ├── BUILD.bazel │ │ │ ├── mock_http_client.h │ │ │ ├── mock_http_connection.h │ │ │ └── mock_http_connection_pool_with_overrides.h │ ├── interface │ │ ├── BUILD.bazel │ │ ├── async_context.h │ │ ├── async_executor_interface.h │ │ ├── blob_storage_provider_interface.h │ │ ├── config_provider_interface.h │ │ ├── configuration_keys.h │ │ ├── credentials_provider_interface.h │ │ ├── errors.cc │ │ ├── errors.h │ │ ├── http_client_interface.h │ │ ├── http_types.h │ │ ├── initializable_interface.h │ │ ├── message_router_interface.h │ │ ├── service_interface.h │ │ ├── streaming_context.h │ │ └── type_def.h │ ├── kv_client │ │ ├── BUILD.bazel │ │ ├── buyer_key_value_async_http_client.h │ │ ├── common.h │ │ └── seller_key_value_async_http_client.h │ ├── logger │ │ ├── BUILD.bazel │ │ ├── interface │ │ │ ├── BUILD.bazel │ │ │ └── log_provider_interface.h │ │ ├── log_providers │ │ │ ├── BUILD.bazel │ │ │ ├── console_log_provider.cc │ │ │ ├── console_log_provider.h │ │ │ └── syslog │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── syslog_log_provider.cc │ │ │ │ └── syslog_log_provider.h │ │ ├── log_utils.cc │ │ ├── log_utils.h │ │ ├── mock │ │ │ ├── BUILD.bazel │ │ │ └── mock_log_provider.h │ │ └── syslog_reader │ │ │ └── error_codes.h │ ├── message_router │ │ ├── BUILD.bazel │ │ ├── error_codes.h │ │ ├── message_router.cc │ │ ├── message_router.h │ │ ├── message_router_test.cc │ │ └── test.proto │ ├── os │ │ ├── BUILD.bazel │ │ ├── linux │ │ │ ├── BUILD.bazel │ │ │ ├── error_codes.h │ │ │ ├── files │ │ │ │ ├── invalid_format_meminfo_file.txt │ │ │ │ ├── missing_available_meminfo_file.txt │ │ │ │ └── valid_meminfo_file.txt │ │ │ ├── system_resource_info_provider_linux.cc │ │ │ ├── system_resource_info_provider_linux.h │ │ │ └── system_resource_info_provider_linux_test.cc │ │ └── system_resource_info_provider.h │ ├── test │ │ ├── BUILD.bazel │ │ ├── errors_test.cc │ │ ├── scp_test_base.h │ │ ├── service_interface_test.cc │ │ ├── test_config.h │ │ └── utils │ │ │ ├── BUILD.bazel │ │ │ ├── auto_init_run_stop.h │ │ │ ├── aws_helper │ │ │ ├── BUILD.bazel │ │ │ ├── aws_helper.cc │ │ │ └── aws_helper.h │ │ │ ├── error_codes.h │ │ │ ├── gcp_helper │ │ │ ├── BUILD.bazel │ │ │ ├── gcp_helper.cc │ │ │ └── gcp_helper.h │ │ │ ├── http1_helper │ │ │ ├── BUILD.bazel │ │ │ ├── errors.h │ │ │ ├── test_http1_server.cc │ │ │ └── test_http1_server.h │ │ │ ├── logging_utils.cc │ │ │ ├── logging_utils.h │ │ │ ├── proto_test_utils.h │ │ │ ├── timestamp_test_utils.cc │ │ │ └── timestamp_test_utils.h │ └── utils │ │ ├── BUILD.bazel │ │ ├── base64.cc │ │ ├── base64.h │ │ ├── base64_test.cc │ │ ├── error_codes.h │ │ ├── error_utils.cc │ │ ├── error_utils.h │ │ ├── error_utils_test.cc │ │ ├── hashing.cc │ │ ├── hashing.h │ │ ├── hashing_test.cc │ │ ├── http.cc │ │ └── http.h ├── cpio │ ├── client_providers │ │ ├── auth_token_provider │ │ │ ├── BUILD.bazel │ │ │ ├── aws │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── aws_auth_token_provider.cc │ │ │ │ ├── aws_auth_token_provider.h │ │ │ │ ├── aws_auth_token_provider_test.cc │ │ │ │ └── error_codes.h │ │ │ ├── gcp │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── error_codes.h │ │ │ │ ├── gcp_auth_token_provider.cc │ │ │ │ ├── gcp_auth_token_provider.h │ │ │ │ └── gcp_auth_token_provider_test.cc │ │ │ ├── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ └── mock_auth_token_provider.h │ │ │ └── noop │ │ │ │ ├── BUILD.bazel │ │ │ │ └── noop_auth_token_provider.cc │ │ ├── blob_storage_client_provider │ │ │ ├── BUILD.bazel │ │ │ ├── aws │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── aws_blob_storage_client_provider.cc │ │ │ │ ├── aws_blob_storage_client_provider.h │ │ │ │ ├── aws_blob_storage_client_provider_stream_test.cc │ │ │ │ ├── aws_blob_storage_client_provider_test.cc │ │ │ │ ├── aws_blob_storage_client_utils.h │ │ │ │ ├── aws_blob_storage_client_utils_test.cc │ │ │ │ └── mock_s3_client.h │ │ │ ├── common │ │ │ │ ├── BUILD.bazel │ │ │ │ └── error_codes.h │ │ │ ├── gcp │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── gcp_blob_storage_client_provider.cc │ │ │ │ ├── gcp_blob_storage_client_provider.h │ │ │ │ ├── gcp_blob_storage_client_provider_stream_test.cc │ │ │ │ ├── gcp_blob_storage_client_provider_test.cc │ │ │ │ └── gcp_blob_storage_client_utils.h │ │ │ ├── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ └── mock_blob_storage_client_provider.h │ │ │ └── noop │ │ │ │ ├── BUILD.bazel │ │ │ │ └── noop_blob_storage_client_provider.cc │ │ ├── cloud_initializer │ │ │ ├── BUILD.bazel │ │ │ ├── aws │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── aws_initializer.cc │ │ │ │ └── aws_initializer.h │ │ │ └── noop │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── noop_initializer.cc │ │ │ │ └── noop_initializer.h │ │ ├── crypto_client_provider │ │ │ ├── BUILD.bazel │ │ │ ├── crypto_client_provider.cc │ │ │ ├── crypto_client_provider.h │ │ │ ├── crypto_client_provider_test.cc │ │ │ ├── error_codes.h │ │ │ └── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ └── mock_crypto_client_provider.h │ │ ├── global_cpio │ │ │ ├── BUILD.bazel │ │ │ ├── cpio_provider │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── lib_cpio_provider.cc │ │ │ │ ├── lib_cpio_provider.h │ │ │ │ ├── test_lib_cpio_provider.cc │ │ │ │ └── test_lib_cpio_provider.h │ │ │ ├── global_cpio.cc │ │ │ └── global_cpio.h │ │ ├── instance_client_provider │ │ │ ├── BUILD.bazel │ │ │ ├── aws │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── aws_instance_client_provider.cc │ │ │ │ ├── aws_instance_client_provider.h │ │ │ │ ├── aws_instance_client_utils.cc │ │ │ │ ├── aws_instance_client_utils.h │ │ │ │ ├── aws_instance_client_utils_test.cc │ │ │ │ ├── ec2_error_converter.cc │ │ │ │ ├── ec2_error_converter.h │ │ │ │ ├── ec2_error_converter_test.cc │ │ │ │ ├── error_codes.h │ │ │ │ ├── test_aws_instance_client_provider.cc │ │ │ │ └── test_aws_instance_client_provider.h │ │ │ ├── gcp │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── error_codes.h │ │ │ │ ├── gcp_instance_client_provider.cc │ │ │ │ ├── gcp_instance_client_provider.h │ │ │ │ ├── gcp_instance_client_provider_test.cc │ │ │ │ ├── gcp_instance_client_utils.cc │ │ │ │ ├── gcp_instance_client_utils.h │ │ │ │ ├── gcp_instance_client_utils_test.cc │ │ │ │ ├── test_gcp_instance_client_provider.cc │ │ │ │ └── test_gcp_instance_client_provider.h │ │ │ ├── kubernetes │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── instance_client_provider.cc │ │ │ │ ├── instance_client_provider.h │ │ │ │ └── instance_client_provider_test.cc │ │ │ ├── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ └── mock_instance_client_provider.h │ │ │ ├── noop │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── noop_instance_client_provider.cc │ │ │ │ ├── test_noop_instance_client_provider.cc │ │ │ │ └── test_noop_instance_client_provider.h │ │ │ ├── test_instance_client_provider.cc │ │ │ └── test_instance_client_provider.h │ │ ├── interface │ │ │ ├── BUILD.bazel │ │ │ ├── auth_token_provider_interface.h │ │ │ ├── blob_storage_client_provider_interface.h │ │ │ ├── cloud_initializer_interface.h │ │ │ ├── cpio_provider_interface.h │ │ │ ├── crypto_client_provider_interface.h │ │ │ ├── instance_client_provider_interface.h │ │ │ ├── kms_client_provider_interface.h │ │ │ ├── metric_client_provider_interface.h │ │ │ ├── parameter_client_provider_interface.h │ │ │ ├── private_key_client_provider_interface.h │ │ │ ├── private_key_fetcher_provider_interface.h │ │ │ ├── public_key_client_provider_interface.h │ │ │ ├── queue_client_provider_interface.h │ │ │ ├── role_credentials_provider_interface.h │ │ │ └── type_def.h │ │ ├── kms_client_provider │ │ │ ├── BUILD.bazel │ │ │ ├── aws │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── aws_kms_aead.cc │ │ │ │ ├── aws_kms_aead.h │ │ │ │ ├── aws_kms_aead_test.cc │ │ │ │ ├── false_main.cc │ │ │ │ ├── hello_main.cc │ │ │ │ ├── nontee_aws_kms_client_provider.cc │ │ │ │ ├── nontee_aws_kms_client_provider.h │ │ │ │ ├── nontee_aws_kms_client_provider_test.cc │ │ │ │ ├── nontee_error_codes.h │ │ │ │ ├── tee_aws_kms_client_provider.cc │ │ │ │ ├── tee_aws_kms_client_provider.h │ │ │ │ ├── tee_aws_kms_client_provider_test.cc │ │ │ │ ├── tee_aws_kms_client_provider_utils.cc │ │ │ │ ├── tee_aws_kms_client_provider_utils.h │ │ │ │ ├── tee_aws_kms_client_provider_utils_test.cc │ │ │ │ ├── tee_error_codes.h │ │ │ │ └── true_main.cc │ │ │ ├── azure │ │ │ │ └── BUILD.bazel │ │ │ ├── gcp │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── error_codes.h │ │ │ │ ├── gcp_key_management_service_client.cc │ │ │ │ ├── gcp_key_management_service_client.h │ │ │ │ ├── gcp_kms_aead.cc │ │ │ │ ├── gcp_kms_aead.h │ │ │ │ ├── gcp_kms_aead_test.cc │ │ │ │ ├── gcp_kms_client_provider.cc │ │ │ │ ├── gcp_kms_client_provider.h │ │ │ │ ├── gcp_kms_client_provider_test.cc │ │ │ │ ├── nontee_gcp_kms_aead_provider.cc │ │ │ │ ├── tee_gcp_kms_aead_provider.cc │ │ │ │ ├── tee_gcp_kms_client_provider_utils.cc │ │ │ │ ├── tee_gcp_kms_client_provider_utils.h │ │ │ │ └── tee_gcp_kms_client_provider_utils_test.cc │ │ │ ├── interface │ │ │ │ └── gcp │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── gcp_key_management_service_client_interface.h │ │ │ └── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── aws │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── mock_kms_client.h │ │ │ │ ├── mock_nontee_aws_kms_client_provider_with_overrides.h │ │ │ │ └── mock_tee_aws_kms_client_provider_with_overrides.h │ │ │ │ ├── gcp │ │ │ │ ├── BUILD.bazel │ │ │ │ └── mock_gcp_key_management_service_client.h │ │ │ │ └── mock_kms_client_provider.h │ │ ├── metric_client_provider │ │ │ ├── BUILD.bazel │ │ │ ├── aws │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── aws_metric_client_provider.cc │ │ │ │ ├── aws_metric_client_provider.h │ │ │ │ ├── aws_metric_client_provider_test.cc │ │ │ │ ├── aws_metric_client_utils.cc │ │ │ │ ├── aws_metric_client_utils.h │ │ │ │ ├── aws_metric_client_utils_test.cc │ │ │ │ ├── cloud_watch_error_converter.cc │ │ │ │ ├── cloud_watch_error_converter.h │ │ │ │ ├── cloud_watch_error_converter_test.cc │ │ │ │ └── error_codes.h │ │ │ ├── error_codes.h │ │ │ ├── gcp │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── error_codes.h │ │ │ │ ├── gcp_metric_client_provider.cc │ │ │ │ ├── gcp_metric_client_provider.h │ │ │ │ ├── gcp_metric_client_provider_test.cc │ │ │ │ ├── gcp_metric_client_utils.cc │ │ │ │ ├── gcp_metric_client_utils.h │ │ │ │ └── gcp_metric_client_utils_test.cc │ │ │ ├── metric_client_provider.cc │ │ │ ├── metric_client_provider.h │ │ │ ├── metric_client_provider_test.cc │ │ │ ├── metric_client_utils.cc │ │ │ ├── metric_client_utils.h │ │ │ ├── metric_client_utils_test.cc │ │ │ ├── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── gcp │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── mock_gcp_metric_client_provider_with_overrides.h │ │ │ │ ├── mock_metric_client_provider.h │ │ │ │ └── mock_metric_client_provider_with_overrides.h │ │ │ └── noop │ │ │ │ ├── BUILD.bazel │ │ │ │ └── noop_metric_client_provider.cc │ │ ├── parameter_client_provider │ │ │ ├── BUILD.bazel │ │ │ ├── aws │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── aws_parameter_client_provider.cc │ │ │ │ ├── aws_parameter_client_provider.h │ │ │ │ ├── error_codes.h │ │ │ │ ├── ssm_error_converter.cc │ │ │ │ ├── ssm_error_converter.h │ │ │ │ └── ssm_error_converter_test.cc │ │ │ ├── gcp │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── error_codes.h │ │ │ │ ├── gcp_parameter_client_provider.cc │ │ │ │ ├── gcp_parameter_client_provider.h │ │ │ │ └── gcp_parameter_client_provider_test.cc │ │ │ ├── interface │ │ │ │ └── gcp │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── gcp_secret_manager_interface.h │ │ │ ├── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── gcp │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── mock_gcp_parameter_client_provider_with_overrides.h │ │ │ │ └── mock_parameter_client_provider.h │ │ │ └── noop │ │ │ │ ├── BUILD.bazel │ │ │ │ └── noop_parameter_client_provider.cc │ │ ├── private_key_client_provider │ │ │ ├── BUILD.bazel │ │ │ ├── error_codes.h │ │ │ ├── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── mock_private_key_client_provider.h │ │ │ │ └── mock_private_key_client_provider_with_overrides.h │ │ │ ├── private_key_client_provider.cc │ │ │ ├── private_key_client_provider.h │ │ │ ├── private_key_client_provider_test.cc │ │ │ ├── private_key_client_utils.cc │ │ │ ├── private_key_client_utils.h │ │ │ └── private_key_client_utils_test.cc │ │ ├── private_key_fetcher_provider │ │ │ ├── BUILD.bazel │ │ │ ├── aws │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── aws_private_key_fetcher_provider.cc │ │ │ │ ├── aws_private_key_fetcher_provider.h │ │ │ │ ├── aws_private_key_fetcher_provider_test.cc │ │ │ │ └── error_codes.h │ │ │ ├── error_codes.h │ │ │ ├── gcp │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── error_codes.h │ │ │ │ ├── gcp_private_key_fetcher_provider.cc │ │ │ │ ├── gcp_private_key_fetcher_provider.h │ │ │ │ └── gcp_private_key_fetcher_provider_test.cc │ │ │ ├── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── mock_private_key_fetcher_provider.h │ │ │ │ └── mock_private_key_fetcher_provider_with_overrides.h │ │ │ ├── noop │ │ │ │ ├── BUILD.bazel │ │ │ │ └── noop_private_key_fetcher_provider.cc │ │ │ ├── private_key_fetcher_provider.cc │ │ │ ├── private_key_fetcher_provider.h │ │ │ ├── private_key_fetcher_provider_test.cc │ │ │ ├── private_key_fetcher_provider_utils.cc │ │ │ ├── private_key_fetcher_provider_utils.h │ │ │ └── private_key_fetcher_provider_utils_test.cc │ │ ├── public_key_client_provider │ │ │ ├── BUILD.bazel │ │ │ ├── error_codes.h │ │ │ ├── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ └── mock_public_key_client_provider.h │ │ │ ├── public_key_client_provider.cc │ │ │ ├── public_key_client_provider.h │ │ │ ├── public_key_client_provider_test.cc │ │ │ ├── public_key_client_utils.cc │ │ │ ├── public_key_client_utils.h │ │ │ └── public_key_client_utils_test.cc │ │ ├── queue_client_provider │ │ │ ├── BUILD.bazel │ │ │ ├── aws │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── aws_queue_client_provider.cc │ │ │ │ ├── aws_queue_client_provider.h │ │ │ │ ├── aws_queue_client_provider_test.cc │ │ │ │ ├── error_codes.h │ │ │ │ ├── sqs_error_converter.cc │ │ │ │ ├── sqs_error_converter.h │ │ │ │ └── sqs_error_converter_test.cc │ │ │ ├── gcp │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── error_codes.h │ │ │ │ ├── gcp_queue_client_provider.cc │ │ │ │ ├── gcp_queue_client_provider.h │ │ │ │ └── gcp_queue_client_provider_test.cc │ │ │ ├── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── aws │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── mock_sqs_client.h │ │ │ │ ├── gcp │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── mock_pubsub_stubs.h │ │ │ │ └── mock_queue_client_provider.h │ │ │ └── noop │ │ │ │ ├── BUILD.bazel │ │ │ │ └── noop_queue_client_provider.cc │ │ └── role_credentials_provider │ │ │ ├── BUILD.bazel │ │ │ ├── aws │ │ │ ├── BUILD.bazel │ │ │ ├── aws_role_credentials_provider.cc │ │ │ ├── aws_role_credentials_provider.h │ │ │ ├── error_codes.h │ │ │ ├── sts_error_converter.cc │ │ │ ├── sts_error_converter.h │ │ │ ├── sts_error_converter_test.cc │ │ │ ├── test_aws_role_credentials_provider.cc │ │ │ └── test_aws_role_credentials_provider.h │ │ │ ├── gcp │ │ │ ├── BUILD.bazel │ │ │ ├── gcp_role_credentials_provider.cc │ │ │ └── gcp_role_credentials_provider.h │ │ │ ├── mock │ │ │ ├── BUILD.bazel │ │ │ └── mock_role_credentials_provider.h │ │ │ └── noop │ │ │ ├── BUILD.bazel │ │ │ └── noop_role_credentials_provider.cc │ ├── common │ │ ├── BUILD.bazel │ │ ├── aws │ │ │ ├── BUILD.bazel │ │ │ ├── aws_utils.cc │ │ │ ├── aws_utils.h │ │ │ ├── error_codes.h │ │ │ ├── test_aws_utils.cc │ │ │ └── test_aws_utils.h │ │ ├── cpio_utils.h │ │ └── gcp │ │ │ ├── BUILD.bazel │ │ │ ├── error_codes.h │ │ │ ├── gcp_utils.cc │ │ │ ├── gcp_utils.h │ │ │ └── gcp_utils_test.cc │ ├── documentation │ │ ├── BUILD.bazel │ │ ├── cpio_docs.bzl │ │ ├── protoc_template_plugin.go │ │ └── tmpl │ │ │ └── protobuf_markdown.tmpl │ └── test │ │ └── native_lib │ │ └── aws │ │ ├── BUILD.bazel │ │ └── aws_cpio_lib_integration_test.cc ├── encryption │ └── key_fetcher │ │ ├── BUILD.bazel │ │ ├── fake_key_fetcher_manager.cc │ │ ├── fake_key_fetcher_manager.h │ │ ├── interface │ │ ├── BUILD.bazel │ │ ├── key_fetcher_manager_interface.h │ │ ├── private_key_fetcher_interface.h │ │ └── public_key_fetcher_interface.h │ │ ├── key_fetcher_manager.cc │ │ ├── key_fetcher_manager.h │ │ ├── key_fetcher_manager_test.cc │ │ ├── key_fetcher_utils.cc │ │ ├── key_fetcher_utils.h │ │ ├── key_fetcher_utils_test.cc │ │ ├── mock │ │ ├── BUILD.bazel │ │ ├── mock_key_fetcher_manager.h │ │ ├── mock_private_key_fetcher.h │ │ └── mock_public_key_fetcher.h │ │ ├── private_key_fetcher.cc │ │ ├── private_key_fetcher.h │ │ ├── private_key_fetcher_test.cc │ │ ├── public_key_fetcher.cc │ │ ├── public_key_fetcher.h │ │ └── public_key_fetcher_test.cc ├── errors │ ├── BUILD │ ├── retry.cc │ ├── retry.h │ └── retry_test.cc ├── logger │ ├── BUILD.bazel │ ├── logger.proto │ ├── request_context_impl.cc │ ├── request_context_impl.h │ ├── request_context_impl_die_test.cc │ ├── request_context_impl_non_prod.cc │ ├── request_context_impl_non_prod_test.cc │ ├── request_context_impl_prod.cc │ ├── request_context_impl_prod_test.cc │ ├── request_context_impl_test.h │ ├── request_context_logger.cc │ ├── request_context_logger.h │ ├── request_context_logger_force_otel_non_prod_test.cc │ ├── request_context_logger_force_otel_prod_test.cc │ ├── request_context_logger_non_prod_test.cc │ ├── request_context_logger_prod_test.cc │ └── request_context_logger_test.h ├── metric │ ├── BUILD.bazel │ ├── context.h │ ├── context_map.h │ ├── context_map_test.cc │ ├── context_nonprod_test.cc │ ├── context_prod_test.cc │ ├── context_test.h │ ├── definition.h │ ├── definition_test.cc │ ├── dp.h │ ├── dp_test.cc │ ├── key_fetch.h │ ├── key_fetch_test.cc │ ├── metric_router.cc │ ├── metric_router.h │ ├── metric_router_test.cc │ └── udf.proto ├── public │ ├── core │ │ ├── BUILD.bazel │ │ ├── errors.cc │ │ ├── errors_test.cc │ │ ├── execution_result.cc │ │ ├── execution_result_test.cc │ │ ├── interface │ │ │ ├── BUILD.bazel │ │ │ ├── cloud_platform.h │ │ │ ├── errors.h │ │ │ └── execution_result.h │ │ ├── struct_matchers_test.cc │ │ ├── test_execution_result_matchers.cc │ │ ├── test_execution_result_matchers.h │ │ └── test_struct_matchers.h │ └── cpio │ │ ├── adapters │ │ ├── blob_storage_client │ │ │ ├── BUILD.bazel │ │ │ ├── blob_storage_client.cc │ │ │ ├── blob_storage_client.h │ │ │ ├── blob_storage_client_test.cc │ │ │ └── mock_blob_storage_client_with_overrides.h │ │ ├── common │ │ │ ├── BUILD.bazel │ │ │ └── adapter_utils.h │ │ ├── crypto_client │ │ │ ├── BUILD.bazel │ │ │ ├── crypto_client.cc │ │ │ ├── crypto_client.h │ │ │ ├── crypto_client_test.cc │ │ │ └── mock_crypto_client_with_overrides.h │ │ ├── instance_client │ │ │ ├── BUILD.bazel │ │ │ ├── instance_client.cc │ │ │ ├── instance_client.h │ │ │ ├── instance_client_test.cc │ │ │ └── mock_instance_client_with_overrides.h │ │ ├── kms_client │ │ │ ├── BUILD.bazel │ │ │ ├── kms_client.cc │ │ │ ├── kms_client.h │ │ │ ├── kms_client_test.cc │ │ │ └── mock_kms_client_with_overrides.h │ │ ├── metric_client │ │ │ ├── BUILD.bazel │ │ │ ├── metric_client.cc │ │ │ ├── metric_client.h │ │ │ ├── metric_client_test.cc │ │ │ └── mock_metric_client_with_overrides.h │ │ ├── parameter_client │ │ │ ├── BUILD.bazel │ │ │ ├── mock_parameter_client_with_overrides.h │ │ │ ├── parameter_client.cc │ │ │ ├── parameter_client.h │ │ │ └── parameter_client_test.cc │ │ ├── private_key_client │ │ │ ├── BUILD.bazel │ │ │ ├── mock_private_key_client_with_overrides.h │ │ │ ├── private_key_client.cc │ │ │ ├── private_key_client.h │ │ │ └── private_key_client_test.cc │ │ └── public_key_client │ │ │ ├── BUILD.bazel │ │ │ ├── mock_public_key_client_with_overrides.h │ │ │ ├── public_key_client.cc │ │ │ ├── public_key_client.h │ │ │ └── public_key_client_test.cc │ │ ├── cli │ │ ├── BUILD.bazel │ │ ├── blob_storage_cli.cc │ │ ├── blob_storage_cli.h │ │ └── gcp │ │ │ ├── BUILD.bazel │ │ │ └── gcp_cpio_cli.cc │ │ ├── core │ │ ├── BUILD.bazel │ │ ├── cpio.cc │ │ └── lib_cpio_test.cc │ │ ├── examples │ │ ├── BUILD.bazel │ │ ├── blob_storage_client_test.cc │ │ ├── crypto_client_test.cc │ │ ├── instance_client_test.cc │ │ ├── kms_client_test.cc │ │ ├── local_instance_client_test.cc │ │ ├── local_metric_client_test.cc │ │ ├── local_parameter_client_test.cc │ │ ├── local_private_key_client_test.cc │ │ ├── metric_client_test.cc │ │ ├── parameter_client_test.cc │ │ ├── private_key_client_test.cc │ │ └── public_key_client_test.cc │ │ ├── interface │ │ ├── BUILD.bazel │ │ ├── blob_storage_client │ │ │ ├── BUILD.bazel │ │ │ ├── blob_storage_client_interface.h │ │ │ └── type_def.h │ │ ├── cpio.h │ │ ├── crypto_client │ │ │ ├── BUILD.bazel │ │ │ ├── crypto_client_interface.h │ │ │ └── type_def.h │ │ ├── error_codes.h │ │ ├── instance_client │ │ │ ├── BUILD.bazel │ │ │ ├── instance_client_interface.h │ │ │ └── type_def.h │ │ ├── kms_client │ │ │ ├── BUILD.bazel │ │ │ ├── kms_client_interface.h │ │ │ └── type_def.h │ │ ├── metric_client │ │ │ ├── BUILD.bazel │ │ │ ├── metric_client_interface.h │ │ │ └── type_def.h │ │ ├── parameter_client │ │ │ ├── BUILD.bazel │ │ │ ├── parameter_client_interface.h │ │ │ └── type_def.h │ │ ├── private_key_client │ │ │ ├── BUILD.bazel │ │ │ ├── private_key_client_interface.h │ │ │ └── type_def.h │ │ ├── public_key_client │ │ │ ├── BUILD.bazel │ │ │ ├── public_key_client_interface.h │ │ │ └── type_def.h │ │ └── type_def.h │ │ ├── mock │ │ ├── BUILD.bazel │ │ ├── blob_storage_client │ │ │ ├── BUILD.bazel │ │ │ └── mock_blob_storage_client.h │ │ ├── crypto_client │ │ │ ├── BUILD.bazel │ │ │ └── mock_crypto_client.h │ │ ├── instance_client │ │ │ ├── BUILD.bazel │ │ │ └── mock_instance_client.h │ │ ├── kms_client │ │ │ ├── BUILD.bazel │ │ │ └── mock_kms_client.h │ │ ├── metric_client │ │ │ ├── BUILD.bazel │ │ │ └── mock_metric_client.h │ │ ├── parameter_client │ │ │ ├── BUILD.bazel │ │ │ └── mock_parameter_client.h │ │ ├── private_key_client │ │ │ ├── BUILD.bazel │ │ │ └── mock_private_key_client.h │ │ ├── public_key_client │ │ │ ├── BUILD.bazel │ │ │ └── mock_public_key_client.h │ │ └── public_mocks_test.cc │ │ ├── proto │ │ ├── BUILD.bazel │ │ ├── auto_scaling_service │ │ │ └── v1 │ │ │ │ ├── BUILD.bazel │ │ │ │ └── auto_scaling_service.proto │ │ ├── blob_storage_service │ │ │ └── v1 │ │ │ │ ├── BUILD.bazel │ │ │ │ └── blob_storage_service.proto │ │ ├── crypto_service │ │ │ └── v1 │ │ │ │ ├── BUILD.bazel │ │ │ │ └── crypto_service.proto │ │ ├── detailed_execution_result.proto │ │ ├── instance_service │ │ │ └── v1 │ │ │ │ ├── BUILD.bazel │ │ │ │ └── instance_service.proto │ │ ├── kms_service │ │ │ └── v1 │ │ │ │ ├── BUILD.bazel │ │ │ │ └── kms_service.proto │ │ ├── metric_service │ │ │ └── v1 │ │ │ │ ├── BUILD.bazel │ │ │ │ └── metric_service.proto │ │ ├── parameter_service │ │ │ └── v1 │ │ │ │ ├── BUILD.bazel │ │ │ │ └── parameter_service.proto │ │ ├── private_key_service │ │ │ └── v1 │ │ │ │ ├── BUILD.bazel │ │ │ │ └── private_key_service.proto │ │ ├── public_key_service │ │ │ └── v1 │ │ │ │ ├── BUILD.bazel │ │ │ │ └── public_key_service.proto │ │ └── queue_service │ │ │ └── v1 │ │ │ ├── BUILD.bazel │ │ │ └── queue_service.proto │ │ ├── test │ │ └── global_cpio │ │ │ ├── BUILD.bazel │ │ │ ├── test_cpio_options.h │ │ │ ├── test_lib_cpio.cc │ │ │ └── test_lib_cpio.h │ │ ├── utils │ │ ├── metric_aggregation │ │ │ └── interface │ │ │ │ ├── BUILD.bazel │ │ │ │ └── type_def.h │ │ └── sync_utils │ │ │ ├── BUILD.bazel │ │ │ └── sync_utils.h │ │ └── validator │ │ ├── BUILD.bazel │ │ ├── blob_storage_client_validator.cc │ │ ├── blob_storage_client_validator.h │ │ ├── build_and_run_validator_enclave │ │ ├── init_server_enclave │ │ ├── instance_client_validator.cc │ │ ├── instance_client_validator.h │ │ ├── key_fetcher_validator.cc │ │ ├── key_fetcher_validator.h │ │ ├── parameter_client_validator.cc │ │ ├── parameter_client_validator.h │ │ ├── proto │ │ ├── BUILD.bazel │ │ └── validator_config.proto │ │ ├── queue_client_validator.cc │ │ ├── queue_client_validator.h │ │ ├── testdata │ │ ├── structure.yaml │ │ └── version.yaml │ │ ├── validation.cc │ │ └── validator_config.txtpb ├── roma │ ├── benchmark │ │ ├── BUILD.bazel │ │ ├── ba_server_benchmark.cc │ │ ├── benchmark_suite_test.cc │ │ ├── compiler │ │ │ ├── BUILD.bazel │ │ │ ├── compiler_utils.h │ │ │ ├── execute_benchmark.cc │ │ │ └── load_benchmark.cc │ │ ├── duration_benchmark.cc │ │ ├── fake_ba_server.cc │ │ ├── fake_ba_server.h │ │ ├── fake_kv_server.cc │ │ ├── fake_kv_server.h │ │ ├── fake_kv_server_test.cc │ │ ├── flatbuffers │ │ │ ├── BUILD.bazel │ │ │ ├── data_structures.fbs │ │ │ ├── data_structures.js │ │ │ ├── generate_flatbuffers_kvstruct.cc │ │ │ ├── kvdata_benchmark.js │ │ │ └── text_decoder.js │ │ ├── host_api_grpc_benchmark.cc │ │ ├── isolate_restoration_benchmark.cc │ │ ├── kv_server_udf_benchmark.cc │ │ ├── logging_benchmark.cc │ │ ├── object_input_benchmark.cc │ │ ├── prime_sieve_benchmark.cc │ │ ├── roma_benchmark.cc │ │ ├── roma_benchmark.h │ │ ├── roma_v8_benchmark.cc │ │ ├── serde │ │ │ ├── BUILD.bazel │ │ │ ├── benchmark_request_large.json │ │ │ ├── benchmark_request_medium.json │ │ │ ├── benchmark_request_small.json │ │ │ ├── benchmark_service.proto │ │ │ ├── deserialize_benchmark.cc │ │ │ ├── json_converter.bzl │ │ │ ├── json_converter.cc │ │ │ ├── serde_utils.h │ │ │ └── serialize_benchmark.cc │ │ ├── sort_list_benchmark.cc │ │ └── test_code.h │ ├── byob │ │ ├── BUILD.bazel │ │ ├── benchmark │ │ │ ├── BUILD.bazel │ │ │ ├── clone_benchmark.cc │ │ │ ├── image_test.yaml │ │ │ ├── memory_usage_benchmark.cc │ │ │ ├── memory_usage_benchmark_image_test.yaml │ │ │ ├── roma_byob_benchmark.cc │ │ │ ├── roma_byob_rpc_factory.h │ │ │ ├── setup_benchmark.cc │ │ │ ├── traffic_generator.cc │ │ │ └── traffic_generator_image_test.yaml │ │ ├── config │ │ │ ├── BUILD.bazel │ │ │ ├── config.h │ │ │ └── container.bzl │ │ ├── container │ │ │ ├── BUILD.bazel │ │ │ ├── Dockerfile.nsjail │ │ │ ├── Dockerfile.runsc │ │ │ ├── config.json.tmpl │ │ │ ├── generate_system_bazelrc │ │ │ ├── gvisor.patch │ │ │ └── run_workers.cc │ │ ├── dispatcher │ │ │ ├── BUILD.bazel │ │ │ ├── dispatcher.cc │ │ │ ├── dispatcher.h │ │ │ ├── dispatcher.proto │ │ │ ├── dispatcher_test.cc │ │ │ ├── dispatcher_udf_test.cc │ │ │ ├── interface.h │ │ │ └── run_workers_without_sandbox.cc │ │ ├── example │ │ │ ├── BUILD.bazel │ │ │ ├── annotated_example.proto │ │ │ ├── example.proto │ │ │ ├── example_udf.cc │ │ │ └── example_udf.go │ │ ├── image_test.yaml │ │ ├── interface │ │ │ ├── BUILD.bazel │ │ │ ├── metrics.h │ │ │ ├── roma_service.cc │ │ │ └── roma_service.h │ │ ├── sample_udf │ │ │ ├── BUILD.bazel │ │ │ ├── SampleUdf.java │ │ │ ├── abort_early_udf.cc │ │ │ ├── abort_late_udf.cc │ │ │ ├── cap_udf.cc │ │ │ ├── filesystem_add_udf.cc │ │ │ ├── filesystem_delete_udf.cc │ │ │ ├── filesystem_edit_udf.cc │ │ │ ├── generated │ │ │ │ └── sample.proto │ │ │ ├── log_benchmark_udf.cc │ │ │ ├── log_udf.cc │ │ │ ├── message_queue_udf.cc │ │ │ ├── new_udf.cc │ │ │ ├── nonzero_return_udf.cc │ │ │ ├── pause_udf.cc │ │ │ ├── payload_read.cc │ │ │ ├── payload_write.cc │ │ │ ├── prime_sieve_udf.cc │ │ │ ├── sample.proto │ │ │ ├── sample_callback.proto │ │ │ ├── sample_service_native_functions.h │ │ │ ├── sample_udf.cc │ │ │ ├── sample_udf.go │ │ │ ├── sample_udf_reflect_config.json │ │ │ ├── shell_cli_test.yaml │ │ │ ├── socket_finder_udf.cc │ │ │ ├── sort_list_100k_udf.cc │ │ │ ├── sort_list_10k_udf.cc │ │ │ ├── sort_list_1m_udf.cc │ │ │ └── syscall_filter_udf.cc │ │ ├── test │ │ │ ├── BUILD.bazel │ │ │ ├── echo_commands_file.txt │ │ │ ├── echo_request.json │ │ │ ├── empty.json │ │ │ ├── example_benchmark.cc │ │ │ ├── example_benchmark_image_test.yaml │ │ │ ├── example_roma_byob_app_service.h │ │ │ ├── example_shell.cc │ │ │ ├── example_shell_image_test.yaml │ │ │ ├── example_test.cc │ │ │ ├── roma_byob_test.cc │ │ │ ├── sort_list_commands_file.txt │ │ │ └── udf_image_tests.yaml │ │ ├── tools │ │ │ ├── BUILD.bazel │ │ │ ├── shell_evaluator.cc │ │ │ ├── shell_evaluator.h │ │ │ └── shell_evaluator_test.cc │ │ └── utility │ │ │ ├── BUILD.bazel │ │ │ ├── file_reader.cc │ │ │ ├── file_reader.h │ │ │ ├── file_reader_test.cc │ │ │ ├── udf_blob.cc │ │ │ ├── udf_blob.h │ │ │ ├── udf_blob_test.cc │ │ │ ├── utils.cc │ │ │ └── utils.h │ ├── config │ │ ├── BUILD.bazel │ │ ├── config.h │ │ ├── config_log_test.cc │ │ ├── function_binding_object_v2.h │ │ ├── function_binding_v2_test.cc │ │ ├── type_converter.h │ │ ├── type_converter_benchmark.cc │ │ └── type_converter_test.cc │ ├── interface │ │ ├── BUILD.bazel │ │ ├── function_binding_io.proto │ │ ├── metrics.h │ │ └── roma.h │ ├── logging │ │ ├── BUILD.bazel │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── logging_sapi_test.cc │ │ └── logging_test.cc │ ├── metadata_storage │ │ ├── BUILD.bazel │ │ ├── metadata_storage.h │ │ ├── thread_safe_map.h │ │ └── thread_safe_map_test.cc │ ├── native_function_grpc_server │ │ ├── BUILD │ │ ├── grpc_client.cc │ │ ├── grpc_logging_client.cc │ │ ├── grpc_multi_client.cc │ │ ├── interface.h │ │ ├── native_function_grpc_server.h │ │ ├── native_function_grpc_server_test.cc │ │ ├── proto │ │ │ ├── BUILD │ │ │ ├── callback_service.proto │ │ │ ├── logging_service.proto │ │ │ ├── multi_service.proto │ │ │ ├── test_host_service.proto │ │ │ ├── test_service.proto │ │ │ ├── test_service_native_functions.h │ │ │ └── test_service_roma_api_test.cc │ │ ├── request_handlers.h │ │ └── test_request_handlers.h │ ├── roma_service │ │ ├── BUILD.bazel │ │ ├── app_api │ │ │ ├── sample_1_test │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── sample_1.proto │ │ │ │ └── sample_1_roma_api_test.cc │ │ │ └── sample_2_test │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── sample_2.proto │ │ │ │ └── sample_2_roma_api_test.cc │ │ ├── buffer_size_sapi_test.cc │ │ ├── buffer_size_test.cc │ │ ├── function_binding_test.cc │ │ ├── helloworld.proto │ │ ├── metadata_sapi_test.cc │ │ ├── metadata_test.cc │ │ ├── metrics_test.cc │ │ ├── roma_service.h │ │ ├── romav8_app_service.h │ │ ├── romav8_app_service_test.cc │ │ ├── romav8_proto_utils.h │ │ ├── romav8_proto_utils_test.cc │ │ ├── sandboxed_service_sapi_test.cc │ │ ├── sandboxed_service_test.cc │ │ ├── string_size_test.cc │ │ ├── wasm_sapi_test.cc │ │ └── wasm_test.cc │ ├── sandbox │ │ ├── constants │ │ │ ├── BUILD.bazel │ │ │ └── constants.h │ │ ├── dispatcher │ │ │ ├── BUILD.bazel │ │ │ ├── dispatcher.cc │ │ │ ├── dispatcher.h │ │ │ ├── dispatcher_benchmark.cc │ │ │ ├── dispatcher_sapi_test.cc │ │ │ ├── dispatcher_test.cc │ │ │ ├── request_converter.cc │ │ │ ├── request_converter.h │ │ │ ├── request_converter_test.cc │ │ │ ├── request_validator.cc │ │ │ └── request_validator.h │ │ ├── js_engine │ │ │ ├── BUILD.bazel │ │ │ ├── js_engine.h │ │ │ └── v8_engine │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── arraybuffer.h │ │ │ │ ├── arraybuffer_benchmark.cc │ │ │ │ ├── arraybuffer_js.h │ │ │ │ ├── arraybuffer_test.cc │ │ │ │ ├── heap_snapshot_parser.h │ │ │ │ ├── performance_now.h │ │ │ │ ├── performance_now_nonprod.cc │ │ │ │ ├── performance_now_prod.cc │ │ │ │ ├── profiler_isolate_wrapper.h │ │ │ │ ├── snapshot_compilation_context.h │ │ │ │ ├── v8_basic_test.cc │ │ │ │ ├── v8_console.h │ │ │ │ ├── v8_console_test.cc │ │ │ │ ├── v8_isolate_function_binding.cc │ │ │ │ ├── v8_isolate_function_binding.h │ │ │ │ ├── v8_isolate_function_binding_test.cc │ │ │ │ ├── v8_isolate_wrapper.h │ │ │ │ ├── v8_js_engine.cc │ │ │ │ ├── v8_js_engine.h │ │ │ │ └── v8_js_engine_test.cc │ │ ├── native_function_binding │ │ │ ├── BUILD.bazel │ │ │ ├── native_function_handler.h │ │ │ ├── native_function_handler_non_sapi.h │ │ │ ├── native_function_handler_non_sapi_test.cc │ │ │ ├── native_function_handler_sapi_ipc.h │ │ │ ├── native_function_handler_sapi_ipc_test.cc │ │ │ ├── native_function_invoker.h │ │ │ ├── native_function_invoker_non_sapi.cc │ │ │ ├── native_function_invoker_non_sapi_test.cc │ │ │ ├── native_function_invoker_sapi_ipc.cc │ │ │ ├── native_function_invoker_sapi_ipc_test.cc │ │ │ ├── native_function_table.h │ │ │ ├── native_function_table_test.cc │ │ │ └── rpc_wrapper.proto │ │ ├── worker │ │ │ ├── BUILD.bazel │ │ │ ├── v8_engine_worker_test.cc │ │ │ ├── worker.cc │ │ │ └── worker.h │ │ └── worker_api │ │ │ └── sapi │ │ │ ├── BUILD.bazel │ │ │ ├── error_codes.cc │ │ │ ├── error_codes.h │ │ │ ├── utils.cc │ │ │ ├── utils.h │ │ │ ├── worker_init_params.proto │ │ │ ├── worker_params.proto │ │ │ ├── worker_sandbox_api.cc │ │ │ ├── worker_sandbox_api.h │ │ │ ├── worker_sandbox_api_test.cc │ │ │ ├── worker_sapi_sandbox.h │ │ │ ├── worker_wrapper.h │ │ │ ├── worker_wrapper_impl.cc │ │ │ ├── worker_wrapper_impl.h │ │ │ ├── worker_wrapper_impl_benchmark.cc │ │ │ ├── worker_wrapper_impl_test.cc │ │ │ ├── worker_wrapper_non_sapi.cc │ │ │ ├── worker_wrapper_sapi.cc │ │ │ └── worker_wrapper_sapi_test.cc │ ├── testing │ │ ├── cpp_wasi_dependency_example │ │ │ ├── BUILD.bazel │ │ │ └── wasi_dependency.cc │ │ ├── cpp_wasm_allocate_memory │ │ │ ├── BUILD.bazel │ │ │ └── allocate_memory.cc │ │ ├── cpp_wasm_erroneous_code_example │ │ │ ├── BUILD.bazel │ │ │ └── erroneous_code.cc │ │ ├── cpp_wasm_hello_world_example │ │ │ ├── BUILD.bazel │ │ │ └── hello_world.cc │ │ ├── cpp_wasm_hello_world_with_logging_example │ │ │ ├── BUILD.bazel │ │ │ └── hello_world.cc │ │ ├── cpp_wasm_list_of_string_in_list_of_string_out_example │ │ │ ├── BUILD.bazel │ │ │ └── list_of_string_in_list_of_string_out.cc │ │ ├── cpp_wasm_prime_sieve_n_example │ │ │ ├── BUILD.bazel │ │ │ └── prime_sieve.cc │ │ ├── cpp_wasm_return_bad_pointer │ │ │ ├── BUILD.bazel │ │ │ └── return_bad_pointer.cc │ │ ├── cpp_wasm_sieve_of_eratosthenes_example │ │ │ ├── BUILD.bazel │ │ │ └── sieve_of_eratosthenes.cc │ │ ├── cpp_wasm_sort_list_example │ │ │ ├── BUILD.bazel │ │ │ └── sort_list.cc │ │ ├── cpp_wasm_string_in_string_out_example │ │ │ ├── BUILD.bazel │ │ │ └── string_in_string_out.cc │ │ ├── rust_wasm_list_of_string_in_list_of_string_out_example │ │ │ ├── .gitignore │ │ │ ├── BUILD.bazel │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ ├── list_of_string_in_list_of_string_out.rs │ │ │ └── list_of_string_in_list_of_string_out.wasm │ │ └── rust_wasm_string_in_string_out_example │ │ │ ├── .gitignore │ │ │ ├── BUILD.bazel │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ ├── string_in_string_out.rs │ │ │ └── string_in_string_out.wasm │ ├── tools │ │ ├── api_plugin │ │ │ ├── BUILD.bazel │ │ │ ├── app_api.go │ │ │ ├── cmd │ │ │ │ ├── BUILD.bazel │ │ │ │ └── flags.go │ │ │ ├── embed │ │ │ │ └── version.txt │ │ │ ├── internal │ │ │ │ └── roma_api.bzl │ │ │ ├── protoc_template_plugin.go │ │ │ ├── roma_api.bzl │ │ │ └── tmpl │ │ │ │ ├── byob │ │ │ │ ├── app │ │ │ │ │ ├── cpp_roma_byob_benchmark.tmpl │ │ │ │ │ ├── cpp_roma_byob_shell.tmpl │ │ │ │ │ ├── cpp_roma_byob_traffic_generator.tmpl │ │ │ │ │ ├── hpp_roma_byob.tmpl │ │ │ │ │ ├── md_cpp_client_sdk.tmpl │ │ │ │ │ ├── md_roma_byob_benchmark.tmpl │ │ │ │ │ ├── md_roma_byob_shell.tmpl │ │ │ │ │ ├── md_roma_byob_traffic_generator.tmpl │ │ │ │ │ └── udf_interface.proto.tmpl │ │ │ │ └── md_protobuf_spec.tmpl │ │ │ │ └── v8 │ │ │ │ ├── app │ │ │ │ ├── cpp_test_romav8.tmpl │ │ │ │ ├── hpp_romav8.tmpl │ │ │ │ ├── js_pb_helpers_extern.tmpl │ │ │ │ ├── js_service_handlers.tmpl │ │ │ │ ├── js_service_handlers_extern.tmpl │ │ │ │ ├── md_cpp_client_sdk.tmpl │ │ │ │ └── md_js_service_sdk.tmpl │ │ │ │ ├── host │ │ │ │ ├── cpp_handle_native_request.tmpl │ │ │ │ ├── cpp_test_romav8.tmpl │ │ │ │ ├── hpp_romav8.tmpl │ │ │ │ ├── js_callback_wrappers.tmpl │ │ │ │ ├── md_cpp_client_sdk.tmpl │ │ │ │ └── md_js_service_sdk.tmpl │ │ │ │ └── js_pb_helpers.tmpl │ │ └── v8_cli │ │ │ ├── BUILD.bazel │ │ │ ├── ConvertTrafficGeneratorJsonlToSpreadSheet.gs │ │ │ ├── benchmark_global_variables │ │ │ ├── roma_benchmark.cc │ │ │ ├── roma_repl.cc │ │ │ ├── roma_repl.h │ │ │ ├── roma_shell.cc │ │ │ ├── roma_v8_rpc_factory.h │ │ │ ├── template_replace.bzl │ │ │ ├── test_command_scripts │ │ │ ├── test_and_profile_stress.txt │ │ │ ├── test_callback_udf.txt │ │ │ ├── test_concurrent_sequential_execute.txt │ │ │ ├── test_hello_world.txt │ │ │ ├── test_simple_echo.txt │ │ │ └── test_stress.txt │ │ │ ├── test_doubles_library.js │ │ │ ├── test_doubles_library_test.js │ │ │ ├── test_inputs │ │ │ └── basic_input.json │ │ │ ├── test_udfs │ │ │ ├── callback_udf.js │ │ │ ├── echo_udf.js │ │ │ ├── global_vars │ │ │ │ ├── global_array_buffer_tmpl.js │ │ │ │ ├── global_string_100K.js │ │ │ │ ├── global_string_10K.js │ │ │ │ ├── global_string_1M.js │ │ │ │ ├── global_string_500K.js │ │ │ │ ├── global_string_50K.js │ │ │ │ ├── global_string_tmpl.js │ │ │ │ ├── global_structure_100K.js │ │ │ │ ├── global_structure_10K.js │ │ │ │ ├── global_structure_1M.js │ │ │ │ ├── global_structure_500K.js │ │ │ │ ├── global_structure_50K.js │ │ │ │ ├── global_structure_inline_tmpl.js │ │ │ │ └── global_structure_tmpl.js │ │ │ ├── hello_world_udf.js │ │ │ ├── primeSieve.js │ │ │ ├── simple_callback_udf.js │ │ │ ├── simple_udf.js │ │ │ ├── sleep_udf.js │ │ │ ├── stress_udf.js │ │ │ └── wasm_sieve_udf.js │ │ │ ├── traffic_generator.cc │ │ │ ├── utils.cc │ │ │ ├── utils.h │ │ │ ├── v8_flags.cc │ │ │ └── v8_shell.cc │ ├── traffic_generator │ │ ├── BUILD.bazel │ │ ├── burst_generator.cc │ │ ├── burst_generator.h │ │ ├── traffic_generator.cc │ │ ├── traffic_generator.h │ │ └── traffic_generator.proto │ ├── wasm │ │ ├── BUILD.bazel │ │ ├── deserializer.cc │ │ ├── deserializer.h │ │ ├── deserializer_test.cc │ │ ├── serde_test.cc │ │ ├── serializer.cc │ │ ├── serializer.h │ │ ├── serializer_test.cc │ │ ├── testing_utils.cc │ │ ├── testing_utils.h │ │ └── wasm_types.h │ └── worker │ │ ├── BUILD.bazel │ │ ├── execution_utils.cc │ │ ├── execution_utils.h │ │ ├── execution_utils_test.cc │ │ ├── execution_watchdog.cc │ │ ├── execution_watchdog.h │ │ └── execution_watchdog_test.cc ├── telemetry │ ├── BUILD.bazel │ ├── flag │ │ ├── BUILD.bazel │ │ ├── config.proto │ │ ├── telemetry_flag.cc │ │ ├── telemetry_flag.h │ │ ├── telemetry_flag_experiment.cc │ │ ├── telemetry_flag_prod.cc │ │ └── telemetry_flag_test.cc │ ├── init.h │ ├── init_aws.cc │ ├── init_azure.cc │ ├── init_gcp.cc │ ├── init_local_ostream.cc │ ├── init_local_otlp.cc │ ├── metrics_recorder.cc │ ├── metrics_recorder.h │ ├── mocks.h │ ├── telemetry.cc │ ├── telemetry.h │ ├── telemetry_provider.cc │ ├── telemetry_provider.h │ ├── telemetry_test.cc │ ├── trace_generator_aws.cc │ ├── trace_generator_aws.h │ ├── tracing.cc │ ├── tracing.h │ └── xray_id_generator_aws_test.cc └── util │ ├── BUILD.bazel │ ├── containers │ ├── BUILD.bazel │ ├── doubly_linked_list.h │ └── doubly_linked_list_test.cc │ ├── core_dump_generator.cc │ ├── duration.cc │ ├── duration.h │ ├── duration_test.cc │ ├── execution_token.h │ ├── file │ ├── BUILD.bazel │ ├── file_util.cc │ └── file_util.h │ ├── periodic_closure.cc │ ├── periodic_closure.h │ ├── periodic_closure_test.cc │ ├── process_util.cc │ ├── process_util.h │ ├── protoutil.cc │ ├── protoutil.h │ ├── protoutil_test.cc │ ├── read_system.cc │ ├── read_system.h │ ├── read_system_test.cc │ ├── rlimit_core_config.cc │ ├── rlimit_core_config.h │ ├── rlimit_core_config_test.cc │ ├── scoped_execution_token.h │ ├── scoped_execution_token_test.cc │ ├── sleep │ ├── BUILD │ ├── sleepfor.cc │ ├── sleepfor.h │ ├── sleepfor_mock.h │ └── sleepfor_test.cc │ └── status_macro │ ├── BUILD.bazel │ ├── examine_stack.cc │ ├── examine_stack.h │ ├── source_location.h │ ├── status_builder.cc │ ├── status_builder.h │ ├── status_builder_test.cc │ ├── status_macros.h │ ├── status_macros_test.cc │ ├── status_util.cc │ ├── status_util.h │ └── status_util_test.cc ├── testing ├── functionaltest-system │ ├── .bazelignore │ ├── .bazelrc │ ├── .bazelversion │ ├── .gitignore │ ├── .gitmodules │ ├── .markdownlint-cli2.yaml │ ├── .pre-commit-config.yaml │ ├── .prettierignore │ ├── .prettierrc.yaml │ ├── .versionrc.json │ ├── BUILD.bazel │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── README.md │ ├── WORKSPACE │ ├── bazel │ │ ├── BUILD.bazel │ │ ├── curl_rpc_invoker │ │ ├── ghz_test_runner │ │ ├── grpcurl_rpc_invoker │ │ ├── promql_metric_test_runner │ │ ├── rpc_diff_test_runner │ │ ├── rpc_test.bzl │ │ ├── ssl_cert.bzl │ │ ├── verify_ca_bundle │ │ ├── verify_ssl_cert │ │ └── wrk2_test_runner │ ├── buf.yaml │ ├── deps.bzl │ ├── docs │ │ ├── bazel │ │ │ ├── BUILD.bazel │ │ │ ├── deps.md │ │ │ ├── endpoint.md │ │ │ ├── repos.md │ │ │ ├── rpc_test.md │ │ │ ├── ssl_cert.md │ │ │ └── sut.md │ │ └── writing-test-cases.md │ ├── experiments │ │ └── perfgate │ │ │ ├── benchmarks │ │ │ ├── aggregation_service_prototype │ │ │ │ ├── benchmark.textproto │ │ │ │ ├── qs_input_1.textproto │ │ │ │ ├── qs_input_2.textproto │ │ │ │ ├── qs_input_3.textproto │ │ │ │ └── qs_input_4.textproto │ │ │ ├── latency_1 │ │ │ │ ├── benchmark.textproto │ │ │ │ └── qs_input.textproto │ │ │ └── latency_2 │ │ │ │ ├── benchmark.textproto │ │ │ │ └── qs_input.textproto │ │ │ ├── generate_random_data_and_upload_to_perfgate │ │ │ └── run_ab_and_upload_to_perfgate │ ├── repos.bzl │ ├── sut │ │ ├── BUILD.bazel │ │ ├── cmd │ │ │ ├── BUILD.bazel │ │ │ ├── deploy_and_test │ │ │ │ ├── .bazelrc │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── bazel.go │ │ │ │ ├── bazel_test.go │ │ │ │ ├── deploy.go │ │ │ │ ├── deploy_test.go │ │ │ │ ├── docker_compose.go │ │ │ │ ├── embed │ │ │ │ │ ├── .bazelversion │ │ │ │ │ ├── BUILD.sut │ │ │ │ │ ├── WORKSPACE │ │ │ │ │ └── deps.bzl │ │ │ │ ├── sut_embed.go │ │ │ │ ├── unzip.go │ │ │ │ └── unzip_test.go │ │ │ ├── dockersut.go │ │ │ ├── embed │ │ │ │ ├── .bazelversion │ │ │ │ └── version-functionaltest.txt │ │ │ ├── root.go │ │ │ └── version.go │ │ ├── endpoint.bzl │ │ ├── main.go │ │ ├── sut.bzl │ │ └── v1 │ │ │ ├── BUILD.bazel │ │ │ └── sut.proto │ ├── tests │ │ ├── BUILD.bazel │ │ ├── certs │ │ │ └── BUILD.bazel │ │ ├── functest-image.yaml │ │ ├── servers │ │ │ ├── .bazelrc │ │ │ ├── .bazelversion │ │ │ ├── BUILD.bazel │ │ │ ├── WORKSPACE │ │ │ ├── test.yaml │ │ │ └── third_party │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── container_deps.bzl │ │ │ │ ├── grpc.patch │ │ │ │ └── upb.patch │ │ └── v2 │ │ │ ├── run-tests │ │ │ └── sut_grpc_servers │ │ │ ├── BUILD.bazel │ │ │ ├── docker-compose.env │ │ │ ├── docker-compose.yaml │ │ │ ├── envoy_greeter.yaml │ │ │ ├── myapp │ │ │ ├── test_cases │ │ │ ├── BUILD.sut │ │ │ ├── GREETER_ENDPOINT │ │ │ │ └── helloworld.Greeter.SayHello │ │ │ │ │ ├── empty-name.reply.json │ │ │ │ │ ├── empty-name.request.json │ │ │ │ │ ├── simple-filter.filter.jq │ │ │ │ │ ├── simple-filter.reply.json │ │ │ │ │ ├── simple-filter.request.json │ │ │ │ │ ├── simple-prefilter.pre-filter.jq │ │ │ │ │ ├── simple-prefilter.reply.json │ │ │ │ │ ├── simple-prefilter.request.json │ │ │ │ │ ├── simple.reply.json │ │ │ │ │ ├── simple.request.json │ │ │ │ │ ├── sut-id-filter.filter.jq │ │ │ │ │ ├── sut-id-filter.pre-filter.jq │ │ │ │ │ ├── sut-id-filter.reply.json │ │ │ │ │ ├── sut-id-filter.request.json │ │ │ │ │ ├── sut-id.pre-filter.jq │ │ │ │ │ ├── sut-id.reply.json │ │ │ │ │ ├── sut-id.request.json │ │ │ │ │ ├── unicode.reply.json │ │ │ │ │ ├── unicode.request.json │ │ │ │ │ └── wrk2_test.lua │ │ │ └── ROUTEGUIDE_ENDPOINT │ │ │ │ ├── routeguide.RouteGuide.GetFeature │ │ │ │ ├── blank.reply.json │ │ │ │ ├── blank.request.json │ │ │ │ ├── nonmatch.reply.json │ │ │ │ ├── nonmatch.request.json │ │ │ │ ├── patriotspath.reply.json │ │ │ │ └── patriotspath.request.json │ │ │ │ └── routeguide.RouteGuide.ListFeatures │ │ │ │ ├── nj-ny-count.filter.slurp.jq │ │ │ │ ├── nj-ny-count.reply.json │ │ │ │ ├── nj-ny-count.request.json │ │ │ │ ├── nj.reply.json │ │ │ │ ├── nj.request.json │ │ │ │ ├── patriotspath.reply.json │ │ │ │ └── patriotspath.request.json │ │ │ └── testrunner.textproto │ ├── tools │ │ ├── docker │ │ │ └── teardown-network │ │ ├── generate_system_bazelrc │ │ └── get_workspace_status │ └── version.txt ├── roma │ ├── BUILD.bazel │ ├── README.md │ ├── callback_binary.cc │ ├── hello_world_binary.cc │ ├── hello_world_binary_test │ └── v8 │ │ ├── BUILD.bazel │ │ └── v8_string_size_binary.cc ├── test_import │ ├── .bazelignore │ ├── .bazelrc │ ├── .bazelversion │ ├── .gitignore │ ├── BUILD.bazel │ ├── WORKSPACE │ └── run-build └── tools │ ├── Dockerfile.kind │ ├── az │ ├── helm │ └── kubectl ├── third_party ├── .gitattributes ├── BUILD.bazel ├── aws-nitro-kms │ ├── BUILD.bazel │ ├── aws_c_auth.BUILD │ ├── aws_c_cal.BUILD │ ├── aws_c_common.BUILD │ ├── aws_c_compression.BUILD │ ├── aws_c_http.BUILD │ ├── aws_c_io.BUILD │ ├── aws_c_io.patch │ ├── aws_c_sdkutils.BUILD │ ├── aws_lc.BUILD │ ├── aws_lc.bzl │ ├── aws_lc.patch │ ├── aws_nitro_enclaves_sdk_c.BUILD │ ├── aws_nitro_enclaves_sdk_c.patch │ └── s2n_tls.BUILD ├── aws-nsm │ ├── BUILD.bazel │ ├── Cargo.Bazel.lock │ ├── Cargo.lock │ ├── aws_nitro_enclaves_nsm_api.BUILD │ └── nsm.h ├── aws_nitro_kms_deps.bzl ├── bazel_clang_tidy.patch ├── bazel_rules_closure.bzl ├── cddl │ ├── BUILD.bazel │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Cargo.toml.old │ ├── cargo-bazel-lock.json │ ├── cddl.BUILD │ ├── cddl.h │ └── cddl.patch ├── cpp_deps.bzl ├── curl.BUILD ├── depend_on_what_you_use.bzl ├── depend_on_what_you_use.patch ├── depend_on_what_you_use_config.json ├── deps1.bzl ├── deps2.bzl ├── deps3.bzl ├── deps4.bzl ├── differential_privacy.patch ├── dwyu_aspect.bzl ├── flatbuffers.patch ├── googleurl.patch ├── io_opentelemetry_cpp.patch ├── jq.BUILD ├── json-c │ ├── BUILD.bazel │ ├── json_c.BUILD │ ├── json_c.config.h │ ├── json_c.json.h │ └── json_c.json_config.h ├── libevent-evconfig.patch ├── libevent.BUILD ├── libevent.patch ├── protoc-gen-doc.patch ├── protocolbuffers_protobuf_javascript.patch ├── quiche.patch ├── rules_boost.patch ├── rules_closure.patch └── rules_oci.patch └── version.txt /.bazelignore: -------------------------------------------------------------------------------- 1 | parc/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 6.5.0 2 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | builders/etc/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/scorecard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/.github/workflows/scorecard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/.gitignore -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- 1 | builders/etc/.hadolint.yaml -------------------------------------------------------------------------------- /.markdown-link-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/.markdown-link-check.json -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- 1 | builders/etc/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | hoist=false 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/.pylintrc -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/WORKSPACE -------------------------------------------------------------------------------- /apis/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/apis/BUILD.bazel -------------------------------------------------------------------------------- /apis/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/apis/MODULE.bazel -------------------------------------------------------------------------------- /apis/MODULE.bazel.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/apis/MODULE.bazel.lock -------------------------------------------------------------------------------- /apis/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/apis/WORKSPACE.bzlmod -------------------------------------------------------------------------------- /apis/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/apis/buf.lock -------------------------------------------------------------------------------- /apis/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/apis/buf.yaml -------------------------------------------------------------------------------- /apis/privacysandbox/apis/parc/v0/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/apis/privacysandbox/apis/parc/v0/BUILD.bazel -------------------------------------------------------------------------------- /apis/privacysandbox/apis/parc/v0/blob.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/apis/privacysandbox/apis/parc/v0/blob.proto -------------------------------------------------------------------------------- /buf.work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/buf.work.yaml -------------------------------------------------------------------------------- /deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/deps.bzl -------------------------------------------------------------------------------- /docs/aws/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/aws/proxy.md -------------------------------------------------------------------------------- /docs/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/building.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/cpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/README.md -------------------------------------------------------------------------------- /docs/cpio/core-config-provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/core-config-provider.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/BUILD.bazel -------------------------------------------------------------------------------- /docs/cpio/protobuf/auto-scaling-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/auto-scaling-service.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/blob-storage-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/blob-storage-service.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/common.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/crypto-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/crypto-service.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/detailed-execution-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/detailed-execution-result.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/instance-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/instance-service.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/kms-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/kms-service.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/metric-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/metric-service.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/parameter-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/parameter-service.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/private-key-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/private-key-service.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/public-key-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/public-key-service.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/queue-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/queue-service.md -------------------------------------------------------------------------------- /docs/cpio/protobuf/validator-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/protobuf/validator-config.md -------------------------------------------------------------------------------- /docs/cpio/validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/cpio/validator.md -------------------------------------------------------------------------------- /docs/parc/api_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/parc/api_overview.md -------------------------------------------------------------------------------- /docs/parc/azure_deployment_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/parc/azure_deployment_guide.md -------------------------------------------------------------------------------- /docs/parc/azure_reference_server_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/parc/azure_reference_server_overview.md -------------------------------------------------------------------------------- /docs/parc/images/parc-api-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/parc/images/parc-api-overview.png -------------------------------------------------------------------------------- /docs/parc/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/parc/overview.md -------------------------------------------------------------------------------- /docs/parc/parc_functional_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/parc/parc_functional_testing.md -------------------------------------------------------------------------------- /docs/roma/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/BUILD.bazel -------------------------------------------------------------------------------- /docs/roma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/README.md -------------------------------------------------------------------------------- /docs/roma/byob/Benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/byob/Benchmarking.md -------------------------------------------------------------------------------- /docs/roma/byob/sdk/docs/udf/amd64-syscalls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/byob/sdk/docs/udf/amd64-syscalls.md -------------------------------------------------------------------------------- /docs/roma/byob/sdk/docs/udf/arm64-syscalls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/byob/sdk/docs/udf/arm64-syscalls.md -------------------------------------------------------------------------------- /docs/roma/compiler_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/compiler_options.md -------------------------------------------------------------------------------- /docs/roma/host_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/host_api.md -------------------------------------------------------------------------------- /docs/roma/images/dataflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/images/dataflow.svg -------------------------------------------------------------------------------- /docs/roma/images/metadata-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/images/metadata-flow.png -------------------------------------------------------------------------------- /docs/roma/images/overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/images/overview.svg -------------------------------------------------------------------------------- /docs/roma/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/metadata.md -------------------------------------------------------------------------------- /docs/roma/roma_byob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/roma_byob.md -------------------------------------------------------------------------------- /docs/roma/traffic_generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/traffic_generator.md -------------------------------------------------------------------------------- /docs/roma/v8/sdk/docs/Guide to the SDK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/v8/sdk/docs/Guide to the SDK.md -------------------------------------------------------------------------------- /docs/roma/v8/sdk/docs/tools/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/v8/sdk/docs/tools/logging.md -------------------------------------------------------------------------------- /docs/roma/v8/sdk/docs/tools/shell_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/docs/roma/v8/sdk/docs/tools/shell_cli.md -------------------------------------------------------------------------------- /parc/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parc/azure/.bazelignore: -------------------------------------------------------------------------------- 1 | testing/ 2 | -------------------------------------------------------------------------------- /parc/azure/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/.bazelrc -------------------------------------------------------------------------------- /parc/azure/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.6.0 2 | -------------------------------------------------------------------------------- /parc/azure/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/.clang-tidy -------------------------------------------------------------------------------- /parc/azure/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/BUILD.bazel -------------------------------------------------------------------------------- /parc/azure/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/Dockerfile -------------------------------------------------------------------------------- /parc/azure/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/MODULE.bazel -------------------------------------------------------------------------------- /parc/azure/MODULE.bazel.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/MODULE.bazel.lock -------------------------------------------------------------------------------- /parc/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/README.md -------------------------------------------------------------------------------- /parc/azure/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/WORKSPACE.bzlmod -------------------------------------------------------------------------------- /parc/azure/deps/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parc/azure/deps/google_cloud_cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/deps/google_cloud_cpp.patch -------------------------------------------------------------------------------- /parc/azure/deps/googleapis.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/deps/googleapis.BUILD -------------------------------------------------------------------------------- /parc/azure/deps/grpc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/deps/grpc.patch -------------------------------------------------------------------------------- /parc/azure/grpc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/grpc.patch -------------------------------------------------------------------------------- /parc/azure/src/proto/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/src/proto/BUILD.bazel -------------------------------------------------------------------------------- /parc/azure/src/proto/parameter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/src/proto/parameter.proto -------------------------------------------------------------------------------- /parc/azure/src/server/cpp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/src/server/cpp/BUILD.bazel -------------------------------------------------------------------------------- /parc/azure/src/server/cpp/callback_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/src/server/cpp/callback_server.cc -------------------------------------------------------------------------------- /parc/azure/src/server/cpp/utils/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/src/server/cpp/utils/BUILD.bazel -------------------------------------------------------------------------------- /parc/azure/src/server/cpp/utils/status_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/src/server/cpp/utils/status_util.cc -------------------------------------------------------------------------------- /parc/azure/src/server/cpp/utils/status_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/src/server/cpp/utils/status_util.h -------------------------------------------------------------------------------- /parc/azure/tools/generate_system_bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/parc/azure/tools/generate_system_bazelrc -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /production/packaging/aws/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/production/packaging/aws/BUILD.bazel -------------------------------------------------------------------------------- /scripts/build-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/scripts/build-docs -------------------------------------------------------------------------------- /scripts/build-proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/scripts/build-proxy -------------------------------------------------------------------------------- /scripts/collect-test-logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/scripts/collect-test-logs -------------------------------------------------------------------------------- /scripts/run-benchmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/scripts/run-benchmarks -------------------------------------------------------------------------------- /src/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/BUILD.bazel -------------------------------------------------------------------------------- /src/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/CPPLINT.cfg -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/README.md -------------------------------------------------------------------------------- /src/aws/proxy/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/BUILD.bazel -------------------------------------------------------------------------------- /src/aws/proxy/acceptor_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/acceptor_pool.h -------------------------------------------------------------------------------- /src/aws/proxy/benchmark_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/benchmark_test.cc -------------------------------------------------------------------------------- /src/aws/proxy/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/buffer.h -------------------------------------------------------------------------------- /src/aws/proxy/buffer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/buffer_test.cc -------------------------------------------------------------------------------- /src/aws/proxy/client_session_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/client_session_pool.cc -------------------------------------------------------------------------------- /src/aws/proxy/client_session_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/client_session_pool.h -------------------------------------------------------------------------------- /src/aws/proxy/client_session_pool_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/client_session_pool_test.cc -------------------------------------------------------------------------------- /src/aws/proxy/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/config.h -------------------------------------------------------------------------------- /src/aws/proxy/curl_client_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/curl_client_test -------------------------------------------------------------------------------- /src/aws/proxy/freelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/freelist.h -------------------------------------------------------------------------------- /src/aws/proxy/freelist_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/freelist_test.cc -------------------------------------------------------------------------------- /src/aws/proxy/preload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/preload.cc -------------------------------------------------------------------------------- /src/aws/proxy/preload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/preload.h -------------------------------------------------------------------------------- /src/aws/proxy/preload_exported_symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/preload_exported_symbols -------------------------------------------------------------------------------- /src/aws/proxy/preload_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/preload_test.cc -------------------------------------------------------------------------------- /src/aws/proxy/protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/protocol.cc -------------------------------------------------------------------------------- /src/aws/proxy/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/protocol.h -------------------------------------------------------------------------------- /src/aws/proxy/protocol_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/protocol_test.cc -------------------------------------------------------------------------------- /src/aws/proxy/proxify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/proxify.cc -------------------------------------------------------------------------------- /src/aws/proxy/proxy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/proxy.cc -------------------------------------------------------------------------------- /src/aws/proxy/proxy_bridge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/proxy_bridge.cc -------------------------------------------------------------------------------- /src/aws/proxy/proxy_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/proxy_bridge.h -------------------------------------------------------------------------------- /src/aws/proxy/proxy_bridge_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/proxy_bridge_test.cc -------------------------------------------------------------------------------- /src/aws/proxy/proxy_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/proxy_server.cc -------------------------------------------------------------------------------- /src/aws/proxy/proxy_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/proxy_server.h -------------------------------------------------------------------------------- /src/aws/proxy/proxy_server_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/proxy_server_test.cc -------------------------------------------------------------------------------- /src/aws/proxy/resolv_conf_getter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/resolv_conf_getter.proto -------------------------------------------------------------------------------- /src/aws/proxy/resolv_conf_getter_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/resolv_conf_getter_client.cc -------------------------------------------------------------------------------- /src/aws/proxy/resolv_conf_getter_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/resolv_conf_getter_server.cc -------------------------------------------------------------------------------- /src/aws/proxy/resolv_conf_getter_test_app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/resolv_conf_getter_test_app -------------------------------------------------------------------------------- /src/aws/proxy/socket_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/socket_types.h -------------------------------------------------------------------------------- /src/aws/proxy/socket_vendor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/socket_vendor.cc -------------------------------------------------------------------------------- /src/aws/proxy/socket_vendor_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/socket_vendor_protocol.h -------------------------------------------------------------------------------- /src/aws/proxy/socket_vendor_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/socket_vendor_server.cc -------------------------------------------------------------------------------- /src/aws/proxy/socket_vendor_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/socket_vendor_server.h -------------------------------------------------------------------------------- /src/aws/proxy/socket_vendor_server_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/socket_vendor_server_test.cc -------------------------------------------------------------------------------- /src/aws/proxy/socks5_state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/socks5_state.cc -------------------------------------------------------------------------------- /src/aws/proxy/socks5_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/socks5_state.h -------------------------------------------------------------------------------- /src/aws/proxy/socks5_state_input_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/socks5_state_input_test.cc -------------------------------------------------------------------------------- /src/aws/proxy/socks5_state_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/socks5_state_test.cc -------------------------------------------------------------------------------- /src/aws/proxy/socks5_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/aws/proxy/socks5_test.py -------------------------------------------------------------------------------- /src/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/buf.yaml -------------------------------------------------------------------------------- /src/clients/async_client/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/clients/async_client/BUILD.bazel -------------------------------------------------------------------------------- /src/clients/async_client/async_http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/clients/async_client/async_http_client.h -------------------------------------------------------------------------------- /src/clients/async_client/mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/clients/async_client/mocks.h -------------------------------------------------------------------------------- /src/clients/http_fetcher_async/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/clients/http_fetcher_async/BUILD.bazel -------------------------------------------------------------------------------- /src/communication/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/BUILD.bazel -------------------------------------------------------------------------------- /src/communication/compression.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/compression.cc -------------------------------------------------------------------------------- /src/communication/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/compression.h -------------------------------------------------------------------------------- /src/communication/compression_brotli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/compression_brotli.cc -------------------------------------------------------------------------------- /src/communication/compression_brotli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/compression_brotli.h -------------------------------------------------------------------------------- /src/communication/compression_brotli_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/compression_brotli_test.cc -------------------------------------------------------------------------------- /src/communication/compression_gzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/compression_gzip.cc -------------------------------------------------------------------------------- /src/communication/compression_gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/compression_gzip.h -------------------------------------------------------------------------------- /src/communication/compression_gzip_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/compression_gzip_test.cc -------------------------------------------------------------------------------- /src/communication/encoding_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/encoding_utils.cc -------------------------------------------------------------------------------- /src/communication/encoding_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/encoding_utils.h -------------------------------------------------------------------------------- /src/communication/encoding_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/encoding_utils_test.cc -------------------------------------------------------------------------------- /src/communication/framing_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/framing_utils.cc -------------------------------------------------------------------------------- /src/communication/framing_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/framing_utils.h -------------------------------------------------------------------------------- /src/communication/framing_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/framing_utils_test.cc -------------------------------------------------------------------------------- /src/communication/json_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/json_utils.h -------------------------------------------------------------------------------- /src/communication/json_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/json_utils_test.cc -------------------------------------------------------------------------------- /src/communication/ohttp_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/ohttp_utils.cc -------------------------------------------------------------------------------- /src/communication/ohttp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/ohttp_utils.h -------------------------------------------------------------------------------- /src/communication/ohttp_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/ohttp_utils_test.cc -------------------------------------------------------------------------------- /src/communication/string_padder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/string_padder.cc -------------------------------------------------------------------------------- /src/communication/string_padder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/string_padder.h -------------------------------------------------------------------------------- /src/communication/string_padder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/string_padder_test.cc -------------------------------------------------------------------------------- /src/communication/uncompressed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/uncompressed.cc -------------------------------------------------------------------------------- /src/communication/uncompressed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/uncompressed.h -------------------------------------------------------------------------------- /src/communication/uncompressed_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/communication/uncompressed_test.cc -------------------------------------------------------------------------------- /src/concurrent/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/concurrent/BUILD.bazel -------------------------------------------------------------------------------- /src/concurrent/event_engine_executor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/concurrent/event_engine_executor.cc -------------------------------------------------------------------------------- /src/concurrent/event_engine_executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/concurrent/event_engine_executor.h -------------------------------------------------------------------------------- /src/concurrent/event_engine_executor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/concurrent/event_engine_executor_test.cc -------------------------------------------------------------------------------- /src/concurrent/executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/concurrent/executor.h -------------------------------------------------------------------------------- /src/concurrent/mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/concurrent/mocks.h -------------------------------------------------------------------------------- /src/core/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/BUILD.bazel -------------------------------------------------------------------------------- /src/core/async_executor/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/async_executor/BUILD.bazel -------------------------------------------------------------------------------- /src/core/async_executor/async_executor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/async_executor/async_executor.cc -------------------------------------------------------------------------------- /src/core/async_executor/async_executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/async_executor/async_executor.h -------------------------------------------------------------------------------- /src/core/async_executor/async_executor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/async_executor/async_executor_test.cc -------------------------------------------------------------------------------- /src/core/async_executor/async_executor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/async_executor/async_executor_utils.h -------------------------------------------------------------------------------- /src/core/async_executor/async_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/async_executor/async_task.h -------------------------------------------------------------------------------- /src/core/async_executor/async_task_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/async_executor/async_task_test.cc -------------------------------------------------------------------------------- /src/core/async_executor/aws/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/async_executor/aws/BUILD.bazel -------------------------------------------------------------------------------- /src/core/async_executor/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/async_executor/error_codes.h -------------------------------------------------------------------------------- /src/core/async_executor/mock/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/async_executor/mock/BUILD.bazel -------------------------------------------------------------------------------- /src/core/async_executor/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/async_executor/typedef.h -------------------------------------------------------------------------------- /src/core/blob_storage_provider/aws/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/blob_storage_provider/aws/BUILD.bazel -------------------------------------------------------------------------------- /src/core/blob_storage_provider/aws/aws_s3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/blob_storage_provider/aws/aws_s3.cc -------------------------------------------------------------------------------- /src/core/blob_storage_provider/aws/aws_s3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/blob_storage_provider/aws/aws_s3.h -------------------------------------------------------------------------------- /src/core/blob_storage_provider/gcp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/blob_storage_provider/gcp/BUILD.bazel -------------------------------------------------------------------------------- /src/core/blob_storage_provider/mock/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/blob_storage_provider/mock/BUILD.bazel -------------------------------------------------------------------------------- /src/core/common/concurrent_map/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/concurrent_map/BUILD.bazel -------------------------------------------------------------------------------- /src/core/common/concurrent_map/concurrent_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/concurrent_map/concurrent_map.h -------------------------------------------------------------------------------- /src/core/common/concurrent_map/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/concurrent_map/error_codes.h -------------------------------------------------------------------------------- /src/core/common/concurrent_queue/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/concurrent_queue/BUILD.bazel -------------------------------------------------------------------------------- /src/core/common/concurrent_queue/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/concurrent_queue/error_codes.h -------------------------------------------------------------------------------- /src/core/common/global_logger/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/global_logger/BUILD.bazel -------------------------------------------------------------------------------- /src/core/common/global_logger/global_logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/global_logger/global_logger.cc -------------------------------------------------------------------------------- /src/core/common/global_logger/global_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/global_logger/global_logger.h -------------------------------------------------------------------------------- /src/core/common/proto/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/proto/BUILD.bazel -------------------------------------------------------------------------------- /src/core/common/proto/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/proto/common.proto -------------------------------------------------------------------------------- /src/core/common/streaming_context/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/streaming_context/BUILD.bazel -------------------------------------------------------------------------------- /src/core/common/streaming_context/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/streaming_context/error_codes.h -------------------------------------------------------------------------------- /src/core/common/time_provider/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/time_provider/BUILD.bazel -------------------------------------------------------------------------------- /src/core/common/time_provider/time_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/time_provider/time_provider.h -------------------------------------------------------------------------------- /src/core/common/uuid/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/uuid/BUILD.bazel -------------------------------------------------------------------------------- /src/core/common/uuid/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/uuid/error_codes.h -------------------------------------------------------------------------------- /src/core/common/uuid/uuid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/uuid/uuid.cc -------------------------------------------------------------------------------- /src/core/common/uuid/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/uuid/uuid.h -------------------------------------------------------------------------------- /src/core/common/uuid/uuid_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/uuid/uuid_benchmark.cc -------------------------------------------------------------------------------- /src/core/common/uuid/uuid_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/uuid/uuid_test.cc -------------------------------------------------------------------------------- /src/core/common/uuid/uuid_to_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/uuid/uuid_to_string.cc -------------------------------------------------------------------------------- /src/core/common/uuid/uuid_to_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/uuid/uuid_to_string.h -------------------------------------------------------------------------------- /src/core/common/uuid/uuid_to_string_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/common/uuid/uuid_to_string_test.cc -------------------------------------------------------------------------------- /src/core/config_provider/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/config_provider/BUILD.bazel -------------------------------------------------------------------------------- /src/core/config_provider/config_provider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/config_provider/config_provider.cc -------------------------------------------------------------------------------- /src/core/config_provider/config_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/config_provider/config_provider.h -------------------------------------------------------------------------------- /src/core/config_provider/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/config_provider/error_codes.h -------------------------------------------------------------------------------- /src/core/config_provider/mock/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/config_provider/mock/BUILD.bazel -------------------------------------------------------------------------------- /src/core/credentials_provider/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/credentials_provider/BUILD.bazel -------------------------------------------------------------------------------- /src/core/credentials_provider/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/credentials_provider/error_codes.h -------------------------------------------------------------------------------- /src/core/curl_client/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/curl_client/BUILD.bazel -------------------------------------------------------------------------------- /src/core/curl_client/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/curl_client/error_codes.h -------------------------------------------------------------------------------- /src/core/curl_client/http1_curl_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/curl_client/http1_curl_client.cc -------------------------------------------------------------------------------- /src/core/curl_client/http1_curl_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/curl_client/http1_curl_client.h -------------------------------------------------------------------------------- /src/core/curl_client/http1_curl_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/curl_client/http1_curl_wrapper.cc -------------------------------------------------------------------------------- /src/core/curl_client/http1_curl_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/curl_client/http1_curl_wrapper.h -------------------------------------------------------------------------------- /src/core/curl_client/mock/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/curl_client/mock/BUILD.bazel -------------------------------------------------------------------------------- /src/core/curl_client/mock/mock_curl_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/curl_client/mock/mock_curl_client.h -------------------------------------------------------------------------------- /src/core/event/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/event/BUILD.bazel -------------------------------------------------------------------------------- /src/core/event/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/event/constants.h -------------------------------------------------------------------------------- /src/core/event/event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/event/event.cc -------------------------------------------------------------------------------- /src/core/event/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/event/event.h -------------------------------------------------------------------------------- /src/core/event/event_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/event/event_base.cc -------------------------------------------------------------------------------- /src/core/event/event_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/event/event_base.h -------------------------------------------------------------------------------- /src/core/http2_client/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/BUILD.bazel -------------------------------------------------------------------------------- /src/core/http2_client/aws/aws_v4_signer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/aws/aws_v4_signer.cc -------------------------------------------------------------------------------- /src/core/http2_client/aws/aws_v4_signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/aws/aws_v4_signer.h -------------------------------------------------------------------------------- /src/core/http2_client/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/error_codes.h -------------------------------------------------------------------------------- /src/core/http2_client/http2_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/http2_client.cc -------------------------------------------------------------------------------- /src/core/http2_client/http2_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/http2_client.h -------------------------------------------------------------------------------- /src/core/http2_client/http2_client_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/http2_client_test.cc -------------------------------------------------------------------------------- /src/core/http2_client/http_connection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/http_connection.cc -------------------------------------------------------------------------------- /src/core/http2_client/http_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/http_connection.h -------------------------------------------------------------------------------- /src/core/http2_client/http_connection_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/http_connection_pool.cc -------------------------------------------------------------------------------- /src/core/http2_client/http_connection_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/http_connection_pool.h -------------------------------------------------------------------------------- /src/core/http2_client/mock/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/mock/BUILD.bazel -------------------------------------------------------------------------------- /src/core/http2_client/mock/mock_http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/http2_client/mock/mock_http_client.h -------------------------------------------------------------------------------- /src/core/interface/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/BUILD.bazel -------------------------------------------------------------------------------- /src/core/interface/async_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/async_context.h -------------------------------------------------------------------------------- /src/core/interface/async_executor_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/async_executor_interface.h -------------------------------------------------------------------------------- /src/core/interface/configuration_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/configuration_keys.h -------------------------------------------------------------------------------- /src/core/interface/errors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/errors.cc -------------------------------------------------------------------------------- /src/core/interface/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/errors.h -------------------------------------------------------------------------------- /src/core/interface/http_client_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/http_client_interface.h -------------------------------------------------------------------------------- /src/core/interface/http_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/http_types.h -------------------------------------------------------------------------------- /src/core/interface/initializable_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/initializable_interface.h -------------------------------------------------------------------------------- /src/core/interface/message_router_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/message_router_interface.h -------------------------------------------------------------------------------- /src/core/interface/service_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/service_interface.h -------------------------------------------------------------------------------- /src/core/interface/streaming_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/streaming_context.h -------------------------------------------------------------------------------- /src/core/interface/type_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/interface/type_def.h -------------------------------------------------------------------------------- /src/core/kv_client/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/kv_client/BUILD.bazel -------------------------------------------------------------------------------- /src/core/kv_client/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/kv_client/common.h -------------------------------------------------------------------------------- /src/core/logger/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/logger/BUILD.bazel -------------------------------------------------------------------------------- /src/core/logger/interface/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/logger/interface/BUILD.bazel -------------------------------------------------------------------------------- /src/core/logger/log_providers/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/logger/log_providers/BUILD.bazel -------------------------------------------------------------------------------- /src/core/logger/log_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/logger/log_utils.cc -------------------------------------------------------------------------------- /src/core/logger/log_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/logger/log_utils.h -------------------------------------------------------------------------------- /src/core/logger/mock/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/logger/mock/BUILD.bazel -------------------------------------------------------------------------------- /src/core/logger/mock/mock_log_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/logger/mock/mock_log_provider.h -------------------------------------------------------------------------------- /src/core/logger/syslog_reader/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/logger/syslog_reader/error_codes.h -------------------------------------------------------------------------------- /src/core/message_router/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/message_router/BUILD.bazel -------------------------------------------------------------------------------- /src/core/message_router/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/message_router/error_codes.h -------------------------------------------------------------------------------- /src/core/message_router/message_router.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/message_router/message_router.cc -------------------------------------------------------------------------------- /src/core/message_router/message_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/message_router/message_router.h -------------------------------------------------------------------------------- /src/core/message_router/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/message_router/test.proto -------------------------------------------------------------------------------- /src/core/os/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/os/BUILD.bazel -------------------------------------------------------------------------------- /src/core/os/linux/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/os/linux/BUILD.bazel -------------------------------------------------------------------------------- /src/core/os/linux/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/os/linux/error_codes.h -------------------------------------------------------------------------------- /src/core/os/linux/files/invalid_format_meminfo_file.txt: -------------------------------------------------------------------------------- 1 | MemAvailable: 186628168 2 | -------------------------------------------------------------------------------- /src/core/os/system_resource_info_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/os/system_resource_info_provider.h -------------------------------------------------------------------------------- /src/core/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/BUILD.bazel -------------------------------------------------------------------------------- /src/core/test/errors_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/errors_test.cc -------------------------------------------------------------------------------- /src/core/test/scp_test_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/scp_test_base.h -------------------------------------------------------------------------------- /src/core/test/service_interface_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/service_interface_test.cc -------------------------------------------------------------------------------- /src/core/test/test_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/test_config.h -------------------------------------------------------------------------------- /src/core/test/utils/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/BUILD.bazel -------------------------------------------------------------------------------- /src/core/test/utils/auto_init_run_stop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/auto_init_run_stop.h -------------------------------------------------------------------------------- /src/core/test/utils/aws_helper/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/aws_helper/BUILD.bazel -------------------------------------------------------------------------------- /src/core/test/utils/aws_helper/aws_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/aws_helper/aws_helper.cc -------------------------------------------------------------------------------- /src/core/test/utils/aws_helper/aws_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/aws_helper/aws_helper.h -------------------------------------------------------------------------------- /src/core/test/utils/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/error_codes.h -------------------------------------------------------------------------------- /src/core/test/utils/gcp_helper/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/gcp_helper/BUILD.bazel -------------------------------------------------------------------------------- /src/core/test/utils/gcp_helper/gcp_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/gcp_helper/gcp_helper.cc -------------------------------------------------------------------------------- /src/core/test/utils/gcp_helper/gcp_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/gcp_helper/gcp_helper.h -------------------------------------------------------------------------------- /src/core/test/utils/http1_helper/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/http1_helper/BUILD.bazel -------------------------------------------------------------------------------- /src/core/test/utils/http1_helper/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/http1_helper/errors.h -------------------------------------------------------------------------------- /src/core/test/utils/logging_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/logging_utils.cc -------------------------------------------------------------------------------- /src/core/test/utils/logging_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/logging_utils.h -------------------------------------------------------------------------------- /src/core/test/utils/proto_test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/proto_test_utils.h -------------------------------------------------------------------------------- /src/core/test/utils/timestamp_test_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/timestamp_test_utils.cc -------------------------------------------------------------------------------- /src/core/test/utils/timestamp_test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/test/utils/timestamp_test_utils.h -------------------------------------------------------------------------------- /src/core/utils/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/BUILD.bazel -------------------------------------------------------------------------------- /src/core/utils/base64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/base64.cc -------------------------------------------------------------------------------- /src/core/utils/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/base64.h -------------------------------------------------------------------------------- /src/core/utils/base64_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/base64_test.cc -------------------------------------------------------------------------------- /src/core/utils/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/error_codes.h -------------------------------------------------------------------------------- /src/core/utils/error_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/error_utils.cc -------------------------------------------------------------------------------- /src/core/utils/error_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/error_utils.h -------------------------------------------------------------------------------- /src/core/utils/error_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/error_utils_test.cc -------------------------------------------------------------------------------- /src/core/utils/hashing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/hashing.cc -------------------------------------------------------------------------------- /src/core/utils/hashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/hashing.h -------------------------------------------------------------------------------- /src/core/utils/hashing_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/hashing_test.cc -------------------------------------------------------------------------------- /src/core/utils/http.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/http.cc -------------------------------------------------------------------------------- /src/core/utils/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/core/utils/http.h -------------------------------------------------------------------------------- /src/cpio/common/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/BUILD.bazel -------------------------------------------------------------------------------- /src/cpio/common/aws/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/aws/BUILD.bazel -------------------------------------------------------------------------------- /src/cpio/common/aws/aws_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/aws/aws_utils.cc -------------------------------------------------------------------------------- /src/cpio/common/aws/aws_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/aws/aws_utils.h -------------------------------------------------------------------------------- /src/cpio/common/aws/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/aws/error_codes.h -------------------------------------------------------------------------------- /src/cpio/common/aws/test_aws_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/aws/test_aws_utils.cc -------------------------------------------------------------------------------- /src/cpio/common/aws/test_aws_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/aws/test_aws_utils.h -------------------------------------------------------------------------------- /src/cpio/common/cpio_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/cpio_utils.h -------------------------------------------------------------------------------- /src/cpio/common/gcp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/gcp/BUILD.bazel -------------------------------------------------------------------------------- /src/cpio/common/gcp/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/gcp/error_codes.h -------------------------------------------------------------------------------- /src/cpio/common/gcp/gcp_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/gcp/gcp_utils.cc -------------------------------------------------------------------------------- /src/cpio/common/gcp/gcp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/gcp/gcp_utils.h -------------------------------------------------------------------------------- /src/cpio/common/gcp/gcp_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/common/gcp/gcp_utils_test.cc -------------------------------------------------------------------------------- /src/cpio/documentation/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/documentation/BUILD.bazel -------------------------------------------------------------------------------- /src/cpio/documentation/cpio_docs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/documentation/cpio_docs.bzl -------------------------------------------------------------------------------- /src/cpio/documentation/protoc_template_plugin.go: -------------------------------------------------------------------------------- 1 | ../../roma/tools/api_plugin/protoc_template_plugin.go -------------------------------------------------------------------------------- /src/cpio/test/native_lib/aws/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/cpio/test/native_lib/aws/BUILD.bazel -------------------------------------------------------------------------------- /src/encryption/key_fetcher/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/encryption/key_fetcher/BUILD.bazel -------------------------------------------------------------------------------- /src/encryption/key_fetcher/mock/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/encryption/key_fetcher/mock/BUILD.bazel -------------------------------------------------------------------------------- /src/errors/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/errors/BUILD -------------------------------------------------------------------------------- /src/errors/retry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/errors/retry.cc -------------------------------------------------------------------------------- /src/errors/retry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/errors/retry.h -------------------------------------------------------------------------------- /src/errors/retry_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/errors/retry_test.cc -------------------------------------------------------------------------------- /src/logger/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/BUILD.bazel -------------------------------------------------------------------------------- /src/logger/logger.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/logger.proto -------------------------------------------------------------------------------- /src/logger/request_context_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/request_context_impl.cc -------------------------------------------------------------------------------- /src/logger/request_context_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/request_context_impl.h -------------------------------------------------------------------------------- /src/logger/request_context_impl_die_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/request_context_impl_die_test.cc -------------------------------------------------------------------------------- /src/logger/request_context_impl_non_prod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/request_context_impl_non_prod.cc -------------------------------------------------------------------------------- /src/logger/request_context_impl_prod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/request_context_impl_prod.cc -------------------------------------------------------------------------------- /src/logger/request_context_impl_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/request_context_impl_prod_test.cc -------------------------------------------------------------------------------- /src/logger/request_context_impl_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/request_context_impl_test.h -------------------------------------------------------------------------------- /src/logger/request_context_logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/request_context_logger.cc -------------------------------------------------------------------------------- /src/logger/request_context_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/request_context_logger.h -------------------------------------------------------------------------------- /src/logger/request_context_logger_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/logger/request_context_logger_test.h -------------------------------------------------------------------------------- /src/metric/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/BUILD.bazel -------------------------------------------------------------------------------- /src/metric/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/context.h -------------------------------------------------------------------------------- /src/metric/context_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/context_map.h -------------------------------------------------------------------------------- /src/metric/context_map_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/context_map_test.cc -------------------------------------------------------------------------------- /src/metric/context_nonprod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/context_nonprod_test.cc -------------------------------------------------------------------------------- /src/metric/context_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/context_prod_test.cc -------------------------------------------------------------------------------- /src/metric/context_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/context_test.h -------------------------------------------------------------------------------- /src/metric/definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/definition.h -------------------------------------------------------------------------------- /src/metric/definition_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/definition_test.cc -------------------------------------------------------------------------------- /src/metric/dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/dp.h -------------------------------------------------------------------------------- /src/metric/dp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/dp_test.cc -------------------------------------------------------------------------------- /src/metric/key_fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/key_fetch.h -------------------------------------------------------------------------------- /src/metric/key_fetch_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/key_fetch_test.cc -------------------------------------------------------------------------------- /src/metric/metric_router.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/metric_router.cc -------------------------------------------------------------------------------- /src/metric/metric_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/metric_router.h -------------------------------------------------------------------------------- /src/metric/metric_router_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/metric_router_test.cc -------------------------------------------------------------------------------- /src/metric/udf.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/metric/udf.proto -------------------------------------------------------------------------------- /src/public/core/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/core/BUILD.bazel -------------------------------------------------------------------------------- /src/public/core/errors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/core/errors.cc -------------------------------------------------------------------------------- /src/public/core/errors_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/core/errors_test.cc -------------------------------------------------------------------------------- /src/public/core/execution_result.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/core/execution_result.cc -------------------------------------------------------------------------------- /src/public/core/execution_result_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/core/execution_result_test.cc -------------------------------------------------------------------------------- /src/public/core/interface/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/core/interface/BUILD.bazel -------------------------------------------------------------------------------- /src/public/core/interface/cloud_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/core/interface/cloud_platform.h -------------------------------------------------------------------------------- /src/public/core/interface/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/core/interface/errors.h -------------------------------------------------------------------------------- /src/public/core/interface/execution_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/core/interface/execution_result.h -------------------------------------------------------------------------------- /src/public/core/struct_matchers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/core/struct_matchers_test.cc -------------------------------------------------------------------------------- /src/public/core/test_struct_matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/core/test_struct_matchers.h -------------------------------------------------------------------------------- /src/public/cpio/adapters/common/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/adapters/common/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/cli/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/cli/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/cli/blob_storage_cli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/cli/blob_storage_cli.cc -------------------------------------------------------------------------------- /src/public/cpio/cli/blob_storage_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/cli/blob_storage_cli.h -------------------------------------------------------------------------------- /src/public/cpio/cli/gcp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/cli/gcp/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/cli/gcp/gcp_cpio_cli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/cli/gcp/gcp_cpio_cli.cc -------------------------------------------------------------------------------- /src/public/cpio/core/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/core/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/core/cpio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/core/cpio.cc -------------------------------------------------------------------------------- /src/public/cpio/core/lib_cpio_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/core/lib_cpio_test.cc -------------------------------------------------------------------------------- /src/public/cpio/examples/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/examples/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/examples/kms_client_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/examples/kms_client_test.cc -------------------------------------------------------------------------------- /src/public/cpio/interface/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/interface/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/interface/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/interface/cpio.h -------------------------------------------------------------------------------- /src/public/cpio/interface/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/interface/error_codes.h -------------------------------------------------------------------------------- /src/public/cpio/interface/type_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/interface/type_def.h -------------------------------------------------------------------------------- /src/public/cpio/mock/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/mock/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/mock/kms_client/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/mock/kms_client/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/mock/public_mocks_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/mock/public_mocks_test.cc -------------------------------------------------------------------------------- /src/public/cpio/proto/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/proto/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/test/global_cpio/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/test/global_cpio/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/utils/sync_utils/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/utils/sync_utils/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/utils/sync_utils/sync_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/utils/sync_utils/sync_utils.h -------------------------------------------------------------------------------- /src/public/cpio/validator/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/validator/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/validator/init_server_enclave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/validator/init_server_enclave -------------------------------------------------------------------------------- /src/public/cpio/validator/proto/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/validator/proto/BUILD.bazel -------------------------------------------------------------------------------- /src/public/cpio/validator/validation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/public/cpio/validator/validation.cc -------------------------------------------------------------------------------- /src/roma/benchmark/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/benchmark/ba_server_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/ba_server_benchmark.cc -------------------------------------------------------------------------------- /src/roma/benchmark/benchmark_suite_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/benchmark_suite_test.cc -------------------------------------------------------------------------------- /src/roma/benchmark/compiler/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/compiler/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/benchmark/compiler/compiler_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/compiler/compiler_utils.h -------------------------------------------------------------------------------- /src/roma/benchmark/compiler/load_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/compiler/load_benchmark.cc -------------------------------------------------------------------------------- /src/roma/benchmark/duration_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/duration_benchmark.cc -------------------------------------------------------------------------------- /src/roma/benchmark/fake_ba_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/fake_ba_server.cc -------------------------------------------------------------------------------- /src/roma/benchmark/fake_ba_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/fake_ba_server.h -------------------------------------------------------------------------------- /src/roma/benchmark/fake_kv_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/fake_kv_server.cc -------------------------------------------------------------------------------- /src/roma/benchmark/fake_kv_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/fake_kv_server.h -------------------------------------------------------------------------------- /src/roma/benchmark/fake_kv_server_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/fake_kv_server_test.cc -------------------------------------------------------------------------------- /src/roma/benchmark/flatbuffers/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/flatbuffers/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/benchmark/host_api_grpc_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/host_api_grpc_benchmark.cc -------------------------------------------------------------------------------- /src/roma/benchmark/kv_server_udf_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/kv_server_udf_benchmark.cc -------------------------------------------------------------------------------- /src/roma/benchmark/logging_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/logging_benchmark.cc -------------------------------------------------------------------------------- /src/roma/benchmark/object_input_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/object_input_benchmark.cc -------------------------------------------------------------------------------- /src/roma/benchmark/prime_sieve_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/prime_sieve_benchmark.cc -------------------------------------------------------------------------------- /src/roma/benchmark/roma_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/roma_benchmark.cc -------------------------------------------------------------------------------- /src/roma/benchmark/roma_benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/roma_benchmark.h -------------------------------------------------------------------------------- /src/roma/benchmark/roma_v8_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/roma_v8_benchmark.cc -------------------------------------------------------------------------------- /src/roma/benchmark/serde/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/serde/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/benchmark/serde/json_converter.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/serde/json_converter.bzl -------------------------------------------------------------------------------- /src/roma/benchmark/serde/json_converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/serde/json_converter.cc -------------------------------------------------------------------------------- /src/roma/benchmark/serde/serde_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/serde/serde_utils.h -------------------------------------------------------------------------------- /src/roma/benchmark/sort_list_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/sort_list_benchmark.cc -------------------------------------------------------------------------------- /src/roma/benchmark/test_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/benchmark/test_code.h -------------------------------------------------------------------------------- /src/roma/byob/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/byob/benchmark/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/benchmark/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/byob/benchmark/clone_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/benchmark/clone_benchmark.cc -------------------------------------------------------------------------------- /src/roma/byob/benchmark/image_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/benchmark/image_test.yaml -------------------------------------------------------------------------------- /src/roma/byob/benchmark/setup_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/benchmark/setup_benchmark.cc -------------------------------------------------------------------------------- /src/roma/byob/benchmark/traffic_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/benchmark/traffic_generator.cc -------------------------------------------------------------------------------- /src/roma/byob/config/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/config/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/byob/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/config/config.h -------------------------------------------------------------------------------- /src/roma/byob/config/container.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/config/container.bzl -------------------------------------------------------------------------------- /src/roma/byob/container/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/container/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/byob/container/Dockerfile.nsjail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/container/Dockerfile.nsjail -------------------------------------------------------------------------------- /src/roma/byob/container/Dockerfile.runsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/container/Dockerfile.runsc -------------------------------------------------------------------------------- /src/roma/byob/container/config.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/container/config.json.tmpl -------------------------------------------------------------------------------- /src/roma/byob/container/gvisor.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/roma/byob/container/run_workers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/container/run_workers.cc -------------------------------------------------------------------------------- /src/roma/byob/dispatcher/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/dispatcher/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/byob/dispatcher/dispatcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/dispatcher/dispatcher.cc -------------------------------------------------------------------------------- /src/roma/byob/dispatcher/dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/dispatcher/dispatcher.h -------------------------------------------------------------------------------- /src/roma/byob/dispatcher/dispatcher.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/dispatcher/dispatcher.proto -------------------------------------------------------------------------------- /src/roma/byob/dispatcher/dispatcher_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/dispatcher/dispatcher_test.cc -------------------------------------------------------------------------------- /src/roma/byob/dispatcher/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/dispatcher/interface.h -------------------------------------------------------------------------------- /src/roma/byob/example/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/example/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/byob/example/annotated_example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/example/annotated_example.proto -------------------------------------------------------------------------------- /src/roma/byob/example/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/example/example.proto -------------------------------------------------------------------------------- /src/roma/byob/example/example_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/example/example_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/example/example_udf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/example/example_udf.go -------------------------------------------------------------------------------- /src/roma/byob/image_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/image_test.yaml -------------------------------------------------------------------------------- /src/roma/byob/interface/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/interface/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/byob/interface/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/interface/metrics.h -------------------------------------------------------------------------------- /src/roma/byob/interface/roma_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/interface/roma_service.cc -------------------------------------------------------------------------------- /src/roma/byob/interface/roma_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/interface/roma_service.h -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/SampleUdf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/SampleUdf.java -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/abort_early_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/abort_early_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/abort_late_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/abort_late_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/cap_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/cap_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/log_benchmark_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/log_benchmark_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/log_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/log_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/message_queue_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/message_queue_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/new_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/new_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/pause_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/pause_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/payload_read.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/payload_read.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/payload_write.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/payload_write.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/prime_sieve_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/prime_sieve_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/sample.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/sample.proto -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/sample_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/sample_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/sample_udf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/sample_udf.go -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/shell_cli_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/shell_cli_test.yaml -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/socket_finder_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/socket_finder_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/sort_list_10k_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/sort_list_10k_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/sample_udf/sort_list_1m_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/sample_udf/sort_list_1m_udf.cc -------------------------------------------------------------------------------- /src/roma/byob/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/test/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/byob/test/echo_commands_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/test/echo_commands_file.txt -------------------------------------------------------------------------------- /src/roma/byob/test/echo_request.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "Hello, world!" 3 | } 4 | -------------------------------------------------------------------------------- /src/roma/byob/test/empty.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/roma/byob/test/example_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/test/example_benchmark.cc -------------------------------------------------------------------------------- /src/roma/byob/test/example_shell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/test/example_shell.cc -------------------------------------------------------------------------------- /src/roma/byob/test/example_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/test/example_test.cc -------------------------------------------------------------------------------- /src/roma/byob/test/roma_byob_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/test/roma_byob_test.cc -------------------------------------------------------------------------------- /src/roma/byob/test/udf_image_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/test/udf_image_tests.yaml -------------------------------------------------------------------------------- /src/roma/byob/tools/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/tools/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/byob/tools/shell_evaluator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/tools/shell_evaluator.cc -------------------------------------------------------------------------------- /src/roma/byob/tools/shell_evaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/tools/shell_evaluator.h -------------------------------------------------------------------------------- /src/roma/byob/tools/shell_evaluator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/tools/shell_evaluator_test.cc -------------------------------------------------------------------------------- /src/roma/byob/utility/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/utility/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/byob/utility/file_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/utility/file_reader.cc -------------------------------------------------------------------------------- /src/roma/byob/utility/file_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/utility/file_reader.h -------------------------------------------------------------------------------- /src/roma/byob/utility/file_reader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/utility/file_reader_test.cc -------------------------------------------------------------------------------- /src/roma/byob/utility/udf_blob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/utility/udf_blob.cc -------------------------------------------------------------------------------- /src/roma/byob/utility/udf_blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/utility/udf_blob.h -------------------------------------------------------------------------------- /src/roma/byob/utility/udf_blob_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/utility/udf_blob_test.cc -------------------------------------------------------------------------------- /src/roma/byob/utility/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/utility/utils.cc -------------------------------------------------------------------------------- /src/roma/byob/utility/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/byob/utility/utils.h -------------------------------------------------------------------------------- /src/roma/config/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/config/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/config/config.h -------------------------------------------------------------------------------- /src/roma/config/config_log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/config/config_log_test.cc -------------------------------------------------------------------------------- /src/roma/config/function_binding_object_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/config/function_binding_object_v2.h -------------------------------------------------------------------------------- /src/roma/config/function_binding_v2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/config/function_binding_v2_test.cc -------------------------------------------------------------------------------- /src/roma/config/type_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/config/type_converter.h -------------------------------------------------------------------------------- /src/roma/config/type_converter_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/config/type_converter_benchmark.cc -------------------------------------------------------------------------------- /src/roma/config/type_converter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/config/type_converter_test.cc -------------------------------------------------------------------------------- /src/roma/interface/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/interface/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/interface/function_binding_io.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/interface/function_binding_io.proto -------------------------------------------------------------------------------- /src/roma/interface/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/interface/metrics.h -------------------------------------------------------------------------------- /src/roma/interface/roma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/interface/roma.h -------------------------------------------------------------------------------- /src/roma/logging/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/logging/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/logging/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/logging/logging.cc -------------------------------------------------------------------------------- /src/roma/logging/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/logging/logging.h -------------------------------------------------------------------------------- /src/roma/logging/logging_sapi_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/logging/logging_sapi_test.cc -------------------------------------------------------------------------------- /src/roma/logging/logging_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/logging/logging_test.cc -------------------------------------------------------------------------------- /src/roma/metadata_storage/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/metadata_storage/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/metadata_storage/metadata_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/metadata_storage/metadata_storage.h -------------------------------------------------------------------------------- /src/roma/metadata_storage/thread_safe_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/metadata_storage/thread_safe_map.h -------------------------------------------------------------------------------- /src/roma/native_function_grpc_server/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/native_function_grpc_server/BUILD -------------------------------------------------------------------------------- /src/roma/roma_service/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/roma_service/buffer_size_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/buffer_size_test.cc -------------------------------------------------------------------------------- /src/roma/roma_service/helloworld.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/helloworld.proto -------------------------------------------------------------------------------- /src/roma/roma_service/metadata_sapi_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/metadata_sapi_test.cc -------------------------------------------------------------------------------- /src/roma/roma_service/metadata_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/metadata_test.cc -------------------------------------------------------------------------------- /src/roma/roma_service/metrics_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/metrics_test.cc -------------------------------------------------------------------------------- /src/roma/roma_service/roma_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/roma_service.h -------------------------------------------------------------------------------- /src/roma/roma_service/romav8_app_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/romav8_app_service.h -------------------------------------------------------------------------------- /src/roma/roma_service/romav8_proto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/romav8_proto_utils.h -------------------------------------------------------------------------------- /src/roma/roma_service/string_size_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/string_size_test.cc -------------------------------------------------------------------------------- /src/roma/roma_service/wasm_sapi_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/wasm_sapi_test.cc -------------------------------------------------------------------------------- /src/roma/roma_service/wasm_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/roma_service/wasm_test.cc -------------------------------------------------------------------------------- /src/roma/sandbox/constants/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/constants/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/sandbox/constants/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/constants/constants.h -------------------------------------------------------------------------------- /src/roma/sandbox/dispatcher/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/dispatcher/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/sandbox/dispatcher/dispatcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/dispatcher/dispatcher.cc -------------------------------------------------------------------------------- /src/roma/sandbox/dispatcher/dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/dispatcher/dispatcher.h -------------------------------------------------------------------------------- /src/roma/sandbox/js_engine/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/js_engine/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/sandbox/js_engine/js_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/js_engine/js_engine.h -------------------------------------------------------------------------------- /src/roma/sandbox/worker/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/worker/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/sandbox/worker/worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/worker/worker.cc -------------------------------------------------------------------------------- /src/roma/sandbox/worker/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/worker/worker.h -------------------------------------------------------------------------------- /src/roma/sandbox/worker_api/sapi/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/worker_api/sapi/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/sandbox/worker_api/sapi/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/worker_api/sapi/utils.cc -------------------------------------------------------------------------------- /src/roma/sandbox/worker_api/sapi/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/sandbox/worker_api/sapi/utils.h -------------------------------------------------------------------------------- /src/roma/testing/rust_wasm_list_of_string_in_list_of_string_out_example/.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target 3 | -------------------------------------------------------------------------------- /src/roma/testing/rust_wasm_string_in_string_out_example/.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target 3 | -------------------------------------------------------------------------------- /src/roma/tools/api_plugin/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/api_plugin/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/tools/api_plugin/app_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/api_plugin/app_api.go -------------------------------------------------------------------------------- /src/roma/tools/api_plugin/cmd/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/api_plugin/cmd/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/tools/api_plugin/cmd/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/api_plugin/cmd/flags.go -------------------------------------------------------------------------------- /src/roma/tools/api_plugin/embed/version.txt: -------------------------------------------------------------------------------- 1 | ../../../../../version.txt -------------------------------------------------------------------------------- /src/roma/tools/api_plugin/roma_api.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/api_plugin/roma_api.bzl -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/roma_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/roma_benchmark.cc -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/roma_repl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/roma_repl.cc -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/roma_repl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/roma_repl.h -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/roma_shell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/roma_shell.cc -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/roma_v8_rpc_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/roma_v8_rpc_factory.h -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/template_replace.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/template_replace.bzl -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/test_doubles_library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/test_doubles_library.js -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/test_udfs/echo_udf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/test_udfs/echo_udf.js -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/test_udfs/primeSieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/test_udfs/primeSieve.js -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/test_udfs/simple_udf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/test_udfs/simple_udf.js -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/test_udfs/sleep_udf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/test_udfs/sleep_udf.js -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/test_udfs/stress_udf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/test_udfs/stress_udf.js -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/traffic_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/traffic_generator.cc -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/utils.cc -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/utils.h -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/v8_flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/v8_flags.cc -------------------------------------------------------------------------------- /src/roma/tools/v8_cli/v8_shell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/tools/v8_cli/v8_shell.cc -------------------------------------------------------------------------------- /src/roma/traffic_generator/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/traffic_generator/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/traffic_generator/burst_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/traffic_generator/burst_generator.cc -------------------------------------------------------------------------------- /src/roma/traffic_generator/burst_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/traffic_generator/burst_generator.h -------------------------------------------------------------------------------- /src/roma/wasm/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/wasm/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/wasm/deserializer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/wasm/deserializer.cc -------------------------------------------------------------------------------- /src/roma/wasm/deserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/wasm/deserializer.h -------------------------------------------------------------------------------- /src/roma/wasm/deserializer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/wasm/deserializer_test.cc -------------------------------------------------------------------------------- /src/roma/wasm/serde_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/wasm/serde_test.cc -------------------------------------------------------------------------------- /src/roma/wasm/serializer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/wasm/serializer.cc -------------------------------------------------------------------------------- /src/roma/wasm/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/wasm/serializer.h -------------------------------------------------------------------------------- /src/roma/wasm/serializer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/wasm/serializer_test.cc -------------------------------------------------------------------------------- /src/roma/wasm/testing_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/wasm/testing_utils.cc -------------------------------------------------------------------------------- /src/roma/wasm/testing_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/wasm/testing_utils.h -------------------------------------------------------------------------------- /src/roma/wasm/wasm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/wasm/wasm_types.h -------------------------------------------------------------------------------- /src/roma/worker/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/worker/BUILD.bazel -------------------------------------------------------------------------------- /src/roma/worker/execution_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/worker/execution_utils.cc -------------------------------------------------------------------------------- /src/roma/worker/execution_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/worker/execution_utils.h -------------------------------------------------------------------------------- /src/roma/worker/execution_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/worker/execution_utils_test.cc -------------------------------------------------------------------------------- /src/roma/worker/execution_watchdog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/worker/execution_watchdog.cc -------------------------------------------------------------------------------- /src/roma/worker/execution_watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/worker/execution_watchdog.h -------------------------------------------------------------------------------- /src/roma/worker/execution_watchdog_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/roma/worker/execution_watchdog_test.cc -------------------------------------------------------------------------------- /src/telemetry/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/BUILD.bazel -------------------------------------------------------------------------------- /src/telemetry/flag/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/flag/BUILD.bazel -------------------------------------------------------------------------------- /src/telemetry/flag/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/flag/config.proto -------------------------------------------------------------------------------- /src/telemetry/flag/telemetry_flag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/flag/telemetry_flag.cc -------------------------------------------------------------------------------- /src/telemetry/flag/telemetry_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/flag/telemetry_flag.h -------------------------------------------------------------------------------- /src/telemetry/flag/telemetry_flag_prod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/flag/telemetry_flag_prod.cc -------------------------------------------------------------------------------- /src/telemetry/flag/telemetry_flag_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/flag/telemetry_flag_test.cc -------------------------------------------------------------------------------- /src/telemetry/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/init.h -------------------------------------------------------------------------------- /src/telemetry/init_aws.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/init_aws.cc -------------------------------------------------------------------------------- /src/telemetry/init_azure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/init_azure.cc -------------------------------------------------------------------------------- /src/telemetry/init_gcp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/init_gcp.cc -------------------------------------------------------------------------------- /src/telemetry/init_local_ostream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/init_local_ostream.cc -------------------------------------------------------------------------------- /src/telemetry/init_local_otlp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/init_local_otlp.cc -------------------------------------------------------------------------------- /src/telemetry/metrics_recorder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/metrics_recorder.cc -------------------------------------------------------------------------------- /src/telemetry/metrics_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/metrics_recorder.h -------------------------------------------------------------------------------- /src/telemetry/mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/mocks.h -------------------------------------------------------------------------------- /src/telemetry/telemetry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/telemetry.cc -------------------------------------------------------------------------------- /src/telemetry/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/telemetry.h -------------------------------------------------------------------------------- /src/telemetry/telemetry_provider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/telemetry_provider.cc -------------------------------------------------------------------------------- /src/telemetry/telemetry_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/telemetry_provider.h -------------------------------------------------------------------------------- /src/telemetry/telemetry_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/telemetry_test.cc -------------------------------------------------------------------------------- /src/telemetry/trace_generator_aws.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/trace_generator_aws.cc -------------------------------------------------------------------------------- /src/telemetry/trace_generator_aws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/trace_generator_aws.h -------------------------------------------------------------------------------- /src/telemetry/tracing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/tracing.cc -------------------------------------------------------------------------------- /src/telemetry/tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/tracing.h -------------------------------------------------------------------------------- /src/telemetry/xray_id_generator_aws_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/telemetry/xray_id_generator_aws_test.cc -------------------------------------------------------------------------------- /src/util/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/BUILD.bazel -------------------------------------------------------------------------------- /src/util/containers/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/containers/BUILD.bazel -------------------------------------------------------------------------------- /src/util/containers/doubly_linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/containers/doubly_linked_list.h -------------------------------------------------------------------------------- /src/util/core_dump_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/core_dump_generator.cc -------------------------------------------------------------------------------- /src/util/duration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/duration.cc -------------------------------------------------------------------------------- /src/util/duration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/duration.h -------------------------------------------------------------------------------- /src/util/duration_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/duration_test.cc -------------------------------------------------------------------------------- /src/util/execution_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/execution_token.h -------------------------------------------------------------------------------- /src/util/file/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/file/BUILD.bazel -------------------------------------------------------------------------------- /src/util/file/file_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/file/file_util.cc -------------------------------------------------------------------------------- /src/util/file/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/file/file_util.h -------------------------------------------------------------------------------- /src/util/periodic_closure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/periodic_closure.cc -------------------------------------------------------------------------------- /src/util/periodic_closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/periodic_closure.h -------------------------------------------------------------------------------- /src/util/periodic_closure_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/periodic_closure_test.cc -------------------------------------------------------------------------------- /src/util/process_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/process_util.cc -------------------------------------------------------------------------------- /src/util/process_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/process_util.h -------------------------------------------------------------------------------- /src/util/protoutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/protoutil.cc -------------------------------------------------------------------------------- /src/util/protoutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/protoutil.h -------------------------------------------------------------------------------- /src/util/protoutil_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/protoutil_test.cc -------------------------------------------------------------------------------- /src/util/read_system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/read_system.cc -------------------------------------------------------------------------------- /src/util/read_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/read_system.h -------------------------------------------------------------------------------- /src/util/read_system_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/read_system_test.cc -------------------------------------------------------------------------------- /src/util/rlimit_core_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/rlimit_core_config.cc -------------------------------------------------------------------------------- /src/util/rlimit_core_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/rlimit_core_config.h -------------------------------------------------------------------------------- /src/util/rlimit_core_config_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/rlimit_core_config_test.cc -------------------------------------------------------------------------------- /src/util/scoped_execution_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/scoped_execution_token.h -------------------------------------------------------------------------------- /src/util/scoped_execution_token_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/scoped_execution_token_test.cc -------------------------------------------------------------------------------- /src/util/sleep/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/sleep/BUILD -------------------------------------------------------------------------------- /src/util/sleep/sleepfor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/sleep/sleepfor.cc -------------------------------------------------------------------------------- /src/util/sleep/sleepfor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/sleep/sleepfor.h -------------------------------------------------------------------------------- /src/util/sleep/sleepfor_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/sleep/sleepfor_mock.h -------------------------------------------------------------------------------- /src/util/sleep/sleepfor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/sleep/sleepfor_test.cc -------------------------------------------------------------------------------- /src/util/status_macro/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/BUILD.bazel -------------------------------------------------------------------------------- /src/util/status_macro/examine_stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/examine_stack.cc -------------------------------------------------------------------------------- /src/util/status_macro/examine_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/examine_stack.h -------------------------------------------------------------------------------- /src/util/status_macro/source_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/source_location.h -------------------------------------------------------------------------------- /src/util/status_macro/status_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/status_builder.cc -------------------------------------------------------------------------------- /src/util/status_macro/status_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/status_builder.h -------------------------------------------------------------------------------- /src/util/status_macro/status_builder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/status_builder_test.cc -------------------------------------------------------------------------------- /src/util/status_macro/status_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/status_macros.h -------------------------------------------------------------------------------- /src/util/status_macro/status_macros_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/status_macros_test.cc -------------------------------------------------------------------------------- /src/util/status_macro/status_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/status_util.cc -------------------------------------------------------------------------------- /src/util/status_macro/status_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/status_util.h -------------------------------------------------------------------------------- /src/util/status_macro/status_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/src/util/status_macro/status_util_test.cc -------------------------------------------------------------------------------- /testing/functionaltest-system/.bazelignore: -------------------------------------------------------------------------------- 1 | examples/grpc_greeter 2 | tests/servers 3 | -------------------------------------------------------------------------------- /testing/functionaltest-system/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/.bazelrc -------------------------------------------------------------------------------- /testing/functionaltest-system/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.5.0 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/.gitignore -------------------------------------------------------------------------------- /testing/functionaltest-system/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/.gitmodules -------------------------------------------------------------------------------- /testing/functionaltest-system/.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- 1 | builders/etc/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /testing/functionaltest-system/.prettierignore: -------------------------------------------------------------------------------- 1 | /.git/ 2 | /CHANGELOG.md 3 | /google_internal/LATEST_RELEASE.md 4 | -------------------------------------------------------------------------------- /testing/functionaltest-system/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | builders/etc/.prettierrc.yaml -------------------------------------------------------------------------------- /testing/functionaltest-system/.versionrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/.versionrc.json -------------------------------------------------------------------------------- /testing/functionaltest-system/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/BUILD.bazel -------------------------------------------------------------------------------- /testing/functionaltest-system/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/CHANGELOG.md -------------------------------------------------------------------------------- /testing/functionaltest-system/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/Dockerfile -------------------------------------------------------------------------------- /testing/functionaltest-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/README.md -------------------------------------------------------------------------------- /testing/functionaltest-system/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/WORKSPACE -------------------------------------------------------------------------------- /testing/functionaltest-system/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/buf.yaml -------------------------------------------------------------------------------- /testing/functionaltest-system/deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/deps.bzl -------------------------------------------------------------------------------- /testing/functionaltest-system/repos.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/repos.bzl -------------------------------------------------------------------------------- /testing/functionaltest-system/sut/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/sut/BUILD.bazel -------------------------------------------------------------------------------- /testing/functionaltest-system/sut/cmd/deploy_and_test/embed/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.5.0 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/sut/cmd/embed/.bazelversion: -------------------------------------------------------------------------------- 1 | ../deploy_and_test/embed/.bazelversion -------------------------------------------------------------------------------- /testing/functionaltest-system/sut/cmd/embed/version-functionaltest.txt: -------------------------------------------------------------------------------- 1 | ../../../version.txt -------------------------------------------------------------------------------- /testing/functionaltest-system/sut/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/sut/cmd/root.go -------------------------------------------------------------------------------- /testing/functionaltest-system/sut/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/sut/main.go -------------------------------------------------------------------------------- /testing/functionaltest-system/sut/sut.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/functionaltest-system/sut/sut.bzl -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/servers/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.5.0 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/servers/third_party/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/GREETER_ENDPOINT/helloworld.Greeter.SayHello/empty-name.request.json: -------------------------------------------------------------------------------- 1 | {"name": ""} 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/GREETER_ENDPOINT/helloworld.Greeter.SayHello/simple-filter.filter.jq: -------------------------------------------------------------------------------- 1 | {"msg": .message} 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/GREETER_ENDPOINT/helloworld.Greeter.SayHello/simple-filter.request.json: -------------------------------------------------------------------------------- 1 | {"name": "Frog"} 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/GREETER_ENDPOINT/helloworld.Greeter.SayHello/simple-prefilter.pre-filter.jq: -------------------------------------------------------------------------------- 1 | {name: .} 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/GREETER_ENDPOINT/helloworld.Greeter.SayHello/simple-prefilter.request.json: -------------------------------------------------------------------------------- 1 | "Frog" 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/GREETER_ENDPOINT/helloworld.Greeter.SayHello/simple.request.json: -------------------------------------------------------------------------------- 1 | {"name": "me"} 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/GREETER_ENDPOINT/helloworld.Greeter.SayHello/sut-id-filter.pre-filter.jq: -------------------------------------------------------------------------------- 1 | .name += ("-" + $SUT_ID) 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/GREETER_ENDPOINT/helloworld.Greeter.SayHello/sut-id-filter.request.json: -------------------------------------------------------------------------------- 1 | {"name": "Frog"} 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/GREETER_ENDPOINT/helloworld.Greeter.SayHello/sut-id.request.json: -------------------------------------------------------------------------------- 1 | {"name": "Frog"} 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/GREETER_ENDPOINT/helloworld.Greeter.SayHello/unicode.request.json: -------------------------------------------------------------------------------- 1 | {"name": "Åge Møller"} 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/ROUTEGUIDE_ENDPOINT/routeguide.RouteGuide.GetFeature/blank.request.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/ROUTEGUIDE_ENDPOINT/routeguide.RouteGuide.ListFeatures/nj-ny-count.filter.slurp.jq: -------------------------------------------------------------------------------- 1 | length 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/tests/v2/sut_grpc_servers/test_cases/ROUTEGUIDE_ENDPOINT/routeguide.RouteGuide.ListFeatures/nj-ny-count.reply.json: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /testing/functionaltest-system/version.txt: -------------------------------------------------------------------------------- 1 | 1.7.0 -------------------------------------------------------------------------------- /testing/roma/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/roma/BUILD.bazel -------------------------------------------------------------------------------- /testing/roma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/roma/README.md -------------------------------------------------------------------------------- /testing/roma/callback_binary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/roma/callback_binary.cc -------------------------------------------------------------------------------- /testing/roma/hello_world_binary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/roma/hello_world_binary.cc -------------------------------------------------------------------------------- /testing/roma/hello_world_binary_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/roma/hello_world_binary_test -------------------------------------------------------------------------------- /testing/roma/v8/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/roma/v8/BUILD.bazel -------------------------------------------------------------------------------- /testing/roma/v8/v8_string_size_binary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/roma/v8/v8_string_size_binary.cc -------------------------------------------------------------------------------- /testing/test_import/.bazelignore: -------------------------------------------------------------------------------- 1 | ../../.bazelignore -------------------------------------------------------------------------------- /testing/test_import/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/test_import/.bazelrc -------------------------------------------------------------------------------- /testing/test_import/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.5.0 2 | -------------------------------------------------------------------------------- /testing/test_import/.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | -------------------------------------------------------------------------------- /testing/test_import/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/test_import/BUILD.bazel -------------------------------------------------------------------------------- /testing/test_import/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/test_import/WORKSPACE -------------------------------------------------------------------------------- /testing/test_import/run-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/test_import/run-build -------------------------------------------------------------------------------- /testing/tools/Dockerfile.kind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/tools/Dockerfile.kind -------------------------------------------------------------------------------- /testing/tools/az: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/tools/az -------------------------------------------------------------------------------- /testing/tools/helm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/tools/helm -------------------------------------------------------------------------------- /testing/tools/kubectl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/testing/tools/kubectl -------------------------------------------------------------------------------- /third_party/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/.gitattributes -------------------------------------------------------------------------------- /third_party/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/BUILD.bazel -------------------------------------------------------------------------------- /third_party/aws-nitro-kms/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nitro-kms/BUILD.bazel -------------------------------------------------------------------------------- /third_party/aws-nitro-kms/aws_c_auth.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nitro-kms/aws_c_auth.BUILD -------------------------------------------------------------------------------- /third_party/aws-nitro-kms/aws_c_cal.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nitro-kms/aws_c_cal.BUILD -------------------------------------------------------------------------------- /third_party/aws-nitro-kms/aws_c_common.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nitro-kms/aws_c_common.BUILD -------------------------------------------------------------------------------- /third_party/aws-nitro-kms/aws_c_http.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nitro-kms/aws_c_http.BUILD -------------------------------------------------------------------------------- /third_party/aws-nitro-kms/aws_c_io.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nitro-kms/aws_c_io.BUILD -------------------------------------------------------------------------------- /third_party/aws-nitro-kms/aws_c_io.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nitro-kms/aws_c_io.patch -------------------------------------------------------------------------------- /third_party/aws-nitro-kms/aws_lc.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nitro-kms/aws_lc.BUILD -------------------------------------------------------------------------------- /third_party/aws-nitro-kms/aws_lc.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nitro-kms/aws_lc.bzl -------------------------------------------------------------------------------- /third_party/aws-nitro-kms/aws_lc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nitro-kms/aws_lc.patch -------------------------------------------------------------------------------- /third_party/aws-nitro-kms/s2n_tls.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nitro-kms/s2n_tls.BUILD -------------------------------------------------------------------------------- /third_party/aws-nsm/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nsm/BUILD.bazel -------------------------------------------------------------------------------- /third_party/aws-nsm/Cargo.Bazel.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nsm/Cargo.Bazel.lock -------------------------------------------------------------------------------- /third_party/aws-nsm/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nsm/Cargo.lock -------------------------------------------------------------------------------- /third_party/aws-nsm/nsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws-nsm/nsm.h -------------------------------------------------------------------------------- /third_party/aws_nitro_kms_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/aws_nitro_kms_deps.bzl -------------------------------------------------------------------------------- /third_party/bazel_clang_tidy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/bazel_clang_tidy.patch -------------------------------------------------------------------------------- /third_party/bazel_rules_closure.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/bazel_rules_closure.bzl -------------------------------------------------------------------------------- /third_party/cddl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/cddl/BUILD.bazel -------------------------------------------------------------------------------- /third_party/cddl/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/cddl/Cargo.lock -------------------------------------------------------------------------------- /third_party/cddl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/cddl/Cargo.toml -------------------------------------------------------------------------------- /third_party/cddl/Cargo.toml.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/cddl/Cargo.toml.old -------------------------------------------------------------------------------- /third_party/cddl/cargo-bazel-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/cddl/cargo-bazel-lock.json -------------------------------------------------------------------------------- /third_party/cddl/cddl.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/cddl/cddl.BUILD -------------------------------------------------------------------------------- /third_party/cddl/cddl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/cddl/cddl.h -------------------------------------------------------------------------------- /third_party/cddl/cddl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/cddl/cddl.patch -------------------------------------------------------------------------------- /third_party/cpp_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/cpp_deps.bzl -------------------------------------------------------------------------------- /third_party/curl.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/curl.BUILD -------------------------------------------------------------------------------- /third_party/depend_on_what_you_use.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/depend_on_what_you_use.bzl -------------------------------------------------------------------------------- /third_party/depend_on_what_you_use.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/depend_on_what_you_use.patch -------------------------------------------------------------------------------- /third_party/deps1.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/deps1.bzl -------------------------------------------------------------------------------- /third_party/deps2.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/deps2.bzl -------------------------------------------------------------------------------- /third_party/deps3.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/deps3.bzl -------------------------------------------------------------------------------- /third_party/deps4.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/deps4.bzl -------------------------------------------------------------------------------- /third_party/differential_privacy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/differential_privacy.patch -------------------------------------------------------------------------------- /third_party/dwyu_aspect.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/dwyu_aspect.bzl -------------------------------------------------------------------------------- /third_party/flatbuffers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/flatbuffers.patch -------------------------------------------------------------------------------- /third_party/googleurl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/googleurl.patch -------------------------------------------------------------------------------- /third_party/io_opentelemetry_cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/io_opentelemetry_cpp.patch -------------------------------------------------------------------------------- /third_party/jq.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/jq.BUILD -------------------------------------------------------------------------------- /third_party/json-c/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/json-c/BUILD.bazel -------------------------------------------------------------------------------- /third_party/json-c/json_c.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/json-c/json_c.BUILD -------------------------------------------------------------------------------- /third_party/json-c/json_c.config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/json-c/json_c.config.h -------------------------------------------------------------------------------- /third_party/json-c/json_c.json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/json-c/json_c.json.h -------------------------------------------------------------------------------- /third_party/json-c/json_c.json_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/json-c/json_c.json_config.h -------------------------------------------------------------------------------- /third_party/libevent-evconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/libevent-evconfig.patch -------------------------------------------------------------------------------- /third_party/libevent.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/libevent.BUILD -------------------------------------------------------------------------------- /third_party/libevent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/libevent.patch -------------------------------------------------------------------------------- /third_party/protoc-gen-doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/protoc-gen-doc.patch -------------------------------------------------------------------------------- /third_party/quiche.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/quiche.patch -------------------------------------------------------------------------------- /third_party/rules_boost.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/rules_boost.patch -------------------------------------------------------------------------------- /third_party/rules_closure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/rules_closure.patch -------------------------------------------------------------------------------- /third_party/rules_oci.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/data-plane-shared-libraries/HEAD/third_party/rules_oci.patch -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.0.0 2 | --------------------------------------------------------------------------------