├── .github └── workflows │ ├── grpc_source_sync.yml │ ├── manual-push-a-pod.yml │ ├── pre_submit_check.yml │ └── prod_release_cocoapod.yml ├── .gitignore ├── LICENSE ├── NOTICE.txt ├── Package.swift ├── README.md ├── etc ├── README.md └── roots.pem ├── gRPC-C++.podspec ├── gRPC-Core.podspec ├── gRPC-ProtoRPC.podspec ├── gRPC-RxLibrary.podspec ├── gRPC.podspec ├── include ├── grpc++ │ ├── alarm.h │ ├── channel.h │ ├── client_context.h │ ├── completion_queue.h │ ├── create_channel.h │ ├── create_channel_posix.h │ ├── ext │ │ └── health_check_service_server_builder_option.h │ ├── generic │ │ ├── async_generic_service.h │ │ └── generic_stub.h │ ├── grpc++.h │ ├── health_check_service_interface.h │ ├── impl │ │ ├── call.h │ │ ├── channel_argument_option.h │ │ ├── client_unary_call.h │ │ ├── codegen │ │ │ ├── async_stream.h │ │ │ ├── async_unary_call.h │ │ │ ├── byte_buffer.h │ │ │ ├── call.h │ │ │ ├── call_hook.h │ │ │ ├── channel_interface.h │ │ │ ├── client_context.h │ │ │ ├── client_unary_call.h │ │ │ ├── completion_queue.h │ │ │ ├── completion_queue_tag.h │ │ │ ├── config.h │ │ │ ├── config_protobuf.h │ │ │ ├── create_auth_context.h │ │ │ ├── metadata_map.h │ │ │ ├── method_handler_impl.h │ │ │ ├── proto_utils.h │ │ │ ├── rpc_method.h │ │ │ ├── rpc_service_method.h │ │ │ ├── security │ │ │ │ └── auth_context.h │ │ │ ├── serialization_traits.h │ │ │ ├── server_context.h │ │ │ ├── server_interface.h │ │ │ ├── service_type.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── status_code_enum.h │ │ │ ├── string_ref.h │ │ │ ├── stub_options.h │ │ │ ├── sync_stream.h │ │ │ └── time.h │ │ ├── grpc_library.h │ │ ├── method_handler_impl.h │ │ ├── rpc_method.h │ │ ├── rpc_service_method.h │ │ ├── serialization_traits.h │ │ ├── server_builder_option.h │ │ ├── server_builder_plugin.h │ │ ├── server_initializer.h │ │ └── service_type.h │ ├── resource_quota.h │ ├── security │ │ ├── auth_context.h │ │ ├── auth_metadata_processor.h │ │ ├── credentials.h │ │ └── server_credentials.h │ ├── server.h │ ├── server_builder.h │ ├── server_context.h │ ├── server_posix.h │ └── support │ │ ├── async_stream.h │ │ ├── async_unary_call.h │ │ ├── byte_buffer.h │ │ ├── channel_arguments.h │ │ ├── config.h │ │ ├── slice.h │ │ ├── status.h │ │ ├── status_code_enum.h │ │ ├── string_ref.h │ │ ├── stub_options.h │ │ ├── sync_stream.h │ │ └── time.h ├── grpc │ ├── byte_buffer.h │ ├── byte_buffer_reader.h │ ├── census.h │ ├── compression.h │ ├── create_channel_from_endpoint.h │ ├── credentials.h │ ├── event_engine │ │ ├── endpoint_config.h │ │ ├── event_engine.h │ │ ├── extensible.h │ │ ├── internal │ │ │ ├── memory_allocator_impl.h │ │ │ ├── slice_cast.h │ │ │ └── write_event.h │ │ ├── memory_allocator.h │ │ ├── memory_request.h │ │ ├── port.h │ │ ├── slice.h │ │ └── slice_buffer.h │ ├── fork.h │ ├── grpc.h │ ├── grpc_audit_logging.h │ ├── grpc_crl_provider.h │ ├── grpc_posix.h │ ├── grpc_security.h │ ├── grpc_security_constants.h │ ├── impl │ │ ├── call.h │ │ ├── channel_arg_names.h │ │ ├── codegen │ │ │ ├── atm.h │ │ │ ├── atm_gcc_atomic.h │ │ │ ├── atm_gcc_sync.h │ │ │ ├── atm_windows.h │ │ │ ├── byte_buffer.h │ │ │ ├── byte_buffer_reader.h │ │ │ ├── compression_types.h │ │ │ ├── connectivity_state.h │ │ │ ├── fork.h │ │ │ ├── gpr_types.h │ │ │ ├── grpc_types.h │ │ │ ├── log.h │ │ │ ├── port_platform.h │ │ │ ├── propagation_bits.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── sync.h │ │ │ ├── sync_abseil.h │ │ │ ├── sync_custom.h │ │ │ ├── sync_generic.h │ │ │ ├── sync_posix.h │ │ │ └── sync_windows.h │ │ ├── compression_types.h │ │ ├── connectivity_state.h │ │ ├── grpc_types.h │ │ ├── propagation_bits.h │ │ └── slice_type.h │ ├── load_reporting.h │ ├── module.modulemap │ ├── passive_listener.h │ ├── slice.h │ ├── slice_buffer.h │ ├── status.h │ └── support │ │ ├── alloc.h │ │ ├── atm.h │ │ ├── atm_gcc_atomic.h │ │ ├── atm_gcc_sync.h │ │ ├── atm_windows.h │ │ ├── cpu.h │ │ ├── json.h │ │ ├── log.h │ │ ├── log_windows.h │ │ ├── metrics.h │ │ ├── port_platform.h │ │ ├── string_util.h │ │ ├── sync.h │ │ ├── sync_abseil.h │ │ ├── sync_custom.h │ │ ├── sync_generic.h │ │ ├── sync_posix.h │ │ ├── sync_windows.h │ │ ├── thd_id.h │ │ ├── time.h │ │ └── workaround_list.h └── grpcpp │ ├── alarm.h │ ├── channel.h │ ├── client_context.h │ ├── completion_queue.h │ ├── create_channel.h │ ├── create_channel_posix.h │ ├── ext │ ├── call_metric_recorder.h │ ├── health_check_service_server_builder_option.h │ └── server_metric_recorder.h │ ├── generic │ ├── async_generic_service.h │ ├── callback_generic_service.h │ ├── generic_stub.h │ └── generic_stub_callback.h │ ├── grpcpp.h │ ├── health_check_service_interface.h │ ├── impl │ ├── call.h │ ├── call_hook.h │ ├── call_op_set.h │ ├── call_op_set_interface.h │ ├── channel_argument_option.h │ ├── channel_interface.h │ ├── client_unary_call.h │ ├── codegen │ │ ├── async_generic_service.h │ │ ├── async_stream.h │ │ ├── async_unary_call.h │ │ ├── byte_buffer.h │ │ ├── call.h │ │ ├── call_hook.h │ │ ├── call_op_set.h │ │ ├── call_op_set_interface.h │ │ ├── callback_common.h │ │ ├── channel_interface.h │ │ ├── client_callback.h │ │ ├── client_context.h │ │ ├── client_interceptor.h │ │ ├── client_unary_call.h │ │ ├── completion_queue.h │ │ ├── completion_queue_tag.h │ │ ├── config.h │ │ ├── config_protobuf.h │ │ ├── create_auth_context.h │ │ ├── delegating_channel.h │ │ ├── intercepted_channel.h │ │ ├── interceptor.h │ │ ├── interceptor_common.h │ │ ├── message_allocator.h │ │ ├── metadata_map.h │ │ ├── method_handler.h │ │ ├── method_handler_impl.h │ │ ├── proto_buffer_reader.h │ │ ├── proto_buffer_writer.h │ │ ├── proto_utils.h │ │ ├── rpc_method.h │ │ ├── rpc_service_method.h │ │ ├── security │ │ │ └── auth_context.h │ │ ├── serialization_traits.h │ │ ├── server_callback.h │ │ ├── server_callback_handlers.h │ │ ├── server_context.h │ │ ├── server_interceptor.h │ │ ├── server_interface.h │ │ ├── service_type.h │ │ ├── slice.h │ │ ├── status.h │ │ ├── status_code_enum.h │ │ ├── string_ref.h │ │ ├── stub_options.h │ │ ├── sync.h │ │ ├── sync_stream.h │ │ └── time.h │ ├── completion_queue_tag.h │ ├── create_auth_context.h │ ├── delegating_channel.h │ ├── generic_serialize.h │ ├── generic_stub_internal.h │ ├── grpc_library.h │ ├── intercepted_channel.h │ ├── interceptor_common.h │ ├── metadata_map.h │ ├── method_handler_impl.h │ ├── proto_utils.h │ ├── rpc_method.h │ ├── rpc_service_method.h │ ├── serialization_traits.h │ ├── server_builder_option.h │ ├── server_builder_plugin.h │ ├── server_callback_handlers.h │ ├── server_initializer.h │ ├── service_type.h │ ├── status.h │ └── sync.h │ ├── passive_listener.h │ ├── ports_def.inc │ ├── ports_undef.inc │ ├── resource_quota.h │ ├── security │ ├── audit_logging.h │ ├── auth_context.h │ ├── auth_metadata_processor.h │ ├── authorization_policy_provider.h │ ├── credentials.h │ ├── server_credentials.h │ ├── tls_certificate_provider.h │ ├── tls_certificate_verifier.h │ ├── tls_credentials_options.h │ └── tls_crl_provider.h │ ├── server.h │ ├── server_builder.h │ ├── server_context.h │ ├── server_interface.h │ ├── server_posix.h │ ├── support │ ├── async_stream.h │ ├── async_unary_call.h │ ├── byte_buffer.h │ ├── callback_common.h │ ├── channel_arguments.h │ ├── client_callback.h │ ├── client_interceptor.h │ ├── config.h │ ├── global_callback_hook.h │ ├── interceptor.h │ ├── message_allocator.h │ ├── method_handler.h │ ├── proto_buffer_reader.h │ ├── proto_buffer_writer.h │ ├── server_callback.h │ ├── server_interceptor.h │ ├── slice.h │ ├── status.h │ ├── status_code_enum.h │ ├── string_ref.h │ ├── stub_options.h │ ├── sync_stream.h │ ├── time.h │ └── validate_service_config.h │ ├── version_info.h │ └── xds_server_builder.h ├── scripts ├── build_commons.sh ├── build_spm_package.sh ├── build_test_cocoapod_samples.sh ├── build_test_spm_samples.sh ├── delete_pod_version.sh ├── extract-grpc-ios-files.py ├── lint_test_cocoapod_spec.sh ├── prepare_env.sh ├── release_cocoapod.sh ├── skip_pod_push_lint.sh ├── sync_grpc_src_shallow.sh └── wait_for_pod_release.sh ├── spm-core-include └── grpc ├── spm-cpp-include └── grpcpp ├── src ├── core │ ├── call │ │ ├── call_arena_allocator.cc │ │ ├── call_arena_allocator.h │ │ ├── call_destination.h │ │ ├── call_filters.cc │ │ ├── call_filters.h │ │ ├── call_finalization.h │ │ ├── call_spine.cc │ │ ├── call_spine.h │ │ ├── call_state.cc │ │ ├── call_state.h │ │ ├── client_call.cc │ │ ├── client_call.h │ │ ├── custom_metadata.h │ │ ├── filter_fusion.h │ │ ├── interception_chain.cc │ │ ├── interception_chain.h │ │ ├── message.cc │ │ ├── message.h │ │ ├── metadata.cc │ │ ├── metadata.h │ │ ├── metadata_batch.cc │ │ ├── metadata_batch.h │ │ ├── metadata_compression_traits.h │ │ ├── metadata_info.cc │ │ ├── metadata_info.h │ │ ├── parsed_metadata.cc │ │ ├── parsed_metadata.h │ │ ├── request_buffer.cc │ │ ├── request_buffer.h │ │ ├── security_context.cc │ │ ├── security_context.h │ │ ├── server_call.cc │ │ ├── server_call.h │ │ ├── simple_slice_based_metadata.h │ │ ├── status_util.cc │ │ └── status_util.h │ ├── channelz │ │ ├── channel_trace.cc │ │ ├── channel_trace.h │ │ ├── channelz.cc │ │ ├── channelz.h │ │ ├── channelz_registry.cc │ │ ├── channelz_registry.h │ │ ├── property_list.cc │ │ ├── property_list.h │ │ ├── text_encode.cc │ │ ├── text_encode.h │ │ ├── v2tov1 │ │ │ ├── convert.cc │ │ │ ├── convert.h │ │ │ ├── legacy_api.cc │ │ │ ├── legacy_api.h │ │ │ ├── property_list.cc │ │ │ └── property_list.h │ │ └── ztrace_collector.h │ ├── client_channel │ │ ├── backup_poller.cc │ │ ├── backup_poller.h │ │ ├── client_channel.cc │ │ ├── client_channel.h │ │ ├── client_channel_args.h │ │ ├── client_channel_factory.cc │ │ ├── client_channel_factory.h │ │ ├── client_channel_filter.cc │ │ ├── client_channel_filter.h │ │ ├── client_channel_internal.h │ │ ├── client_channel_plugin.cc │ │ ├── client_channel_service_config.cc │ │ ├── client_channel_service_config.h │ │ ├── config_selector.h │ │ ├── connector.h │ │ ├── direct_channel.cc │ │ ├── direct_channel.h │ │ ├── dynamic_filters.cc │ │ ├── dynamic_filters.h │ │ ├── global_subchannel_pool.cc │ │ ├── global_subchannel_pool.h │ │ ├── lb_metadata.cc │ │ ├── lb_metadata.h │ │ ├── load_balanced_call_destination.cc │ │ ├── load_balanced_call_destination.h │ │ ├── local_subchannel_pool.cc │ │ ├── local_subchannel_pool.h │ │ ├── retry_filter.cc │ │ ├── retry_filter.h │ │ ├── retry_filter_legacy_call_data.cc │ │ ├── retry_filter_legacy_call_data.h │ │ ├── retry_interceptor.cc │ │ ├── retry_interceptor.h │ │ ├── retry_service_config.cc │ │ ├── retry_service_config.h │ │ ├── retry_throttle.cc │ │ ├── retry_throttle.h │ │ ├── subchannel.cc │ │ ├── subchannel.h │ │ ├── subchannel_interface_internal.h │ │ ├── subchannel_pool_interface.cc │ │ ├── subchannel_pool_interface.h │ │ ├── subchannel_stream_client.cc │ │ └── subchannel_stream_client.h │ ├── config │ │ ├── config_vars.cc │ │ ├── config_vars.h │ │ ├── config_vars_non_generated.cc │ │ ├── core_configuration.cc │ │ ├── core_configuration.h │ │ ├── load_config.cc │ │ └── load_config.h │ ├── credentials │ │ ├── call │ │ │ ├── call_credentials.h │ │ │ ├── call_creds_registry.h │ │ │ ├── call_creds_registry_init.cc │ │ │ ├── call_creds_util.cc │ │ │ ├── call_creds_util.h │ │ │ ├── composite │ │ │ │ ├── composite_call_credentials.cc │ │ │ │ └── composite_call_credentials.h │ │ │ ├── external │ │ │ │ ├── aws_external_account_credentials.cc │ │ │ │ ├── aws_external_account_credentials.h │ │ │ │ ├── aws_request_signer.cc │ │ │ │ ├── aws_request_signer.h │ │ │ │ ├── external_account_credentials.cc │ │ │ │ ├── external_account_credentials.h │ │ │ │ ├── file_external_account_credentials.cc │ │ │ │ ├── file_external_account_credentials.h │ │ │ │ ├── url_external_account_credentials.cc │ │ │ │ └── url_external_account_credentials.h │ │ │ ├── gcp_service_account_identity │ │ │ │ ├── gcp_service_account_identity_credentials.cc │ │ │ │ └── gcp_service_account_identity_credentials.h │ │ │ ├── iam │ │ │ │ ├── iam_credentials.cc │ │ │ │ └── iam_credentials.h │ │ │ ├── json_util.cc │ │ │ ├── json_util.h │ │ │ ├── jwt │ │ │ │ ├── json_token.cc │ │ │ │ ├── json_token.h │ │ │ │ ├── jwt_credentials.cc │ │ │ │ ├── jwt_credentials.h │ │ │ │ ├── jwt_verifier.cc │ │ │ │ └── jwt_verifier.h │ │ │ ├── jwt_token_file │ │ │ │ ├── jwt_token_file_call_credentials.cc │ │ │ │ └── jwt_token_file_call_credentials.h │ │ │ ├── jwt_util.cc │ │ │ ├── jwt_util.h │ │ │ ├── oauth2 │ │ │ │ ├── oauth2_credentials.cc │ │ │ │ └── oauth2_credentials.h │ │ │ ├── plugin │ │ │ │ ├── plugin_credentials.cc │ │ │ │ └── plugin_credentials.h │ │ │ └── token_fetcher │ │ │ │ ├── token_fetcher_credentials.cc │ │ │ │ └── token_fetcher_credentials.h │ │ └── transport │ │ │ ├── alts │ │ │ ├── alts_credentials.cc │ │ │ ├── alts_credentials.h │ │ │ ├── alts_security_connector.cc │ │ │ ├── alts_security_connector.h │ │ │ ├── check_gcp_environment.cc │ │ │ ├── check_gcp_environment.h │ │ │ ├── check_gcp_environment_linux.cc │ │ │ ├── check_gcp_environment_no_op.cc │ │ │ ├── check_gcp_environment_windows.cc │ │ │ ├── grpc_alts_credentials_client_options.cc │ │ │ ├── grpc_alts_credentials_options.cc │ │ │ ├── grpc_alts_credentials_options.h │ │ │ └── grpc_alts_credentials_server_options.cc │ │ │ ├── channel_creds_registry.h │ │ │ ├── channel_creds_registry_init.cc │ │ │ ├── composite │ │ │ ├── composite_channel_credentials.cc │ │ │ └── composite_channel_credentials.h │ │ │ ├── fake │ │ │ ├── fake_credentials.cc │ │ │ ├── fake_credentials.h │ │ │ ├── fake_security_connector.cc │ │ │ └── fake_security_connector.h │ │ │ ├── google_default │ │ │ ├── credentials_generic.cc │ │ │ ├── google_default_credentials.cc │ │ │ └── google_default_credentials.h │ │ │ ├── insecure │ │ │ ├── insecure_credentials.cc │ │ │ ├── insecure_credentials.h │ │ │ ├── insecure_security_connector.cc │ │ │ └── insecure_security_connector.h │ │ │ ├── local │ │ │ ├── local_credentials.cc │ │ │ ├── local_credentials.h │ │ │ ├── local_security_connector.cc │ │ │ └── local_security_connector.h │ │ │ ├── security_connector.cc │ │ │ ├── security_connector.h │ │ │ ├── ssl │ │ │ ├── ssl_credentials.cc │ │ │ ├── ssl_credentials.h │ │ │ ├── ssl_security_connector.cc │ │ │ └── ssl_security_connector.h │ │ │ ├── tls │ │ │ ├── certificate_provider_factory.h │ │ │ ├── certificate_provider_registry.cc │ │ │ ├── certificate_provider_registry.h │ │ │ ├── grpc_tls_certificate_distributor.cc │ │ │ ├── grpc_tls_certificate_distributor.h │ │ │ ├── grpc_tls_certificate_match.cc │ │ │ ├── grpc_tls_certificate_provider.cc │ │ │ ├── grpc_tls_certificate_provider.h │ │ │ ├── grpc_tls_certificate_verifier.cc │ │ │ ├── grpc_tls_certificate_verifier.h │ │ │ ├── grpc_tls_credentials_options.cc │ │ │ ├── grpc_tls_credentials_options.h │ │ │ ├── grpc_tls_crl_provider.cc │ │ │ ├── grpc_tls_crl_provider.h │ │ │ ├── load_system_roots.h │ │ │ ├── load_system_roots_fallback.cc │ │ │ ├── load_system_roots_supported.cc │ │ │ ├── load_system_roots_supported.h │ │ │ ├── load_system_roots_windows.cc │ │ │ ├── spiffe_utils.cc │ │ │ ├── spiffe_utils.h │ │ │ ├── ssl_utils.cc │ │ │ ├── ssl_utils.h │ │ │ ├── tls_credentials.cc │ │ │ ├── tls_credentials.h │ │ │ ├── tls_security_connector.cc │ │ │ ├── tls_security_connector.h │ │ │ ├── tls_utils.cc │ │ │ └── tls_utils.h │ │ │ ├── transport_credentials.cc │ │ │ ├── transport_credentials.h │ │ │ └── xds │ │ │ ├── xds_credentials.cc │ │ │ └── xds_credentials.h │ ├── ext │ │ ├── filters │ │ │ ├── backend_metrics │ │ │ │ ├── backend_metric_filter.cc │ │ │ │ ├── backend_metric_filter.h │ │ │ │ └── backend_metric_provider.h │ │ │ ├── census │ │ │ │ └── grpc_context.cc │ │ │ ├── channel_idle │ │ │ │ ├── idle_filter_state.cc │ │ │ │ ├── idle_filter_state.h │ │ │ │ ├── legacy_channel_idle_filter.cc │ │ │ │ └── legacy_channel_idle_filter.h │ │ │ ├── fault_injection │ │ │ │ ├── fault_injection_filter.cc │ │ │ │ ├── fault_injection_filter.h │ │ │ │ ├── fault_injection_service_config_parser.cc │ │ │ │ └── fault_injection_service_config_parser.h │ │ │ ├── gcp_authentication │ │ │ │ ├── gcp_authentication_filter.cc │ │ │ │ ├── gcp_authentication_filter.h │ │ │ │ ├── gcp_authentication_service_config_parser.cc │ │ │ │ └── gcp_authentication_service_config_parser.h │ │ │ ├── http │ │ │ │ ├── client │ │ │ │ │ ├── http_client_filter.cc │ │ │ │ │ └── http_client_filter.h │ │ │ │ ├── client_authority_filter.cc │ │ │ │ ├── client_authority_filter.h │ │ │ │ ├── http_filters_plugin.cc │ │ │ │ ├── message_compress │ │ │ │ │ ├── compression_filter.cc │ │ │ │ │ └── compression_filter.h │ │ │ │ └── server │ │ │ │ │ ├── http_server_filter.cc │ │ │ │ │ └── http_server_filter.h │ │ │ ├── message_size │ │ │ │ ├── message_size_filter.cc │ │ │ │ └── message_size_filter.h │ │ │ ├── rbac │ │ │ │ ├── rbac_filter.cc │ │ │ │ ├── rbac_filter.h │ │ │ │ ├── rbac_service_config_parser.cc │ │ │ │ └── rbac_service_config_parser.h │ │ │ └── stateful_session │ │ │ │ ├── stateful_session_filter.cc │ │ │ │ ├── stateful_session_filter.h │ │ │ │ ├── stateful_session_service_config_parser.cc │ │ │ │ └── stateful_session_service_config_parser.h │ │ ├── transport │ │ │ ├── chttp2 │ │ │ │ ├── alpn │ │ │ │ │ ├── alpn.cc │ │ │ │ │ └── alpn.h │ │ │ │ ├── chttp2_plugin.cc │ │ │ │ ├── client │ │ │ │ │ ├── chttp2_connector.cc │ │ │ │ │ └── chttp2_connector.h │ │ │ │ ├── server │ │ │ │ │ ├── chttp2_server.cc │ │ │ │ │ └── chttp2_server.h │ │ │ │ └── transport │ │ │ │ │ ├── bin_decoder.cc │ │ │ │ │ ├── bin_decoder.h │ │ │ │ │ ├── bin_encoder.cc │ │ │ │ │ ├── bin_encoder.h │ │ │ │ │ ├── call_tracer_wrapper.cc │ │ │ │ │ ├── call_tracer_wrapper.h │ │ │ │ │ ├── chttp2_transport.cc │ │ │ │ │ ├── chttp2_transport.h │ │ │ │ │ ├── decode_huff.cc │ │ │ │ │ ├── decode_huff.h │ │ │ │ │ ├── flow_control.cc │ │ │ │ │ ├── flow_control.h │ │ │ │ │ ├── flow_control_manager.h │ │ │ │ │ ├── frame.cc │ │ │ │ │ ├── frame.h │ │ │ │ │ ├── frame_data.cc │ │ │ │ │ ├── frame_data.h │ │ │ │ │ ├── frame_goaway.cc │ │ │ │ │ ├── frame_goaway.h │ │ │ │ │ ├── frame_ping.cc │ │ │ │ │ ├── frame_ping.h │ │ │ │ │ ├── frame_rst_stream.cc │ │ │ │ │ ├── frame_rst_stream.h │ │ │ │ │ ├── frame_security.cc │ │ │ │ │ ├── frame_security.h │ │ │ │ │ ├── frame_settings.cc │ │ │ │ │ ├── frame_settings.h │ │ │ │ │ ├── frame_window_update.cc │ │ │ │ │ ├── frame_window_update.h │ │ │ │ │ ├── header_assembler.h │ │ │ │ │ ├── hpack_constants.h │ │ │ │ │ ├── hpack_encoder.cc │ │ │ │ │ ├── hpack_encoder.h │ │ │ │ │ ├── hpack_encoder_table.cc │ │ │ │ │ ├── hpack_encoder_table.h │ │ │ │ │ ├── hpack_parse_result.cc │ │ │ │ │ ├── hpack_parse_result.h │ │ │ │ │ ├── hpack_parser.cc │ │ │ │ │ ├── hpack_parser.h │ │ │ │ │ ├── hpack_parser_table.cc │ │ │ │ │ ├── hpack_parser_table.h │ │ │ │ │ ├── http2_client_transport.cc │ │ │ │ │ ├── http2_client_transport.h │ │ │ │ │ ├── http2_settings.cc │ │ │ │ │ ├── http2_settings.h │ │ │ │ │ ├── http2_settings_manager.cc │ │ │ │ │ ├── http2_settings_manager.h │ │ │ │ │ ├── http2_settings_promises.h │ │ │ │ │ ├── http2_stats_collector.cc │ │ │ │ │ ├── http2_stats_collector.h │ │ │ │ │ ├── http2_status.h │ │ │ │ │ ├── http2_transport.cc │ │ │ │ │ ├── http2_transport.h │ │ │ │ │ ├── http2_ztrace_collector.h │ │ │ │ │ ├── huffsyms.cc │ │ │ │ │ ├── huffsyms.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── internal_channel_arg_names.h │ │ │ │ │ ├── keepalive.cc │ │ │ │ │ ├── keepalive.h │ │ │ │ │ ├── legacy_frame.h │ │ │ │ │ ├── message_assembler.h │ │ │ │ │ ├── parsing.cc │ │ │ │ │ ├── ping_abuse_policy.cc │ │ │ │ │ ├── ping_abuse_policy.h │ │ │ │ │ ├── ping_callbacks.cc │ │ │ │ │ ├── ping_callbacks.h │ │ │ │ │ ├── ping_promise.cc │ │ │ │ │ ├── ping_promise.h │ │ │ │ │ ├── ping_rate_policy.cc │ │ │ │ │ ├── ping_rate_policy.h │ │ │ │ │ ├── stream.h │ │ │ │ │ ├── stream_data_queue.h │ │ │ │ │ ├── stream_lists.cc │ │ │ │ │ ├── stream_lists.h │ │ │ │ │ ├── transport_common.cc │ │ │ │ │ ├── transport_common.h │ │ │ │ │ ├── varint.cc │ │ │ │ │ ├── varint.h │ │ │ │ │ ├── writable_streams.h │ │ │ │ │ ├── write_size_policy.cc │ │ │ │ │ ├── write_size_policy.h │ │ │ │ │ └── writing.cc │ │ │ └── inproc │ │ │ │ ├── inproc_transport.cc │ │ │ │ ├── inproc_transport.h │ │ │ │ ├── legacy_inproc_transport.cc │ │ │ │ └── legacy_inproc_transport.h │ │ ├── upb-gen │ │ │ ├── envoy │ │ │ │ ├── admin │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── certs.upb.h │ │ │ │ │ │ ├── certs.upb_minitable.c │ │ │ │ │ │ ├── certs.upb_minitable.h │ │ │ │ │ │ ├── clusters.upb.h │ │ │ │ │ │ ├── clusters.upb_minitable.c │ │ │ │ │ │ ├── clusters.upb_minitable.h │ │ │ │ │ │ ├── config_dump.upb.h │ │ │ │ │ │ ├── config_dump.upb_minitable.c │ │ │ │ │ │ ├── config_dump.upb_minitable.h │ │ │ │ │ │ ├── config_dump_shared.upb.h │ │ │ │ │ │ ├── config_dump_shared.upb_minitable.c │ │ │ │ │ │ ├── config_dump_shared.upb_minitable.h │ │ │ │ │ │ ├── init_dump.upb.h │ │ │ │ │ │ ├── init_dump.upb_minitable.c │ │ │ │ │ │ ├── init_dump.upb_minitable.h │ │ │ │ │ │ ├── listeners.upb.h │ │ │ │ │ │ ├── listeners.upb_minitable.c │ │ │ │ │ │ ├── listeners.upb_minitable.h │ │ │ │ │ │ ├── memory.upb.h │ │ │ │ │ │ ├── memory.upb_minitable.c │ │ │ │ │ │ ├── memory.upb_minitable.h │ │ │ │ │ │ ├── metrics.upb.h │ │ │ │ │ │ ├── metrics.upb_minitable.c │ │ │ │ │ │ ├── metrics.upb_minitable.h │ │ │ │ │ │ ├── mutex_stats.upb.h │ │ │ │ │ │ ├── mutex_stats.upb_minitable.c │ │ │ │ │ │ ├── mutex_stats.upb_minitable.h │ │ │ │ │ │ ├── server_info.upb.h │ │ │ │ │ │ ├── server_info.upb_minitable.c │ │ │ │ │ │ ├── server_info.upb_minitable.h │ │ │ │ │ │ ├── tap.upb.h │ │ │ │ │ │ ├── tap.upb_minitable.c │ │ │ │ │ │ └── tap.upb_minitable.h │ │ │ │ ├── annotations │ │ │ │ │ ├── deprecation.upb.h │ │ │ │ │ ├── deprecation.upb_minitable.c │ │ │ │ │ ├── deprecation.upb_minitable.h │ │ │ │ │ ├── resource.upb.h │ │ │ │ │ ├── resource.upb_minitable.c │ │ │ │ │ └── resource.upb_minitable.h │ │ │ │ ├── config │ │ │ │ │ ├── accesslog │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── accesslog.upb.h │ │ │ │ │ │ │ ├── accesslog.upb_minitable.c │ │ │ │ │ │ │ └── accesslog.upb_minitable.h │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── bootstrap.upb.h │ │ │ │ │ │ │ ├── bootstrap.upb_minitable.c │ │ │ │ │ │ │ └── bootstrap.upb_minitable.h │ │ │ │ │ ├── cluster │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── circuit_breaker.upb.h │ │ │ │ │ │ │ ├── circuit_breaker.upb_minitable.c │ │ │ │ │ │ │ ├── circuit_breaker.upb_minitable.h │ │ │ │ │ │ │ ├── cluster.upb.h │ │ │ │ │ │ │ ├── cluster.upb_minitable.c │ │ │ │ │ │ │ ├── cluster.upb_minitable.h │ │ │ │ │ │ │ ├── filter.upb.h │ │ │ │ │ │ │ ├── filter.upb_minitable.c │ │ │ │ │ │ │ ├── filter.upb_minitable.h │ │ │ │ │ │ │ ├── outlier_detection.upb.h │ │ │ │ │ │ │ ├── outlier_detection.upb_minitable.c │ │ │ │ │ │ │ └── outlier_detection.upb_minitable.h │ │ │ │ │ ├── common │ │ │ │ │ │ └── matcher │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── matcher.upb.h │ │ │ │ │ │ │ ├── matcher.upb_minitable.c │ │ │ │ │ │ │ └── matcher.upb_minitable.h │ │ │ │ │ ├── core │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── address.upb.h │ │ │ │ │ │ │ ├── address.upb_minitable.c │ │ │ │ │ │ │ ├── address.upb_minitable.h │ │ │ │ │ │ │ ├── backoff.upb.h │ │ │ │ │ │ │ ├── backoff.upb_minitable.c │ │ │ │ │ │ │ ├── backoff.upb_minitable.h │ │ │ │ │ │ │ ├── base.upb.h │ │ │ │ │ │ │ ├── base.upb_minitable.c │ │ │ │ │ │ │ ├── base.upb_minitable.h │ │ │ │ │ │ │ ├── config_source.upb.h │ │ │ │ │ │ │ ├── config_source.upb_minitable.c │ │ │ │ │ │ │ ├── config_source.upb_minitable.h │ │ │ │ │ │ │ ├── event_service_config.upb.h │ │ │ │ │ │ │ ├── event_service_config.upb_minitable.c │ │ │ │ │ │ │ ├── event_service_config.upb_minitable.h │ │ │ │ │ │ │ ├── extension.upb.h │ │ │ │ │ │ │ ├── extension.upb_minitable.c │ │ │ │ │ │ │ ├── extension.upb_minitable.h │ │ │ │ │ │ │ ├── grpc_method_list.upb.h │ │ │ │ │ │ │ ├── grpc_method_list.upb_minitable.c │ │ │ │ │ │ │ ├── grpc_method_list.upb_minitable.h │ │ │ │ │ │ │ ├── grpc_service.upb.h │ │ │ │ │ │ │ ├── grpc_service.upb_minitable.c │ │ │ │ │ │ │ ├── grpc_service.upb_minitable.h │ │ │ │ │ │ │ ├── health_check.upb.h │ │ │ │ │ │ │ ├── health_check.upb_minitable.c │ │ │ │ │ │ │ ├── health_check.upb_minitable.h │ │ │ │ │ │ │ ├── http_service.upb.h │ │ │ │ │ │ │ ├── http_service.upb_minitable.c │ │ │ │ │ │ │ ├── http_service.upb_minitable.h │ │ │ │ │ │ │ ├── http_uri.upb.h │ │ │ │ │ │ │ ├── http_uri.upb_minitable.c │ │ │ │ │ │ │ ├── http_uri.upb_minitable.h │ │ │ │ │ │ │ ├── protocol.upb.h │ │ │ │ │ │ │ ├── protocol.upb_minitable.c │ │ │ │ │ │ │ ├── protocol.upb_minitable.h │ │ │ │ │ │ │ ├── proxy_protocol.upb.h │ │ │ │ │ │ │ ├── proxy_protocol.upb_minitable.c │ │ │ │ │ │ │ ├── proxy_protocol.upb_minitable.h │ │ │ │ │ │ │ ├── resolver.upb.h │ │ │ │ │ │ │ ├── resolver.upb_minitable.c │ │ │ │ │ │ │ ├── resolver.upb_minitable.h │ │ │ │ │ │ │ ├── socket_cmsg_headers.upb.h │ │ │ │ │ │ │ ├── socket_cmsg_headers.upb_minitable.c │ │ │ │ │ │ │ ├── socket_cmsg_headers.upb_minitable.h │ │ │ │ │ │ │ ├── socket_option.upb.h │ │ │ │ │ │ │ ├── socket_option.upb_minitable.c │ │ │ │ │ │ │ ├── socket_option.upb_minitable.h │ │ │ │ │ │ │ ├── substitution_format_string.upb.h │ │ │ │ │ │ │ ├── substitution_format_string.upb_minitable.c │ │ │ │ │ │ │ ├── substitution_format_string.upb_minitable.h │ │ │ │ │ │ │ ├── udp_socket_config.upb.h │ │ │ │ │ │ │ ├── udp_socket_config.upb_minitable.c │ │ │ │ │ │ │ └── udp_socket_config.upb_minitable.h │ │ │ │ │ ├── endpoint │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── endpoint.upb.h │ │ │ │ │ │ │ ├── endpoint.upb_minitable.c │ │ │ │ │ │ │ ├── endpoint.upb_minitable.h │ │ │ │ │ │ │ ├── endpoint_components.upb.h │ │ │ │ │ │ │ ├── endpoint_components.upb_minitable.c │ │ │ │ │ │ │ ├── endpoint_components.upb_minitable.h │ │ │ │ │ │ │ ├── load_report.upb.h │ │ │ │ │ │ │ ├── load_report.upb_minitable.c │ │ │ │ │ │ │ └── load_report.upb_minitable.h │ │ │ │ │ ├── listener │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── api_listener.upb.h │ │ │ │ │ │ │ ├── api_listener.upb_minitable.c │ │ │ │ │ │ │ ├── api_listener.upb_minitable.h │ │ │ │ │ │ │ ├── listener.upb.h │ │ │ │ │ │ │ ├── listener.upb_minitable.c │ │ │ │ │ │ │ ├── listener.upb_minitable.h │ │ │ │ │ │ │ ├── listener_components.upb.h │ │ │ │ │ │ │ ├── listener_components.upb_minitable.c │ │ │ │ │ │ │ ├── listener_components.upb_minitable.h │ │ │ │ │ │ │ ├── quic_config.upb.h │ │ │ │ │ │ │ ├── quic_config.upb_minitable.c │ │ │ │ │ │ │ ├── quic_config.upb_minitable.h │ │ │ │ │ │ │ ├── udp_listener_config.upb.h │ │ │ │ │ │ │ ├── udp_listener_config.upb_minitable.c │ │ │ │ │ │ │ └── udp_listener_config.upb_minitable.h │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── metrics_service.upb.h │ │ │ │ │ │ │ ├── metrics_service.upb_minitable.c │ │ │ │ │ │ │ ├── metrics_service.upb_minitable.h │ │ │ │ │ │ │ ├── stats.upb.h │ │ │ │ │ │ │ ├── stats.upb_minitable.c │ │ │ │ │ │ │ └── stats.upb_minitable.h │ │ │ │ │ ├── overload │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── overload.upb.h │ │ │ │ │ │ │ ├── overload.upb_minitable.c │ │ │ │ │ │ │ └── overload.upb_minitable.h │ │ │ │ │ ├── rbac │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── rbac.upb.h │ │ │ │ │ │ │ ├── rbac.upb_minitable.c │ │ │ │ │ │ │ └── rbac.upb_minitable.h │ │ │ │ │ ├── route │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── route.upb.h │ │ │ │ │ │ │ ├── route.upb_minitable.c │ │ │ │ │ │ │ ├── route.upb_minitable.h │ │ │ │ │ │ │ ├── route_components.upb.h │ │ │ │ │ │ │ ├── route_components.upb_minitable.c │ │ │ │ │ │ │ ├── route_components.upb_minitable.h │ │ │ │ │ │ │ ├── scoped_route.upb.h │ │ │ │ │ │ │ ├── scoped_route.upb_minitable.c │ │ │ │ │ │ │ └── scoped_route.upb_minitable.h │ │ │ │ │ ├── tap │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── common.upb.h │ │ │ │ │ │ │ ├── common.upb_minitable.c │ │ │ │ │ │ │ └── common.upb_minitable.h │ │ │ │ │ └── trace │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── datadog.upb.h │ │ │ │ │ │ ├── datadog.upb_minitable.c │ │ │ │ │ │ ├── datadog.upb_minitable.h │ │ │ │ │ │ ├── dynamic_ot.upb.h │ │ │ │ │ │ ├── dynamic_ot.upb_minitable.c │ │ │ │ │ │ ├── dynamic_ot.upb_minitable.h │ │ │ │ │ │ ├── http_tracer.upb.h │ │ │ │ │ │ ├── http_tracer.upb_minitable.c │ │ │ │ │ │ ├── http_tracer.upb_minitable.h │ │ │ │ │ │ ├── lightstep.upb.h │ │ │ │ │ │ ├── lightstep.upb_minitable.c │ │ │ │ │ │ ├── lightstep.upb_minitable.h │ │ │ │ │ │ ├── opentelemetry.upb.h │ │ │ │ │ │ ├── opentelemetry.upb_minitable.c │ │ │ │ │ │ ├── opentelemetry.upb_minitable.h │ │ │ │ │ │ ├── service.upb.h │ │ │ │ │ │ ├── service.upb_minitable.c │ │ │ │ │ │ ├── service.upb_minitable.h │ │ │ │ │ │ ├── skywalking.upb.h │ │ │ │ │ │ ├── skywalking.upb_minitable.c │ │ │ │ │ │ ├── skywalking.upb_minitable.h │ │ │ │ │ │ ├── trace.upb.h │ │ │ │ │ │ ├── trace.upb_minitable.c │ │ │ │ │ │ ├── trace.upb_minitable.h │ │ │ │ │ │ ├── xray.upb.h │ │ │ │ │ │ ├── xray.upb_minitable.c │ │ │ │ │ │ ├── xray.upb_minitable.h │ │ │ │ │ │ ├── zipkin.upb.h │ │ │ │ │ │ ├── zipkin.upb_minitable.c │ │ │ │ │ │ └── zipkin.upb_minitable.h │ │ │ │ ├── data │ │ │ │ │ └── accesslog │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── accesslog.upb.h │ │ │ │ │ │ ├── accesslog.upb_minitable.c │ │ │ │ │ │ └── accesslog.upb_minitable.h │ │ │ │ ├── extensions │ │ │ │ │ ├── clusters │ │ │ │ │ │ └── aggregate │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── cluster.upb.h │ │ │ │ │ │ │ ├── cluster.upb_minitable.c │ │ │ │ │ │ │ └── cluster.upb_minitable.h │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── fault │ │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── fault.upb.h │ │ │ │ │ │ │ │ ├── fault.upb_minitable.c │ │ │ │ │ │ │ │ └── fault.upb_minitable.h │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── fault │ │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ │ ├── fault.upb.h │ │ │ │ │ │ │ │ │ ├── fault.upb_minitable.c │ │ │ │ │ │ │ │ │ └── fault.upb_minitable.h │ │ │ │ │ │ │ ├── gcp_authn │ │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ │ ├── gcp_authn.upb.h │ │ │ │ │ │ │ │ │ ├── gcp_authn.upb_minitable.c │ │ │ │ │ │ │ │ │ └── gcp_authn.upb_minitable.h │ │ │ │ │ │ │ ├── rbac │ │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ │ ├── rbac.upb.h │ │ │ │ │ │ │ │ │ ├── rbac.upb_minitable.c │ │ │ │ │ │ │ │ │ └── rbac.upb_minitable.h │ │ │ │ │ │ │ ├── router │ │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ │ ├── router.upb.h │ │ │ │ │ │ │ │ │ ├── router.upb_minitable.c │ │ │ │ │ │ │ │ │ └── router.upb_minitable.h │ │ │ │ │ │ │ └── stateful_session │ │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── stateful_session.upb.h │ │ │ │ │ │ │ │ ├── stateful_session.upb_minitable.c │ │ │ │ │ │ │ │ └── stateful_session.upb_minitable.h │ │ │ │ │ │ └── network │ │ │ │ │ │ │ └── http_connection_manager │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── http_connection_manager.upb.h │ │ │ │ │ │ │ ├── http_connection_manager.upb_minitable.c │ │ │ │ │ │ │ └── http_connection_manager.upb_minitable.h │ │ │ │ │ ├── http │ │ │ │ │ │ └── stateful_session │ │ │ │ │ │ │ └── cookie │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── cookie.upb.h │ │ │ │ │ │ │ ├── cookie.upb_minitable.c │ │ │ │ │ │ │ └── cookie.upb_minitable.h │ │ │ │ │ ├── load_balancing_policies │ │ │ │ │ │ ├── client_side_weighted_round_robin │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── client_side_weighted_round_robin.upb.h │ │ │ │ │ │ │ │ ├── client_side_weighted_round_robin.upb_minitable.c │ │ │ │ │ │ │ │ └── client_side_weighted_round_robin.upb_minitable.h │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── common.upb.h │ │ │ │ │ │ │ │ ├── common.upb_minitable.c │ │ │ │ │ │ │ │ └── common.upb_minitable.h │ │ │ │ │ │ ├── pick_first │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── pick_first.upb.h │ │ │ │ │ │ │ │ ├── pick_first.upb_minitable.c │ │ │ │ │ │ │ │ └── pick_first.upb_minitable.h │ │ │ │ │ │ ├── ring_hash │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── ring_hash.upb.h │ │ │ │ │ │ │ │ ├── ring_hash.upb_minitable.c │ │ │ │ │ │ │ │ └── ring_hash.upb_minitable.h │ │ │ │ │ │ └── wrr_locality │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── wrr_locality.upb.h │ │ │ │ │ │ │ ├── wrr_locality.upb_minitable.c │ │ │ │ │ │ │ └── wrr_locality.upb_minitable.h │ │ │ │ │ ├── transport_sockets │ │ │ │ │ │ ├── http_11_proxy │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── upstream_http_11_connect.upb.h │ │ │ │ │ │ │ │ ├── upstream_http_11_connect.upb_minitable.c │ │ │ │ │ │ │ │ └── upstream_http_11_connect.upb_minitable.h │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── cert.upb.h │ │ │ │ │ │ │ ├── cert.upb_minitable.c │ │ │ │ │ │ │ ├── cert.upb_minitable.h │ │ │ │ │ │ │ ├── common.upb.h │ │ │ │ │ │ │ ├── common.upb_minitable.c │ │ │ │ │ │ │ ├── common.upb_minitable.h │ │ │ │ │ │ │ ├── secret.upb.h │ │ │ │ │ │ │ ├── secret.upb_minitable.c │ │ │ │ │ │ │ ├── secret.upb_minitable.h │ │ │ │ │ │ │ ├── tls.upb.h │ │ │ │ │ │ │ ├── tls.upb_minitable.c │ │ │ │ │ │ │ ├── tls.upb_minitable.h │ │ │ │ │ │ │ ├── tls_spiffe_validator_config.upb.h │ │ │ │ │ │ │ ├── tls_spiffe_validator_config.upb_minitable.c │ │ │ │ │ │ │ └── tls_spiffe_validator_config.upb_minitable.h │ │ │ │ │ └── upstreams │ │ │ │ │ │ └── http │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── http_protocol_options.upb.h │ │ │ │ │ │ ├── http_protocol_options.upb_minitable.c │ │ │ │ │ │ └── http_protocol_options.upb_minitable.h │ │ │ │ ├── service │ │ │ │ │ ├── discovery │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── ads.upb.h │ │ │ │ │ │ │ ├── ads.upb_minitable.c │ │ │ │ │ │ │ ├── ads.upb_minitable.h │ │ │ │ │ │ │ ├── discovery.upb.h │ │ │ │ │ │ │ ├── discovery.upb_minitable.c │ │ │ │ │ │ │ └── discovery.upb_minitable.h │ │ │ │ │ ├── load_stats │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── lrs.upb.h │ │ │ │ │ │ │ ├── lrs.upb_minitable.c │ │ │ │ │ │ │ └── lrs.upb_minitable.h │ │ │ │ │ └── status │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── csds.upb.h │ │ │ │ │ │ ├── csds.upb_minitable.c │ │ │ │ │ │ └── csds.upb_minitable.h │ │ │ │ └── type │ │ │ │ │ ├── http │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── cookie.upb.h │ │ │ │ │ │ ├── cookie.upb_minitable.c │ │ │ │ │ │ ├── cookie.upb_minitable.h │ │ │ │ │ │ ├── path_transformation.upb.h │ │ │ │ │ │ ├── path_transformation.upb_minitable.c │ │ │ │ │ │ └── path_transformation.upb_minitable.h │ │ │ │ │ ├── matcher │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── address.upb.h │ │ │ │ │ │ ├── address.upb_minitable.c │ │ │ │ │ │ ├── address.upb_minitable.h │ │ │ │ │ │ ├── filter_state.upb.h │ │ │ │ │ │ ├── filter_state.upb_minitable.c │ │ │ │ │ │ ├── filter_state.upb_minitable.h │ │ │ │ │ │ ├── http_inputs.upb.h │ │ │ │ │ │ ├── http_inputs.upb_minitable.c │ │ │ │ │ │ ├── http_inputs.upb_minitable.h │ │ │ │ │ │ ├── metadata.upb.h │ │ │ │ │ │ ├── metadata.upb_minitable.c │ │ │ │ │ │ ├── metadata.upb_minitable.h │ │ │ │ │ │ ├── node.upb.h │ │ │ │ │ │ ├── node.upb_minitable.c │ │ │ │ │ │ ├── node.upb_minitable.h │ │ │ │ │ │ ├── number.upb.h │ │ │ │ │ │ ├── number.upb_minitable.c │ │ │ │ │ │ ├── number.upb_minitable.h │ │ │ │ │ │ ├── path.upb.h │ │ │ │ │ │ ├── path.upb_minitable.c │ │ │ │ │ │ ├── path.upb_minitable.h │ │ │ │ │ │ ├── regex.upb.h │ │ │ │ │ │ ├── regex.upb_minitable.c │ │ │ │ │ │ ├── regex.upb_minitable.h │ │ │ │ │ │ ├── status_code_input.upb.h │ │ │ │ │ │ ├── status_code_input.upb_minitable.c │ │ │ │ │ │ ├── status_code_input.upb_minitable.h │ │ │ │ │ │ ├── string.upb.h │ │ │ │ │ │ ├── string.upb_minitable.c │ │ │ │ │ │ ├── string.upb_minitable.h │ │ │ │ │ │ ├── struct.upb.h │ │ │ │ │ │ ├── struct.upb_minitable.c │ │ │ │ │ │ ├── struct.upb_minitable.h │ │ │ │ │ │ ├── value.upb.h │ │ │ │ │ │ ├── value.upb_minitable.c │ │ │ │ │ │ └── value.upb_minitable.h │ │ │ │ │ ├── metadata │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── metadata.upb.h │ │ │ │ │ │ ├── metadata.upb_minitable.c │ │ │ │ │ │ └── metadata.upb_minitable.h │ │ │ │ │ ├── tracing │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── custom_tag.upb.h │ │ │ │ │ │ ├── custom_tag.upb_minitable.c │ │ │ │ │ │ └── custom_tag.upb_minitable.h │ │ │ │ │ └── v3 │ │ │ │ │ ├── hash_policy.upb.h │ │ │ │ │ ├── hash_policy.upb_minitable.c │ │ │ │ │ ├── hash_policy.upb_minitable.h │ │ │ │ │ ├── http.upb.h │ │ │ │ │ ├── http.upb_minitable.c │ │ │ │ │ ├── http.upb_minitable.h │ │ │ │ │ ├── http_status.upb.h │ │ │ │ │ ├── http_status.upb_minitable.c │ │ │ │ │ ├── http_status.upb_minitable.h │ │ │ │ │ ├── percent.upb.h │ │ │ │ │ ├── percent.upb_minitable.c │ │ │ │ │ ├── percent.upb_minitable.h │ │ │ │ │ ├── range.upb.h │ │ │ │ │ ├── range.upb_minitable.c │ │ │ │ │ ├── range.upb_minitable.h │ │ │ │ │ ├── ratelimit_strategy.upb.h │ │ │ │ │ ├── ratelimit_strategy.upb_minitable.c │ │ │ │ │ ├── ratelimit_strategy.upb_minitable.h │ │ │ │ │ ├── ratelimit_unit.upb.h │ │ │ │ │ ├── ratelimit_unit.upb_minitable.c │ │ │ │ │ ├── ratelimit_unit.upb_minitable.h │ │ │ │ │ ├── semantic_version.upb.h │ │ │ │ │ ├── semantic_version.upb_minitable.c │ │ │ │ │ ├── semantic_version.upb_minitable.h │ │ │ │ │ ├── token_bucket.upb.h │ │ │ │ │ ├── token_bucket.upb_minitable.c │ │ │ │ │ └── token_bucket.upb_minitable.h │ │ │ ├── google │ │ │ │ ├── api │ │ │ │ │ ├── annotations.upb.h │ │ │ │ │ ├── annotations.upb_minitable.c │ │ │ │ │ ├── annotations.upb_minitable.h │ │ │ │ │ ├── expr │ │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ │ ├── checked.upb.h │ │ │ │ │ │ │ ├── checked.upb_minitable.c │ │ │ │ │ │ │ ├── checked.upb_minitable.h │ │ │ │ │ │ │ ├── syntax.upb.h │ │ │ │ │ │ │ ├── syntax.upb_minitable.c │ │ │ │ │ │ │ └── syntax.upb_minitable.h │ │ │ │ │ ├── http.upb.h │ │ │ │ │ ├── http.upb_minitable.c │ │ │ │ │ ├── http.upb_minitable.h │ │ │ │ │ ├── httpbody.upb.h │ │ │ │ │ ├── httpbody.upb_minitable.c │ │ │ │ │ └── httpbody.upb_minitable.h │ │ │ │ ├── protobuf │ │ │ │ │ ├── any.upb.h │ │ │ │ │ ├── any.upb_minitable.c │ │ │ │ │ ├── any.upb_minitable.h │ │ │ │ │ ├── descriptor.upb.h │ │ │ │ │ ├── descriptor.upb_minitable.c │ │ │ │ │ ├── descriptor.upb_minitable.h │ │ │ │ │ ├── duration.upb.h │ │ │ │ │ ├── duration.upb_minitable.c │ │ │ │ │ ├── duration.upb_minitable.h │ │ │ │ │ ├── empty.upb.h │ │ │ │ │ ├── empty.upb_minitable.c │ │ │ │ │ ├── empty.upb_minitable.h │ │ │ │ │ ├── struct.upb.h │ │ │ │ │ ├── struct.upb_minitable.c │ │ │ │ │ ├── struct.upb_minitable.h │ │ │ │ │ ├── timestamp.upb.h │ │ │ │ │ ├── timestamp.upb_minitable.c │ │ │ │ │ ├── timestamp.upb_minitable.h │ │ │ │ │ ├── wrappers.upb.h │ │ │ │ │ ├── wrappers.upb_minitable.c │ │ │ │ │ └── wrappers.upb_minitable.h │ │ │ │ └── rpc │ │ │ │ │ ├── status.upb.h │ │ │ │ │ ├── status.upb_minitable.c │ │ │ │ │ └── status.upb_minitable.h │ │ │ ├── src │ │ │ │ └── proto │ │ │ │ │ └── grpc │ │ │ │ │ ├── channelz │ │ │ │ │ ├── channelz.upb.h │ │ │ │ │ ├── channelz.upb_minitable.c │ │ │ │ │ ├── channelz.upb_minitable.h │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── channelz.upb.h │ │ │ │ │ │ ├── channelz.upb_minitable.c │ │ │ │ │ │ ├── channelz.upb_minitable.h │ │ │ │ │ │ ├── promise.upb.h │ │ │ │ │ │ ├── promise.upb_minitable.c │ │ │ │ │ │ ├── promise.upb_minitable.h │ │ │ │ │ │ ├── property_list.upb.h │ │ │ │ │ │ ├── property_list.upb_minitable.c │ │ │ │ │ │ ├── property_list.upb_minitable.h │ │ │ │ │ │ ├── service.upb.h │ │ │ │ │ │ ├── service.upb_minitable.c │ │ │ │ │ │ └── service.upb_minitable.h │ │ │ │ │ ├── gcp │ │ │ │ │ ├── altscontext.upb.h │ │ │ │ │ ├── altscontext.upb_minitable.c │ │ │ │ │ ├── altscontext.upb_minitable.h │ │ │ │ │ ├── handshaker.upb.h │ │ │ │ │ ├── handshaker.upb_minitable.c │ │ │ │ │ ├── handshaker.upb_minitable.h │ │ │ │ │ ├── transport_security_common.upb.h │ │ │ │ │ ├── transport_security_common.upb_minitable.c │ │ │ │ │ └── transport_security_common.upb_minitable.h │ │ │ │ │ ├── health │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── health.upb.h │ │ │ │ │ │ ├── health.upb_minitable.c │ │ │ │ │ │ └── health.upb_minitable.h │ │ │ │ │ ├── lb │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── load_balancer.upb.h │ │ │ │ │ │ ├── load_balancer.upb_minitable.c │ │ │ │ │ │ └── load_balancer.upb_minitable.h │ │ │ │ │ └── lookup │ │ │ │ │ └── v1 │ │ │ │ │ ├── rls.upb.h │ │ │ │ │ ├── rls.upb_minitable.c │ │ │ │ │ ├── rls.upb_minitable.h │ │ │ │ │ ├── rls_config.upb.h │ │ │ │ │ ├── rls_config.upb_minitable.c │ │ │ │ │ └── rls_config.upb_minitable.h │ │ │ ├── udpa │ │ │ │ └── annotations │ │ │ │ │ ├── migrate.upb.h │ │ │ │ │ ├── migrate.upb_minitable.c │ │ │ │ │ ├── migrate.upb_minitable.h │ │ │ │ │ ├── security.upb.h │ │ │ │ │ ├── security.upb_minitable.c │ │ │ │ │ ├── security.upb_minitable.h │ │ │ │ │ ├── sensitive.upb.h │ │ │ │ │ ├── sensitive.upb_minitable.c │ │ │ │ │ ├── sensitive.upb_minitable.h │ │ │ │ │ ├── status.upb.h │ │ │ │ │ ├── status.upb_minitable.c │ │ │ │ │ ├── status.upb_minitable.h │ │ │ │ │ ├── versioning.upb.h │ │ │ │ │ ├── versioning.upb_minitable.c │ │ │ │ │ └── versioning.upb_minitable.h │ │ │ ├── validate │ │ │ │ ├── validate.upb.h │ │ │ │ ├── validate.upb_minitable.c │ │ │ │ └── validate.upb_minitable.h │ │ │ └── xds │ │ │ │ ├── annotations │ │ │ │ └── v3 │ │ │ │ │ ├── migrate.upb.h │ │ │ │ │ ├── migrate.upb_minitable.c │ │ │ │ │ ├── migrate.upb_minitable.h │ │ │ │ │ ├── security.upb.h │ │ │ │ │ ├── security.upb_minitable.c │ │ │ │ │ ├── security.upb_minitable.h │ │ │ │ │ ├── sensitive.upb.h │ │ │ │ │ ├── sensitive.upb_minitable.c │ │ │ │ │ ├── sensitive.upb_minitable.h │ │ │ │ │ ├── status.upb.h │ │ │ │ │ ├── status.upb_minitable.c │ │ │ │ │ ├── status.upb_minitable.h │ │ │ │ │ ├── versioning.upb.h │ │ │ │ │ ├── versioning.upb_minitable.c │ │ │ │ │ └── versioning.upb_minitable.h │ │ │ │ ├── core │ │ │ │ └── v3 │ │ │ │ │ ├── authority.upb.h │ │ │ │ │ ├── authority.upb_minitable.c │ │ │ │ │ ├── authority.upb_minitable.h │ │ │ │ │ ├── cidr.upb.h │ │ │ │ │ ├── cidr.upb_minitable.c │ │ │ │ │ ├── cidr.upb_minitable.h │ │ │ │ │ ├── collection_entry.upb.h │ │ │ │ │ ├── collection_entry.upb_minitable.c │ │ │ │ │ ├── collection_entry.upb_minitable.h │ │ │ │ │ ├── context_params.upb.h │ │ │ │ │ ├── context_params.upb_minitable.c │ │ │ │ │ ├── context_params.upb_minitable.h │ │ │ │ │ ├── extension.upb.h │ │ │ │ │ ├── extension.upb_minitable.c │ │ │ │ │ ├── extension.upb_minitable.h │ │ │ │ │ ├── resource.upb.h │ │ │ │ │ ├── resource.upb_minitable.c │ │ │ │ │ ├── resource.upb_minitable.h │ │ │ │ │ ├── resource_locator.upb.h │ │ │ │ │ ├── resource_locator.upb_minitable.c │ │ │ │ │ ├── resource_locator.upb_minitable.h │ │ │ │ │ ├── resource_name.upb.h │ │ │ │ │ ├── resource_name.upb_minitable.c │ │ │ │ │ └── resource_name.upb_minitable.h │ │ │ │ ├── data │ │ │ │ └── orca │ │ │ │ │ └── v3 │ │ │ │ │ ├── orca_load_report.upb.h │ │ │ │ │ ├── orca_load_report.upb_minitable.c │ │ │ │ │ └── orca_load_report.upb_minitable.h │ │ │ │ ├── service │ │ │ │ └── orca │ │ │ │ │ └── v3 │ │ │ │ │ ├── orca.upb.h │ │ │ │ │ ├── orca.upb_minitable.c │ │ │ │ │ └── orca.upb_minitable.h │ │ │ │ └── type │ │ │ │ ├── matcher │ │ │ │ └── v3 │ │ │ │ │ ├── cel.upb.h │ │ │ │ │ ├── cel.upb_minitable.c │ │ │ │ │ ├── cel.upb_minitable.h │ │ │ │ │ ├── domain.upb.h │ │ │ │ │ ├── domain.upb_minitable.c │ │ │ │ │ ├── domain.upb_minitable.h │ │ │ │ │ ├── http_inputs.upb.h │ │ │ │ │ ├── http_inputs.upb_minitable.c │ │ │ │ │ ├── http_inputs.upb_minitable.h │ │ │ │ │ ├── ip.upb.h │ │ │ │ │ ├── ip.upb_minitable.c │ │ │ │ │ ├── ip.upb_minitable.h │ │ │ │ │ ├── matcher.upb.h │ │ │ │ │ ├── matcher.upb_minitable.c │ │ │ │ │ ├── matcher.upb_minitable.h │ │ │ │ │ ├── range.upb.h │ │ │ │ │ ├── range.upb_minitable.c │ │ │ │ │ ├── range.upb_minitable.h │ │ │ │ │ ├── regex.upb.h │ │ │ │ │ ├── regex.upb_minitable.c │ │ │ │ │ ├── regex.upb_minitable.h │ │ │ │ │ ├── string.upb.h │ │ │ │ │ ├── string.upb_minitable.c │ │ │ │ │ └── string.upb_minitable.h │ │ │ │ └── v3 │ │ │ │ ├── cel.upb.h │ │ │ │ ├── cel.upb_minitable.c │ │ │ │ ├── cel.upb_minitable.h │ │ │ │ ├── range.upb.h │ │ │ │ ├── range.upb_minitable.c │ │ │ │ ├── range.upb_minitable.h │ │ │ │ ├── typed_struct.upb.h │ │ │ │ ├── typed_struct.upb_minitable.c │ │ │ │ └── typed_struct.upb_minitable.h │ │ └── upbdefs-gen │ │ │ ├── envoy │ │ │ ├── admin │ │ │ │ └── v3 │ │ │ │ │ ├── certs.upbdefs.c │ │ │ │ │ ├── certs.upbdefs.h │ │ │ │ │ ├── clusters.upbdefs.c │ │ │ │ │ ├── clusters.upbdefs.h │ │ │ │ │ ├── config_dump.upbdefs.c │ │ │ │ │ ├── config_dump.upbdefs.h │ │ │ │ │ ├── config_dump_shared.upbdefs.c │ │ │ │ │ ├── config_dump_shared.upbdefs.h │ │ │ │ │ ├── init_dump.upbdefs.c │ │ │ │ │ ├── init_dump.upbdefs.h │ │ │ │ │ ├── listeners.upbdefs.c │ │ │ │ │ ├── listeners.upbdefs.h │ │ │ │ │ ├── memory.upbdefs.c │ │ │ │ │ ├── memory.upbdefs.h │ │ │ │ │ ├── metrics.upbdefs.c │ │ │ │ │ ├── metrics.upbdefs.h │ │ │ │ │ ├── mutex_stats.upbdefs.c │ │ │ │ │ ├── mutex_stats.upbdefs.h │ │ │ │ │ ├── server_info.upbdefs.c │ │ │ │ │ ├── server_info.upbdefs.h │ │ │ │ │ ├── tap.upbdefs.c │ │ │ │ │ └── tap.upbdefs.h │ │ │ ├── annotations │ │ │ │ ├── deprecation.upbdefs.c │ │ │ │ ├── deprecation.upbdefs.h │ │ │ │ ├── resource.upbdefs.c │ │ │ │ └── resource.upbdefs.h │ │ │ ├── config │ │ │ │ ├── accesslog │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── accesslog.upbdefs.c │ │ │ │ │ │ └── accesslog.upbdefs.h │ │ │ │ ├── bootstrap │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── bootstrap.upbdefs.c │ │ │ │ │ │ └── bootstrap.upbdefs.h │ │ │ │ ├── cluster │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── circuit_breaker.upbdefs.c │ │ │ │ │ │ ├── circuit_breaker.upbdefs.h │ │ │ │ │ │ ├── cluster.upbdefs.c │ │ │ │ │ │ ├── cluster.upbdefs.h │ │ │ │ │ │ ├── filter.upbdefs.c │ │ │ │ │ │ ├── filter.upbdefs.h │ │ │ │ │ │ ├── outlier_detection.upbdefs.c │ │ │ │ │ │ └── outlier_detection.upbdefs.h │ │ │ │ ├── common │ │ │ │ │ └── matcher │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── matcher.upbdefs.c │ │ │ │ │ │ └── matcher.upbdefs.h │ │ │ │ ├── core │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── address.upbdefs.c │ │ │ │ │ │ ├── address.upbdefs.h │ │ │ │ │ │ ├── backoff.upbdefs.c │ │ │ │ │ │ ├── backoff.upbdefs.h │ │ │ │ │ │ ├── base.upbdefs.c │ │ │ │ │ │ ├── base.upbdefs.h │ │ │ │ │ │ ├── config_source.upbdefs.c │ │ │ │ │ │ ├── config_source.upbdefs.h │ │ │ │ │ │ ├── event_service_config.upbdefs.c │ │ │ │ │ │ ├── event_service_config.upbdefs.h │ │ │ │ │ │ ├── extension.upbdefs.c │ │ │ │ │ │ ├── extension.upbdefs.h │ │ │ │ │ │ ├── grpc_method_list.upbdefs.c │ │ │ │ │ │ ├── grpc_method_list.upbdefs.h │ │ │ │ │ │ ├── grpc_service.upbdefs.c │ │ │ │ │ │ ├── grpc_service.upbdefs.h │ │ │ │ │ │ ├── health_check.upbdefs.c │ │ │ │ │ │ ├── health_check.upbdefs.h │ │ │ │ │ │ ├── http_service.upbdefs.c │ │ │ │ │ │ ├── http_service.upbdefs.h │ │ │ │ │ │ ├── http_uri.upbdefs.c │ │ │ │ │ │ ├── http_uri.upbdefs.h │ │ │ │ │ │ ├── protocol.upbdefs.c │ │ │ │ │ │ ├── protocol.upbdefs.h │ │ │ │ │ │ ├── proxy_protocol.upbdefs.c │ │ │ │ │ │ ├── proxy_protocol.upbdefs.h │ │ │ │ │ │ ├── resolver.upbdefs.c │ │ │ │ │ │ ├── resolver.upbdefs.h │ │ │ │ │ │ ├── socket_cmsg_headers.upbdefs.c │ │ │ │ │ │ ├── socket_cmsg_headers.upbdefs.h │ │ │ │ │ │ ├── socket_option.upbdefs.c │ │ │ │ │ │ ├── socket_option.upbdefs.h │ │ │ │ │ │ ├── substitution_format_string.upbdefs.c │ │ │ │ │ │ ├── substitution_format_string.upbdefs.h │ │ │ │ │ │ ├── udp_socket_config.upbdefs.c │ │ │ │ │ │ └── udp_socket_config.upbdefs.h │ │ │ │ ├── endpoint │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── endpoint.upbdefs.c │ │ │ │ │ │ ├── endpoint.upbdefs.h │ │ │ │ │ │ ├── endpoint_components.upbdefs.c │ │ │ │ │ │ ├── endpoint_components.upbdefs.h │ │ │ │ │ │ ├── load_report.upbdefs.c │ │ │ │ │ │ └── load_report.upbdefs.h │ │ │ │ ├── listener │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── api_listener.upbdefs.c │ │ │ │ │ │ ├── api_listener.upbdefs.h │ │ │ │ │ │ ├── listener.upbdefs.c │ │ │ │ │ │ ├── listener.upbdefs.h │ │ │ │ │ │ ├── listener_components.upbdefs.c │ │ │ │ │ │ ├── listener_components.upbdefs.h │ │ │ │ │ │ ├── quic_config.upbdefs.c │ │ │ │ │ │ ├── quic_config.upbdefs.h │ │ │ │ │ │ ├── udp_listener_config.upbdefs.c │ │ │ │ │ │ └── udp_listener_config.upbdefs.h │ │ │ │ ├── metrics │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── metrics_service.upbdefs.c │ │ │ │ │ │ ├── metrics_service.upbdefs.h │ │ │ │ │ │ ├── stats.upbdefs.c │ │ │ │ │ │ └── stats.upbdefs.h │ │ │ │ ├── overload │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── overload.upbdefs.c │ │ │ │ │ │ └── overload.upbdefs.h │ │ │ │ ├── rbac │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── rbac.upbdefs.c │ │ │ │ │ │ └── rbac.upbdefs.h │ │ │ │ ├── route │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── route.upbdefs.c │ │ │ │ │ │ ├── route.upbdefs.h │ │ │ │ │ │ ├── route_components.upbdefs.c │ │ │ │ │ │ ├── route_components.upbdefs.h │ │ │ │ │ │ ├── scoped_route.upbdefs.c │ │ │ │ │ │ └── scoped_route.upbdefs.h │ │ │ │ ├── tap │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── common.upbdefs.c │ │ │ │ │ │ └── common.upbdefs.h │ │ │ │ └── trace │ │ │ │ │ └── v3 │ │ │ │ │ ├── datadog.upbdefs.c │ │ │ │ │ ├── datadog.upbdefs.h │ │ │ │ │ ├── dynamic_ot.upbdefs.c │ │ │ │ │ ├── dynamic_ot.upbdefs.h │ │ │ │ │ ├── http_tracer.upbdefs.c │ │ │ │ │ ├── http_tracer.upbdefs.h │ │ │ │ │ ├── lightstep.upbdefs.c │ │ │ │ │ ├── lightstep.upbdefs.h │ │ │ │ │ ├── opentelemetry.upbdefs.c │ │ │ │ │ ├── opentelemetry.upbdefs.h │ │ │ │ │ ├── service.upbdefs.c │ │ │ │ │ ├── service.upbdefs.h │ │ │ │ │ ├── skywalking.upbdefs.c │ │ │ │ │ ├── skywalking.upbdefs.h │ │ │ │ │ ├── trace.upbdefs.c │ │ │ │ │ ├── trace.upbdefs.h │ │ │ │ │ ├── xray.upbdefs.c │ │ │ │ │ ├── xray.upbdefs.h │ │ │ │ │ ├── zipkin.upbdefs.c │ │ │ │ │ └── zipkin.upbdefs.h │ │ │ ├── data │ │ │ │ └── accesslog │ │ │ │ │ └── v3 │ │ │ │ │ ├── accesslog.upbdefs.c │ │ │ │ │ └── accesslog.upbdefs.h │ │ │ ├── extensions │ │ │ │ ├── clusters │ │ │ │ │ └── aggregate │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── cluster.upbdefs.c │ │ │ │ │ │ └── cluster.upbdefs.h │ │ │ │ ├── filters │ │ │ │ │ ├── common │ │ │ │ │ │ └── fault │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── fault.upbdefs.c │ │ │ │ │ │ │ └── fault.upbdefs.h │ │ │ │ │ ├── http │ │ │ │ │ │ ├── fault │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── fault.upbdefs.c │ │ │ │ │ │ │ │ └── fault.upbdefs.h │ │ │ │ │ │ ├── gcp_authn │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── gcp_authn.upbdefs.c │ │ │ │ │ │ │ │ └── gcp_authn.upbdefs.h │ │ │ │ │ │ ├── rbac │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── rbac.upbdefs.c │ │ │ │ │ │ │ │ └── rbac.upbdefs.h │ │ │ │ │ │ ├── router │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── router.upbdefs.c │ │ │ │ │ │ │ │ └── router.upbdefs.h │ │ │ │ │ │ └── stateful_session │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── stateful_session.upbdefs.c │ │ │ │ │ │ │ └── stateful_session.upbdefs.h │ │ │ │ │ └── network │ │ │ │ │ │ └── http_connection_manager │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── http_connection_manager.upbdefs.c │ │ │ │ │ │ └── http_connection_manager.upbdefs.h │ │ │ │ ├── http │ │ │ │ │ └── stateful_session │ │ │ │ │ │ └── cookie │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── cookie.upbdefs.c │ │ │ │ │ │ └── cookie.upbdefs.h │ │ │ │ ├── transport_sockets │ │ │ │ │ ├── http_11_proxy │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ ├── upstream_http_11_connect.upbdefs.c │ │ │ │ │ │ │ └── upstream_http_11_connect.upbdefs.h │ │ │ │ │ └── tls │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── cert.upbdefs.c │ │ │ │ │ │ ├── cert.upbdefs.h │ │ │ │ │ │ ├── common.upbdefs.c │ │ │ │ │ │ ├── common.upbdefs.h │ │ │ │ │ │ ├── secret.upbdefs.c │ │ │ │ │ │ ├── secret.upbdefs.h │ │ │ │ │ │ ├── tls.upbdefs.c │ │ │ │ │ │ ├── tls.upbdefs.h │ │ │ │ │ │ ├── tls_spiffe_validator_config.upbdefs.c │ │ │ │ │ │ └── tls_spiffe_validator_config.upbdefs.h │ │ │ │ └── upstreams │ │ │ │ │ └── http │ │ │ │ │ └── v3 │ │ │ │ │ ├── http_protocol_options.upbdefs.c │ │ │ │ │ └── http_protocol_options.upbdefs.h │ │ │ ├── service │ │ │ │ ├── discovery │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── ads.upbdefs.c │ │ │ │ │ │ ├── ads.upbdefs.h │ │ │ │ │ │ ├── discovery.upbdefs.c │ │ │ │ │ │ └── discovery.upbdefs.h │ │ │ │ ├── load_stats │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── lrs.upbdefs.c │ │ │ │ │ │ └── lrs.upbdefs.h │ │ │ │ └── status │ │ │ │ │ └── v3 │ │ │ │ │ ├── csds.upbdefs.c │ │ │ │ │ └── csds.upbdefs.h │ │ │ └── type │ │ │ │ ├── http │ │ │ │ └── v3 │ │ │ │ │ ├── cookie.upbdefs.c │ │ │ │ │ ├── cookie.upbdefs.h │ │ │ │ │ ├── path_transformation.upbdefs.c │ │ │ │ │ └── path_transformation.upbdefs.h │ │ │ │ ├── matcher │ │ │ │ └── v3 │ │ │ │ │ ├── address.upbdefs.c │ │ │ │ │ ├── address.upbdefs.h │ │ │ │ │ ├── filter_state.upbdefs.c │ │ │ │ │ ├── filter_state.upbdefs.h │ │ │ │ │ ├── http_inputs.upbdefs.c │ │ │ │ │ ├── http_inputs.upbdefs.h │ │ │ │ │ ├── metadata.upbdefs.c │ │ │ │ │ ├── metadata.upbdefs.h │ │ │ │ │ ├── node.upbdefs.c │ │ │ │ │ ├── node.upbdefs.h │ │ │ │ │ ├── number.upbdefs.c │ │ │ │ │ ├── number.upbdefs.h │ │ │ │ │ ├── path.upbdefs.c │ │ │ │ │ ├── path.upbdefs.h │ │ │ │ │ ├── regex.upbdefs.c │ │ │ │ │ ├── regex.upbdefs.h │ │ │ │ │ ├── status_code_input.upbdefs.c │ │ │ │ │ ├── status_code_input.upbdefs.h │ │ │ │ │ ├── string.upbdefs.c │ │ │ │ │ ├── string.upbdefs.h │ │ │ │ │ ├── struct.upbdefs.c │ │ │ │ │ ├── struct.upbdefs.h │ │ │ │ │ ├── value.upbdefs.c │ │ │ │ │ └── value.upbdefs.h │ │ │ │ ├── metadata │ │ │ │ └── v3 │ │ │ │ │ ├── metadata.upbdefs.c │ │ │ │ │ └── metadata.upbdefs.h │ │ │ │ ├── tracing │ │ │ │ └── v3 │ │ │ │ │ ├── custom_tag.upbdefs.c │ │ │ │ │ └── custom_tag.upbdefs.h │ │ │ │ └── v3 │ │ │ │ ├── hash_policy.upbdefs.c │ │ │ │ ├── hash_policy.upbdefs.h │ │ │ │ ├── http.upbdefs.c │ │ │ │ ├── http.upbdefs.h │ │ │ │ ├── http_status.upbdefs.c │ │ │ │ ├── http_status.upbdefs.h │ │ │ │ ├── percent.upbdefs.c │ │ │ │ ├── percent.upbdefs.h │ │ │ │ ├── range.upbdefs.c │ │ │ │ ├── range.upbdefs.h │ │ │ │ ├── ratelimit_strategy.upbdefs.c │ │ │ │ ├── ratelimit_strategy.upbdefs.h │ │ │ │ ├── ratelimit_unit.upbdefs.c │ │ │ │ ├── ratelimit_unit.upbdefs.h │ │ │ │ ├── semantic_version.upbdefs.c │ │ │ │ ├── semantic_version.upbdefs.h │ │ │ │ ├── token_bucket.upbdefs.c │ │ │ │ └── token_bucket.upbdefs.h │ │ │ ├── google │ │ │ ├── api │ │ │ │ ├── annotations.upbdefs.c │ │ │ │ ├── annotations.upbdefs.h │ │ │ │ ├── expr │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ ├── checked.upbdefs.c │ │ │ │ │ │ ├── checked.upbdefs.h │ │ │ │ │ │ ├── syntax.upbdefs.c │ │ │ │ │ │ └── syntax.upbdefs.h │ │ │ │ ├── http.upbdefs.c │ │ │ │ ├── http.upbdefs.h │ │ │ │ ├── httpbody.upbdefs.c │ │ │ │ └── httpbody.upbdefs.h │ │ │ ├── protobuf │ │ │ │ ├── any.upbdefs.c │ │ │ │ ├── any.upbdefs.h │ │ │ │ ├── descriptor.upbdefs.c │ │ │ │ ├── descriptor.upbdefs.h │ │ │ │ ├── duration.upbdefs.c │ │ │ │ ├── duration.upbdefs.h │ │ │ │ ├── empty.upbdefs.c │ │ │ │ ├── empty.upbdefs.h │ │ │ │ ├── struct.upbdefs.c │ │ │ │ ├── struct.upbdefs.h │ │ │ │ ├── timestamp.upbdefs.c │ │ │ │ ├── timestamp.upbdefs.h │ │ │ │ ├── wrappers.upbdefs.c │ │ │ │ └── wrappers.upbdefs.h │ │ │ └── rpc │ │ │ │ ├── status.upbdefs.c │ │ │ │ └── status.upbdefs.h │ │ │ ├── src │ │ │ └── proto │ │ │ │ └── grpc │ │ │ │ ├── channelz │ │ │ │ ├── channelz.upbdefs.c │ │ │ │ ├── channelz.upbdefs.h │ │ │ │ └── v2 │ │ │ │ │ ├── channelz.upbdefs.c │ │ │ │ │ ├── channelz.upbdefs.h │ │ │ │ │ ├── promise.upbdefs.c │ │ │ │ │ ├── promise.upbdefs.h │ │ │ │ │ ├── property_list.upbdefs.c │ │ │ │ │ ├── property_list.upbdefs.h │ │ │ │ │ ├── service.upbdefs.c │ │ │ │ │ └── service.upbdefs.h │ │ │ │ └── lookup │ │ │ │ └── v1 │ │ │ │ ├── rls_config.upbdefs.c │ │ │ │ └── rls_config.upbdefs.h │ │ │ ├── udpa │ │ │ └── annotations │ │ │ │ ├── migrate.upbdefs.c │ │ │ │ ├── migrate.upbdefs.h │ │ │ │ ├── security.upbdefs.c │ │ │ │ ├── security.upbdefs.h │ │ │ │ ├── sensitive.upbdefs.c │ │ │ │ ├── sensitive.upbdefs.h │ │ │ │ ├── status.upbdefs.c │ │ │ │ ├── status.upbdefs.h │ │ │ │ ├── versioning.upbdefs.c │ │ │ │ └── versioning.upbdefs.h │ │ │ ├── validate │ │ │ ├── validate.upbdefs.c │ │ │ └── validate.upbdefs.h │ │ │ └── xds │ │ │ ├── annotations │ │ │ └── v3 │ │ │ │ ├── migrate.upbdefs.c │ │ │ │ ├── migrate.upbdefs.h │ │ │ │ ├── security.upbdefs.c │ │ │ │ ├── security.upbdefs.h │ │ │ │ ├── sensitive.upbdefs.c │ │ │ │ ├── sensitive.upbdefs.h │ │ │ │ ├── status.upbdefs.c │ │ │ │ ├── status.upbdefs.h │ │ │ │ ├── versioning.upbdefs.c │ │ │ │ └── versioning.upbdefs.h │ │ │ ├── core │ │ │ └── v3 │ │ │ │ ├── authority.upbdefs.c │ │ │ │ ├── authority.upbdefs.h │ │ │ │ ├── cidr.upbdefs.c │ │ │ │ ├── cidr.upbdefs.h │ │ │ │ ├── collection_entry.upbdefs.c │ │ │ │ ├── collection_entry.upbdefs.h │ │ │ │ ├── context_params.upbdefs.c │ │ │ │ ├── context_params.upbdefs.h │ │ │ │ ├── extension.upbdefs.c │ │ │ │ ├── extension.upbdefs.h │ │ │ │ ├── resource.upbdefs.c │ │ │ │ ├── resource.upbdefs.h │ │ │ │ ├── resource_locator.upbdefs.c │ │ │ │ ├── resource_locator.upbdefs.h │ │ │ │ ├── resource_name.upbdefs.c │ │ │ │ └── resource_name.upbdefs.h │ │ │ └── type │ │ │ ├── matcher │ │ │ └── v3 │ │ │ │ ├── cel.upbdefs.c │ │ │ │ ├── cel.upbdefs.h │ │ │ │ ├── domain.upbdefs.c │ │ │ │ ├── domain.upbdefs.h │ │ │ │ ├── http_inputs.upbdefs.c │ │ │ │ ├── http_inputs.upbdefs.h │ │ │ │ ├── ip.upbdefs.c │ │ │ │ ├── ip.upbdefs.h │ │ │ │ ├── matcher.upbdefs.c │ │ │ │ ├── matcher.upbdefs.h │ │ │ │ ├── range.upbdefs.c │ │ │ │ ├── range.upbdefs.h │ │ │ │ ├── regex.upbdefs.c │ │ │ │ ├── regex.upbdefs.h │ │ │ │ ├── string.upbdefs.c │ │ │ │ └── string.upbdefs.h │ │ │ └── v3 │ │ │ ├── cel.upbdefs.c │ │ │ ├── cel.upbdefs.h │ │ │ ├── range.upbdefs.c │ │ │ ├── range.upbdefs.h │ │ │ ├── typed_struct.upbdefs.c │ │ │ └── typed_struct.upbdefs.h │ ├── filter │ │ ├── auth │ │ │ ├── auth_filters.h │ │ │ ├── client_auth_filter.cc │ │ │ └── server_auth_filter.cc │ │ ├── blackboard.cc │ │ ├── blackboard.h │ │ ├── filter_args.h │ │ └── fused_filters.cc │ ├── handshaker │ │ ├── endpoint_info │ │ │ ├── endpoint_info_handshaker.cc │ │ │ └── endpoint_info_handshaker.h │ │ ├── handshaker.cc │ │ ├── handshaker.h │ │ ├── handshaker_factory.h │ │ ├── handshaker_registry.cc │ │ ├── handshaker_registry.h │ │ ├── http_connect │ │ │ ├── http_connect_handshaker.cc │ │ │ ├── http_connect_handshaker.h │ │ │ ├── http_proxy_mapper.cc │ │ │ ├── http_proxy_mapper.h │ │ │ ├── xds_http_proxy_mapper.cc │ │ │ └── xds_http_proxy_mapper.h │ │ ├── proxy_mapper.h │ │ ├── proxy_mapper_registry.cc │ │ ├── proxy_mapper_registry.h │ │ ├── security │ │ │ ├── legacy_secure_endpoint.cc │ │ │ ├── pipelined_secure_endpoint.cc │ │ │ ├── secure_endpoint.cc │ │ │ ├── secure_endpoint.h │ │ │ ├── security_handshaker.cc │ │ │ └── security_handshaker.h │ │ └── tcp_connect │ │ │ ├── tcp_connect_handshaker.cc │ │ │ └── tcp_connect_handshaker.h │ ├── lib │ │ ├── address_utils │ │ │ ├── parse_address.cc │ │ │ ├── parse_address.h │ │ │ ├── sockaddr_utils.cc │ │ │ └── sockaddr_utils.h │ │ ├── channel │ │ │ ├── channel_args.cc │ │ │ ├── channel_args.h │ │ │ ├── channel_args_preconditioning.cc │ │ │ ├── channel_args_preconditioning.h │ │ │ ├── channel_fwd.h │ │ │ ├── channel_stack.cc │ │ │ ├── channel_stack.h │ │ │ ├── channel_stack_builder.cc │ │ │ ├── channel_stack_builder.h │ │ │ ├── channel_stack_builder_impl.cc │ │ │ ├── channel_stack_builder_impl.h │ │ │ ├── connected_channel.cc │ │ │ ├── connected_channel.h │ │ │ ├── promise_based_filter.cc │ │ │ └── promise_based_filter.h │ │ ├── compression │ │ │ ├── compression.cc │ │ │ ├── compression_internal.cc │ │ │ ├── compression_internal.h │ │ │ ├── message_compress.cc │ │ │ └── message_compress.h │ │ ├── debug │ │ │ ├── trace.cc │ │ │ ├── trace.h │ │ │ ├── trace_flags.cc │ │ │ ├── trace_flags.h │ │ │ └── trace_impl.h │ │ ├── event_engine │ │ │ ├── ares_resolver.cc │ │ │ ├── ares_resolver.h │ │ │ ├── cf_engine │ │ │ │ ├── cf_engine.cc │ │ │ │ ├── cf_engine.h │ │ │ │ ├── cfsocket_listener.cc │ │ │ │ ├── cfsocket_listener.h │ │ │ │ ├── cfstream_endpoint.cc │ │ │ │ ├── cfstream_endpoint.h │ │ │ │ ├── cftype_unique_ref.h │ │ │ │ ├── dns_service_resolver.cc │ │ │ │ └── dns_service_resolver.h │ │ │ ├── channel_args_endpoint_config.cc │ │ │ ├── channel_args_endpoint_config.h │ │ │ ├── common_closures.h │ │ │ ├── default_event_engine.cc │ │ │ ├── default_event_engine.h │ │ │ ├── default_event_engine_factory.cc │ │ │ ├── default_event_engine_factory.h │ │ │ ├── endpoint_channel_arg_wrapper.cc │ │ │ ├── endpoint_channel_arg_wrapper.h │ │ │ ├── event_engine.cc │ │ │ ├── event_engine_context.h │ │ │ ├── extensions │ │ │ │ ├── blocking_dns.h │ │ │ │ ├── can_track_errors.h │ │ │ │ ├── channelz.h │ │ │ │ ├── chaotic_good_extension.h │ │ │ │ ├── iomgr_compatible.h │ │ │ │ ├── supports_fd.h │ │ │ │ ├── supports_win_sockets.h │ │ │ │ └── tcp_trace.h │ │ │ ├── grpc_polled_fd.h │ │ │ ├── handle_containers.h │ │ │ ├── memory_allocator_factory.h │ │ │ ├── nameser.h │ │ │ ├── poller.h │ │ │ ├── posix.h │ │ │ ├── posix_engine │ │ │ │ ├── ev_epoll1_linux.cc │ │ │ │ ├── ev_epoll1_linux.h │ │ │ │ ├── ev_poll_posix.cc │ │ │ │ ├── ev_poll_posix.h │ │ │ │ ├── event_poller.h │ │ │ │ ├── event_poller_posix_default.cc │ │ │ │ ├── event_poller_posix_default.h │ │ │ │ ├── file_descriptor_collection.cc │ │ │ │ ├── file_descriptor_collection.h │ │ │ │ ├── grpc_polled_fd_posix.h │ │ │ │ ├── internal_errqueue.cc │ │ │ │ ├── internal_errqueue.h │ │ │ │ ├── lockfree_event.cc │ │ │ │ ├── lockfree_event.h │ │ │ │ ├── native_posix_dns_resolver.cc │ │ │ │ ├── native_posix_dns_resolver.h │ │ │ │ ├── posix_endpoint.cc │ │ │ │ ├── posix_endpoint.h │ │ │ │ ├── posix_engine.cc │ │ │ │ ├── posix_engine.h │ │ │ │ ├── posix_engine_closure.h │ │ │ │ ├── posix_engine_listener.cc │ │ │ │ ├── posix_engine_listener.h │ │ │ │ ├── posix_engine_listener_utils.cc │ │ │ │ ├── posix_engine_listener_utils.h │ │ │ │ ├── posix_interface.h │ │ │ │ ├── posix_interface_posix.cc │ │ │ │ ├── posix_interface_windows.cc │ │ │ │ ├── posix_write_event_sink.cc │ │ │ │ ├── posix_write_event_sink.h │ │ │ │ ├── set_socket_dualstack.cc │ │ │ │ ├── tcp_socket_utils.cc │ │ │ │ ├── tcp_socket_utils.h │ │ │ │ ├── timer.cc │ │ │ │ ├── timer.h │ │ │ │ ├── timer_heap.cc │ │ │ │ ├── timer_heap.h │ │ │ │ ├── timer_manager.cc │ │ │ │ ├── timer_manager.h │ │ │ │ ├── traced_buffer_list.cc │ │ │ │ ├── traced_buffer_list.h │ │ │ │ ├── wakeup_fd_eventfd.cc │ │ │ │ ├── wakeup_fd_eventfd.h │ │ │ │ ├── wakeup_fd_pipe.cc │ │ │ │ ├── wakeup_fd_pipe.h │ │ │ │ ├── wakeup_fd_posix.h │ │ │ │ ├── wakeup_fd_posix_default.cc │ │ │ │ └── wakeup_fd_posix_default.h │ │ │ ├── query_extensions.h │ │ │ ├── ref_counted_dns_resolver_interface.h │ │ │ ├── resolved_address.cc │ │ │ ├── resolved_address_internal.h │ │ │ ├── shim.cc │ │ │ ├── shim.h │ │ │ ├── slice.cc │ │ │ ├── slice_buffer.cc │ │ │ ├── tcp_socket_utils.cc │ │ │ ├── tcp_socket_utils.h │ │ │ ├── thread_local.cc │ │ │ ├── thread_local.h │ │ │ ├── thread_pool │ │ │ │ ├── thread_count.cc │ │ │ │ ├── thread_count.h │ │ │ │ ├── thread_pool.h │ │ │ │ ├── thread_pool_factory.cc │ │ │ │ ├── work_stealing_thread_pool.cc │ │ │ │ └── work_stealing_thread_pool.h │ │ │ ├── thready_event_engine │ │ │ │ ├── thready_event_engine.cc │ │ │ │ └── thready_event_engine.h │ │ │ ├── time_util.cc │ │ │ ├── time_util.h │ │ │ ├── utils.cc │ │ │ ├── utils.h │ │ │ ├── windows │ │ │ │ ├── grpc_polled_fd_windows.cc │ │ │ │ ├── grpc_polled_fd_windows.h │ │ │ │ ├── iocp.cc │ │ │ │ ├── iocp.h │ │ │ │ ├── native_windows_dns_resolver.cc │ │ │ │ ├── native_windows_dns_resolver.h │ │ │ │ ├── win_socket.cc │ │ │ │ ├── win_socket.h │ │ │ │ ├── windows_endpoint.cc │ │ │ │ ├── windows_endpoint.h │ │ │ │ ├── windows_engine.cc │ │ │ │ ├── windows_engine.h │ │ │ │ ├── windows_listener.cc │ │ │ │ └── windows_listener.h │ │ │ └── work_queue │ │ │ │ ├── basic_work_queue.cc │ │ │ │ ├── basic_work_queue.h │ │ │ │ └── work_queue.h │ │ ├── experiments │ │ │ ├── config.cc │ │ │ ├── config.h │ │ │ ├── experiments.cc │ │ │ └── experiments.h │ │ ├── iomgr │ │ │ ├── block_annotate.h │ │ │ ├── buffer_list.cc │ │ │ ├── buffer_list.h │ │ │ ├── call_combiner.cc │ │ │ ├── call_combiner.h │ │ │ ├── cfstream_handle.cc │ │ │ ├── cfstream_handle.h │ │ │ ├── closure.cc │ │ │ ├── closure.h │ │ │ ├── combiner.cc │ │ │ ├── combiner.h │ │ │ ├── dualstack_socket_posix.cc │ │ │ ├── dynamic_annotations.h │ │ │ ├── endpoint.cc │ │ │ ├── endpoint.h │ │ │ ├── endpoint_cfstream.cc │ │ │ ├── endpoint_cfstream.h │ │ │ ├── endpoint_pair.h │ │ │ ├── endpoint_pair_posix.cc │ │ │ ├── endpoint_pair_windows.cc │ │ │ ├── error.cc │ │ │ ├── error.h │ │ │ ├── error_cfstream.cc │ │ │ ├── error_cfstream.h │ │ │ ├── ev_apple.cc │ │ │ ├── ev_apple.h │ │ │ ├── ev_epoll1_linux.cc │ │ │ ├── ev_epoll1_linux.h │ │ │ ├── ev_poll_posix.cc │ │ │ ├── ev_poll_posix.h │ │ │ ├── ev_posix.cc │ │ │ ├── ev_posix.h │ │ │ ├── event_engine_shims │ │ │ │ ├── closure.cc │ │ │ │ ├── closure.h │ │ │ │ ├── endpoint.cc │ │ │ │ ├── endpoint.h │ │ │ │ ├── tcp_client.cc │ │ │ │ └── tcp_client.h │ │ │ ├── exec_ctx.cc │ │ │ ├── exec_ctx.h │ │ │ ├── fork_posix.cc │ │ │ ├── fork_windows.cc │ │ │ ├── internal_errqueue.cc │ │ │ ├── internal_errqueue.h │ │ │ ├── iocp_windows.cc │ │ │ ├── iocp_windows.h │ │ │ ├── iomgr.cc │ │ │ ├── iomgr.h │ │ │ ├── iomgr_fwd.h │ │ │ ├── iomgr_internal.cc │ │ │ ├── iomgr_internal.h │ │ │ ├── iomgr_posix.cc │ │ │ ├── iomgr_posix_cfstream.cc │ │ │ ├── iomgr_windows.cc │ │ │ ├── lockfree_event.cc │ │ │ ├── lockfree_event.h │ │ │ ├── nameser.h │ │ │ ├── polling_entity.cc │ │ │ ├── polling_entity.h │ │ │ ├── pollset.cc │ │ │ ├── pollset.h │ │ │ ├── pollset_set.cc │ │ │ ├── pollset_set.h │ │ │ ├── pollset_set_windows.cc │ │ │ ├── pollset_set_windows.h │ │ │ ├── pollset_windows.cc │ │ │ ├── pollset_windows.h │ │ │ ├── port.h │ │ │ ├── resolve_address.cc │ │ │ ├── resolve_address.h │ │ │ ├── resolve_address_impl.h │ │ │ ├── resolve_address_posix.cc │ │ │ ├── resolve_address_posix.h │ │ │ ├── resolve_address_windows.cc │ │ │ ├── resolve_address_windows.h │ │ │ ├── resolved_address.h │ │ │ ├── sockaddr.h │ │ │ ├── sockaddr_posix.h │ │ │ ├── sockaddr_utils_posix.cc │ │ │ ├── sockaddr_windows.h │ │ │ ├── socket_factory_posix.cc │ │ │ ├── socket_factory_posix.h │ │ │ ├── socket_mutator.cc │ │ │ ├── socket_mutator.h │ │ │ ├── socket_utils.h │ │ │ ├── socket_utils_common_posix.cc │ │ │ ├── socket_utils_linux.cc │ │ │ ├── socket_utils_posix.cc │ │ │ ├── socket_utils_posix.h │ │ │ ├── socket_utils_windows.cc │ │ │ ├── socket_windows.cc │ │ │ ├── socket_windows.h │ │ │ ├── systemd_utils.cc │ │ │ ├── systemd_utils.h │ │ │ ├── tcp_client.cc │ │ │ ├── tcp_client.h │ │ │ ├── tcp_client_cfstream.cc │ │ │ ├── tcp_client_posix.cc │ │ │ ├── tcp_client_posix.h │ │ │ ├── tcp_client_windows.cc │ │ │ ├── tcp_posix.cc │ │ │ ├── tcp_posix.h │ │ │ ├── tcp_server.cc │ │ │ ├── tcp_server.h │ │ │ ├── tcp_server_posix.cc │ │ │ ├── tcp_server_utils_posix.h │ │ │ ├── tcp_server_utils_posix_common.cc │ │ │ ├── tcp_server_utils_posix_ifaddrs.cc │ │ │ ├── tcp_server_utils_posix_noifaddrs.cc │ │ │ ├── tcp_server_windows.cc │ │ │ ├── tcp_windows.cc │ │ │ ├── tcp_windows.h │ │ │ ├── timer.cc │ │ │ ├── timer.h │ │ │ ├── timer_generic.cc │ │ │ ├── timer_generic.h │ │ │ ├── timer_heap.cc │ │ │ ├── timer_heap.h │ │ │ ├── timer_manager.cc │ │ │ ├── timer_manager.h │ │ │ ├── unix_sockets_posix.cc │ │ │ ├── unix_sockets_posix.h │ │ │ ├── unix_sockets_posix_noop.cc │ │ │ ├── vsock.cc │ │ │ ├── vsock.h │ │ │ ├── wakeup_fd_eventfd.cc │ │ │ ├── wakeup_fd_nospecial.cc │ │ │ ├── wakeup_fd_pipe.cc │ │ │ ├── wakeup_fd_pipe.h │ │ │ ├── wakeup_fd_posix.cc │ │ │ └── wakeup_fd_posix.h │ │ ├── promise │ │ │ ├── activity.cc │ │ │ ├── activity.h │ │ │ ├── all_ok.h │ │ │ ├── arena_promise.h │ │ │ ├── cancel_callback.h │ │ │ ├── context.h │ │ │ ├── detail │ │ │ │ ├── basic_seq.h │ │ │ │ ├── join_state.h │ │ │ │ ├── promise_factory.h │ │ │ │ ├── promise_like.h │ │ │ │ ├── promise_variant.h │ │ │ │ ├── seq_state.h │ │ │ │ └── status.h │ │ │ ├── exec_ctx_wakeup_scheduler.h │ │ │ ├── for_each.h │ │ │ ├── if.h │ │ │ ├── inter_activity_latch.h │ │ │ ├── inter_activity_mutex.h │ │ │ ├── interceptor_list.h │ │ │ ├── latch.h │ │ │ ├── loop.h │ │ │ ├── map.h │ │ │ ├── match_promise.h │ │ │ ├── mpsc.cc │ │ │ ├── mpsc.h │ │ │ ├── observable.h │ │ │ ├── party.cc │ │ │ ├── party.h │ │ │ ├── pipe.h │ │ │ ├── poll.h │ │ │ ├── prioritized_race.h │ │ │ ├── promise.h │ │ │ ├── race.h │ │ │ ├── seq.h │ │ │ ├── sleep.cc │ │ │ ├── sleep.h │ │ │ ├── status_flag.h │ │ │ ├── try_join.h │ │ │ ├── try_seq.h │ │ │ ├── wait_set.cc │ │ │ └── wait_set.h │ │ ├── resource_quota │ │ │ ├── api.cc │ │ │ ├── api.h │ │ │ ├── arena.cc │ │ │ ├── arena.h │ │ │ ├── connection_quota.cc │ │ │ ├── connection_quota.h │ │ │ ├── memory_quota.cc │ │ │ ├── memory_quota.h │ │ │ ├── periodic_update.cc │ │ │ ├── periodic_update.h │ │ │ ├── resource_quota.cc │ │ │ ├── resource_quota.h │ │ │ ├── telemetry.h │ │ │ ├── thread_quota.cc │ │ │ └── thread_quota.h │ │ ├── resource_tracker │ │ │ ├── resource_tracker.cc │ │ │ └── resource_tracker.h │ │ ├── security │ │ │ └── authorization │ │ │ │ ├── audit_logging.cc │ │ │ │ ├── audit_logging.h │ │ │ │ ├── authorization_engine.h │ │ │ │ ├── authorization_policy_provider.h │ │ │ │ ├── authorization_policy_provider_vtable.cc │ │ │ │ ├── evaluate_args.cc │ │ │ │ ├── evaluate_args.h │ │ │ │ ├── grpc_authorization_engine.cc │ │ │ │ ├── grpc_authorization_engine.h │ │ │ │ ├── grpc_authorization_policy_provider.cc │ │ │ │ ├── grpc_authorization_policy_provider.h │ │ │ │ ├── grpc_server_authz_filter.cc │ │ │ │ ├── grpc_server_authz_filter.h │ │ │ │ ├── matchers.cc │ │ │ │ ├── matchers.h │ │ │ │ ├── rbac_policy.cc │ │ │ │ ├── rbac_policy.h │ │ │ │ ├── rbac_translator.cc │ │ │ │ ├── rbac_translator.h │ │ │ │ ├── stdout_logger.cc │ │ │ │ └── stdout_logger.h │ │ ├── slice │ │ │ ├── percent_encoding.cc │ │ │ ├── percent_encoding.h │ │ │ ├── slice.cc │ │ │ ├── slice.h │ │ │ ├── slice_buffer.cc │ │ │ ├── slice_buffer.h │ │ │ ├── slice_internal.h │ │ │ ├── slice_refcount.h │ │ │ ├── slice_string_helpers.cc │ │ │ └── slice_string_helpers.h │ │ ├── surface │ │ │ ├── byte_buffer.cc │ │ │ ├── byte_buffer_reader.cc │ │ │ ├── call.cc │ │ │ ├── call.h │ │ │ ├── call_details.cc │ │ │ ├── call_log_batch.cc │ │ │ ├── call_test_only.h │ │ │ ├── call_utils.cc │ │ │ ├── call_utils.h │ │ │ ├── channel.cc │ │ │ ├── channel.h │ │ │ ├── channel_create.cc │ │ │ ├── channel_create.h │ │ │ ├── channel_init.cc │ │ │ ├── channel_init.h │ │ │ ├── channel_stack_type.cc │ │ │ ├── channel_stack_type.h │ │ │ ├── completion_queue.cc │ │ │ ├── completion_queue.h │ │ │ ├── completion_queue_factory.cc │ │ │ ├── completion_queue_factory.h │ │ │ ├── connection_context.cc │ │ │ ├── connection_context.h │ │ │ ├── event_string.cc │ │ │ ├── event_string.h │ │ │ ├── filter_stack_call.cc │ │ │ ├── filter_stack_call.h │ │ │ ├── init.cc │ │ │ ├── init.h │ │ │ ├── init_internally.cc │ │ │ ├── init_internally.h │ │ │ ├── lame_client.cc │ │ │ ├── lame_client.h │ │ │ ├── legacy_channel.cc │ │ │ ├── legacy_channel.h │ │ │ ├── metadata_array.cc │ │ │ ├── validate_metadata.cc │ │ │ ├── validate_metadata.h │ │ │ └── version.cc │ │ └── transport │ │ │ ├── bdp_estimator.cc │ │ │ ├── bdp_estimator.h │ │ │ ├── call_final_info.cc │ │ │ ├── call_final_info.h │ │ │ ├── connectivity_state.cc │ │ │ ├── connectivity_state.h │ │ │ ├── error_utils.cc │ │ │ ├── error_utils.h │ │ │ ├── promise_endpoint.cc │ │ │ ├── promise_endpoint.h │ │ │ ├── status_conversion.cc │ │ │ ├── status_conversion.h │ │ │ ├── timeout_encoding.cc │ │ │ ├── timeout_encoding.h │ │ │ ├── transport.cc │ │ │ ├── transport.h │ │ │ ├── transport_framing_endpoint_extension.h │ │ │ ├── transport_fwd.h │ │ │ └── transport_op_string.cc │ ├── load_balancing │ │ ├── address_filtering.cc │ │ ├── address_filtering.h │ │ ├── backend_metric_data.h │ │ ├── backend_metric_parser.cc │ │ ├── backend_metric_parser.h │ │ ├── child_policy_handler.cc │ │ ├── child_policy_handler.h │ │ ├── delegating_helper.h │ │ ├── endpoint_list.cc │ │ ├── endpoint_list.h │ │ ├── grpclb │ │ │ ├── client_load_reporting_filter.cc │ │ │ ├── client_load_reporting_filter.h │ │ │ ├── grpclb.cc │ │ │ ├── grpclb.h │ │ │ ├── grpclb_balancer_addresses.cc │ │ │ ├── grpclb_balancer_addresses.h │ │ │ ├── grpclb_client_stats.cc │ │ │ ├── grpclb_client_stats.h │ │ │ ├── load_balancer_api.cc │ │ │ └── load_balancer_api.h │ │ ├── health_check_client.cc │ │ ├── health_check_client.h │ │ ├── health_check_client_internal.h │ │ ├── lb_policy.cc │ │ ├── lb_policy.h │ │ ├── lb_policy_factory.h │ │ ├── lb_policy_registry.cc │ │ ├── lb_policy_registry.h │ │ ├── oob_backend_metric.cc │ │ ├── oob_backend_metric.h │ │ ├── oob_backend_metric_internal.h │ │ ├── outlier_detection │ │ │ ├── outlier_detection.cc │ │ │ └── outlier_detection.h │ │ ├── pick_first │ │ │ ├── pick_first.cc │ │ │ └── pick_first.h │ │ ├── priority │ │ │ └── priority.cc │ │ ├── ring_hash │ │ │ ├── ring_hash.cc │ │ │ └── ring_hash.h │ │ ├── rls │ │ │ ├── rls.cc │ │ │ └── rls.h │ │ ├── round_robin │ │ │ └── round_robin.cc │ │ ├── subchannel_interface.h │ │ ├── weighted_round_robin │ │ │ ├── static_stride_scheduler.cc │ │ │ ├── static_stride_scheduler.h │ │ │ └── weighted_round_robin.cc │ │ ├── weighted_target │ │ │ ├── weighted_target.cc │ │ │ └── weighted_target.h │ │ └── xds │ │ │ ├── cds.cc │ │ │ ├── xds_channel_args.h │ │ │ ├── xds_cluster_impl.cc │ │ │ ├── xds_cluster_manager.cc │ │ │ ├── xds_override_host.cc │ │ │ ├── xds_override_host.h │ │ │ └── xds_wrr_locality.cc │ ├── net │ │ ├── socket_mutator.cc │ │ └── socket_mutator.h │ ├── plugin_registry │ │ ├── grpc_plugin_registry.cc │ │ └── grpc_plugin_registry_extra.cc │ ├── resolver │ │ ├── dns │ │ │ ├── c_ares │ │ │ │ ├── dns_resolver_ares.cc │ │ │ │ ├── dns_resolver_ares.h │ │ │ │ ├── grpc_ares_ev_driver.h │ │ │ │ ├── grpc_ares_ev_driver_posix.cc │ │ │ │ ├── grpc_ares_ev_driver_windows.cc │ │ │ │ ├── grpc_ares_wrapper.cc │ │ │ │ ├── grpc_ares_wrapper.h │ │ │ │ ├── grpc_ares_wrapper_posix.cc │ │ │ │ └── grpc_ares_wrapper_windows.cc │ │ │ ├── dns_resolver_plugin.cc │ │ │ ├── dns_resolver_plugin.h │ │ │ ├── event_engine │ │ │ │ ├── event_engine_client_channel_resolver.cc │ │ │ │ ├── event_engine_client_channel_resolver.h │ │ │ │ ├── service_config_helper.cc │ │ │ │ └── service_config_helper.h │ │ │ └── native │ │ │ │ ├── dns_resolver.cc │ │ │ │ └── dns_resolver.h │ │ ├── endpoint_addresses.cc │ │ ├── endpoint_addresses.h │ │ ├── fake │ │ │ ├── fake_resolver.cc │ │ │ └── fake_resolver.h │ │ ├── google_c2p │ │ │ └── google_c2p_resolver.cc │ │ ├── polling_resolver.cc │ │ ├── polling_resolver.h │ │ ├── resolver.cc │ │ ├── resolver.h │ │ ├── resolver_factory.h │ │ ├── resolver_registry.cc │ │ ├── resolver_registry.h │ │ ├── server_address.h │ │ ├── sockaddr │ │ │ └── sockaddr_resolver.cc │ │ └── xds │ │ │ ├── xds_config.cc │ │ │ ├── xds_config.h │ │ │ ├── xds_dependency_manager.cc │ │ │ ├── xds_dependency_manager.h │ │ │ ├── xds_resolver.cc │ │ │ └── xds_resolver_attributes.h │ ├── server │ │ ├── add_port.cc │ │ ├── server.cc │ │ ├── server.h │ │ ├── server_call_tracer_filter.cc │ │ ├── server_call_tracer_filter.h │ │ ├── server_config_selector.h │ │ ├── server_config_selector_filter.cc │ │ ├── server_config_selector_filter.h │ │ ├── server_interface.h │ │ ├── xds_channel_stack_modifier.cc │ │ ├── xds_channel_stack_modifier.h │ │ └── xds_server_config_fetcher.cc │ ├── service_config │ │ ├── service_config.h │ │ ├── service_config_call_data.h │ │ ├── service_config_channel_arg_filter.cc │ │ ├── service_config_channel_arg_filter.h │ │ ├── service_config_impl.cc │ │ ├── service_config_impl.h │ │ ├── service_config_parser.cc │ │ └── service_config_parser.h │ ├── telemetry │ │ ├── call_tracer.cc │ │ ├── call_tracer.h │ │ ├── context_list_entry.cc │ │ ├── context_list_entry.h │ │ ├── default_tcp_tracer.cc │ │ ├── default_tcp_tracer.h │ │ ├── histogram.h │ │ ├── histogram_view.cc │ │ ├── histogram_view.h │ │ ├── instrument.cc │ │ ├── instrument.h │ │ ├── metrics.cc │ │ ├── metrics.h │ │ ├── stats.cc │ │ ├── stats.h │ │ ├── stats_data.cc │ │ ├── stats_data.h │ │ ├── tcp_tracer.cc │ │ └── tcp_tracer.h │ ├── transport │ │ ├── auth_context.cc │ │ ├── auth_context.h │ │ ├── auth_context_comparator_registry.h │ │ ├── endpoint_transport.h │ │ ├── endpoint_transport_client_channel_factory.cc │ │ └── endpoint_transport_client_channel_factory.h │ ├── tsi │ │ ├── alts │ │ │ ├── crypt │ │ │ │ ├── aes_gcm.cc │ │ │ │ ├── gsec.cc │ │ │ │ └── gsec.h │ │ │ ├── frame_protector │ │ │ │ ├── alts_counter.cc │ │ │ │ ├── alts_counter.h │ │ │ │ ├── alts_crypter.cc │ │ │ │ ├── alts_crypter.h │ │ │ │ ├── alts_frame_protector.cc │ │ │ │ ├── alts_frame_protector.h │ │ │ │ ├── alts_record_protocol_crypter_common.cc │ │ │ │ ├── alts_record_protocol_crypter_common.h │ │ │ │ ├── alts_seal_privacy_integrity_crypter.cc │ │ │ │ ├── alts_unseal_privacy_integrity_crypter.cc │ │ │ │ ├── frame_handler.cc │ │ │ │ └── frame_handler.h │ │ │ ├── handshaker │ │ │ │ ├── alts_handshaker_client.cc │ │ │ │ ├── alts_handshaker_client.h │ │ │ │ ├── alts_shared_resource.cc │ │ │ │ ├── alts_shared_resource.h │ │ │ │ ├── alts_tsi_handshaker.cc │ │ │ │ ├── alts_tsi_handshaker.h │ │ │ │ ├── alts_tsi_handshaker_private.h │ │ │ │ ├── alts_tsi_utils.cc │ │ │ │ ├── alts_tsi_utils.h │ │ │ │ ├── transport_security_common_api.cc │ │ │ │ └── transport_security_common_api.h │ │ │ └── zero_copy_frame_protector │ │ │ │ ├── alts_grpc_integrity_only_record_protocol.cc │ │ │ │ ├── alts_grpc_integrity_only_record_protocol.h │ │ │ │ ├── alts_grpc_privacy_integrity_record_protocol.cc │ │ │ │ ├── alts_grpc_privacy_integrity_record_protocol.h │ │ │ │ ├── alts_grpc_record_protocol.h │ │ │ │ ├── alts_grpc_record_protocol_common.cc │ │ │ │ ├── alts_grpc_record_protocol_common.h │ │ │ │ ├── alts_iovec_record_protocol.cc │ │ │ │ ├── alts_iovec_record_protocol.h │ │ │ │ ├── alts_zero_copy_grpc_protector.cc │ │ │ │ └── alts_zero_copy_grpc_protector.h │ │ ├── fake_transport_security.cc │ │ ├── fake_transport_security.h │ │ ├── local_transport_security.cc │ │ ├── local_transport_security.h │ │ ├── ssl │ │ │ ├── key_logging │ │ │ │ ├── ssl_key_logging.cc │ │ │ │ └── ssl_key_logging.h │ │ │ └── session_cache │ │ │ │ ├── ssl_session.h │ │ │ │ ├── ssl_session_boringssl.cc │ │ │ │ ├── ssl_session_cache.cc │ │ │ │ ├── ssl_session_cache.h │ │ │ │ └── ssl_session_openssl.cc │ │ ├── ssl_transport_security.cc │ │ ├── ssl_transport_security.h │ │ ├── ssl_transport_security_utils.cc │ │ ├── ssl_transport_security_utils.h │ │ ├── ssl_types.h │ │ ├── transport_security.cc │ │ ├── transport_security.h │ │ ├── transport_security_grpc.cc │ │ ├── transport_security_grpc.h │ │ └── transport_security_interface.h │ ├── util │ │ ├── alloc.cc │ │ ├── alloc.h │ │ ├── atomic_utils.h │ │ ├── avl.h │ │ ├── backoff.cc │ │ ├── backoff.h │ │ ├── bitset.h │ │ ├── check_class_size.h │ │ ├── chunked_vector.h │ │ ├── construct_destruct.h │ │ ├── cpp_impl_of.h │ │ ├── crash.cc │ │ ├── crash.h │ │ ├── debug_location.h │ │ ├── directory_reader.h │ │ ├── down_cast.h │ │ ├── dual_ref_counted.h │ │ ├── dump_args.cc │ │ ├── dump_args.h │ │ ├── env.h │ │ ├── event_log.cc │ │ ├── event_log.h │ │ ├── examine_stack.cc │ │ ├── examine_stack.h │ │ ├── fork.cc │ │ ├── fork.h │ │ ├── function_signature.h │ │ ├── gcp_metadata_query.cc │ │ ├── gcp_metadata_query.h │ │ ├── gethostname.h │ │ ├── gethostname_fallback.cc │ │ ├── gethostname_host_name_max.cc │ │ ├── gethostname_sysconf.cc │ │ ├── glob.cc │ │ ├── glob.h │ │ ├── gpr_time.cc │ │ ├── grpc_check.cc │ │ ├── grpc_check.h │ │ ├── grpc_if_nametoindex.h │ │ ├── grpc_if_nametoindex_posix.cc │ │ ├── grpc_if_nametoindex_unsupported.cc │ │ ├── host_port.cc │ │ ├── host_port.h │ │ ├── http_client │ │ │ ├── format_request.cc │ │ │ ├── format_request.h │ │ │ ├── httpcli.cc │ │ │ ├── httpcli.h │ │ │ ├── httpcli_security_connector.cc │ │ │ ├── httpcli_ssl_credentials.h │ │ │ ├── parser.cc │ │ │ └── parser.h │ │ ├── if_list.h │ │ ├── iphone │ │ │ └── cpu.cc │ │ ├── json │ │ │ ├── json.h │ │ │ ├── json_args.h │ │ │ ├── json_channel_args.h │ │ │ ├── json_object_loader.cc │ │ │ ├── json_object_loader.h │ │ │ ├── json_reader.cc │ │ │ ├── json_reader.h │ │ │ ├── json_util.cc │ │ │ ├── json_util.h │ │ │ ├── json_writer.cc │ │ │ └── json_writer.h │ │ ├── latent_see.cc │ │ ├── latent_see.h │ │ ├── linux │ │ │ ├── cpu.cc │ │ │ └── env.cc │ │ ├── load_file.cc │ │ ├── load_file.h │ │ ├── log.cc │ │ ├── lru_cache.h │ │ ├── manual_constructor.h │ │ ├── match.h │ │ ├── matchers.cc │ │ ├── matchers.h │ │ ├── memory.h │ │ ├── memory_usage.h │ │ ├── mpscq.cc │ │ ├── mpscq.h │ │ ├── msys │ │ │ └── tmpfile.cc │ │ ├── no_destruct.h │ │ ├── notification.h │ │ ├── orphanable.h │ │ ├── overload.h │ │ ├── packed_table.h │ │ ├── per_cpu.cc │ │ ├── per_cpu.h │ │ ├── posix │ │ │ ├── cpu.cc │ │ │ ├── directory_reader.cc │ │ │ ├── env.cc │ │ │ ├── stat.cc │ │ │ ├── string.cc │ │ │ ├── sync.cc │ │ │ ├── thd.cc │ │ │ ├── time.cc │ │ │ └── tmpfile.cc │ │ ├── postmortem_emit.cc │ │ ├── postmortem_emit.h │ │ ├── random_early_detection.cc │ │ ├── random_early_detection.h │ │ ├── ref_counted.h │ │ ├── ref_counted_ptr.h │ │ ├── ref_counted_string.cc │ │ ├── ref_counted_string.h │ │ ├── shared_bit_gen.cc │ │ ├── shared_bit_gen.h │ │ ├── single_set_ptr.h │ │ ├── sorted_pack.h │ │ ├── spinlock.h │ │ ├── stat.h │ │ ├── status_helper.cc │ │ ├── status_helper.h │ │ ├── strerror.cc │ │ ├── strerror.h │ │ ├── string.cc │ │ ├── string.h │ │ ├── sync.cc │ │ ├── sync.h │ │ ├── sync_abseil.cc │ │ ├── table.h │ │ ├── tchar.cc │ │ ├── tchar.h │ │ ├── thd.h │ │ ├── time.cc │ │ ├── time.h │ │ ├── time_averaged_stats.cc │ │ ├── time_averaged_stats.h │ │ ├── time_precise.cc │ │ ├── time_precise.h │ │ ├── time_util.cc │ │ ├── time_util.h │ │ ├── tmpfile.h │ │ ├── trie_lookup.h │ │ ├── type_list.h │ │ ├── unique_ptr_with_bitset.h │ │ ├── unique_type_name.h │ │ ├── upb_utils.h │ │ ├── uri.cc │ │ ├── uri.h │ │ ├── useful.h │ │ ├── uuid_v4.cc │ │ ├── uuid_v4.h │ │ ├── validation_errors.cc │ │ ├── validation_errors.h │ │ ├── wait_for_single_owner.cc │ │ ├── wait_for_single_owner.h │ │ ├── windows │ │ │ ├── cpu.cc │ │ │ ├── directory_reader.cc │ │ │ ├── env.cc │ │ │ ├── stat.cc │ │ │ ├── string.cc │ │ │ ├── string_util.cc │ │ │ ├── sync.cc │ │ │ ├── thd.cc │ │ │ ├── time.cc │ │ │ └── tmpfile.cc │ │ ├── work_serializer.cc │ │ ├── work_serializer.h │ │ └── xxhash_inline.h │ └── xds │ │ ├── grpc │ │ ├── certificate_provider_store.cc │ │ ├── certificate_provider_store.h │ │ ├── file_watcher_certificate_provider_factory.cc │ │ ├── file_watcher_certificate_provider_factory.h │ │ ├── xds_audit_logger_registry.cc │ │ ├── xds_audit_logger_registry.h │ │ ├── xds_bootstrap_grpc.cc │ │ ├── xds_bootstrap_grpc.h │ │ ├── xds_certificate_provider.cc │ │ ├── xds_certificate_provider.h │ │ ├── xds_client_grpc.cc │ │ ├── xds_client_grpc.h │ │ ├── xds_cluster.cc │ │ ├── xds_cluster.h │ │ ├── xds_cluster_parser.cc │ │ ├── xds_cluster_parser.h │ │ ├── xds_cluster_specifier_plugin.cc │ │ ├── xds_cluster_specifier_plugin.h │ │ ├── xds_common_types.cc │ │ ├── xds_common_types.h │ │ ├── xds_common_types_parser.cc │ │ ├── xds_common_types_parser.h │ │ ├── xds_enabled_server.h │ │ ├── xds_endpoint.cc │ │ ├── xds_endpoint.h │ │ ├── xds_endpoint_parser.cc │ │ ├── xds_endpoint_parser.h │ │ ├── xds_health_status.cc │ │ ├── xds_health_status.h │ │ ├── xds_http_fault_filter.cc │ │ ├── xds_http_fault_filter.h │ │ ├── xds_http_filter.h │ │ ├── xds_http_filter_registry.cc │ │ ├── xds_http_filter_registry.h │ │ ├── xds_http_gcp_authn_filter.cc │ │ ├── xds_http_gcp_authn_filter.h │ │ ├── xds_http_rbac_filter.cc │ │ ├── xds_http_rbac_filter.h │ │ ├── xds_http_stateful_session_filter.cc │ │ ├── xds_http_stateful_session_filter.h │ │ ├── xds_lb_policy_registry.cc │ │ ├── xds_lb_policy_registry.h │ │ ├── xds_listener.cc │ │ ├── xds_listener.h │ │ ├── xds_listener_parser.cc │ │ ├── xds_listener_parser.h │ │ ├── xds_matcher.cc │ │ ├── xds_matcher.h │ │ ├── xds_matcher_action.cc │ │ ├── xds_matcher_action.h │ │ ├── xds_matcher_context.cc │ │ ├── xds_matcher_context.h │ │ ├── xds_matcher_input.cc │ │ ├── xds_matcher_input.h │ │ ├── xds_matcher_parse.cc │ │ ├── xds_matcher_parse.h │ │ ├── xds_metadata.cc │ │ ├── xds_metadata.h │ │ ├── xds_metadata_parser.cc │ │ ├── xds_metadata_parser.h │ │ ├── xds_route_config.cc │ │ ├── xds_route_config.h │ │ ├── xds_route_config_parser.cc │ │ ├── xds_route_config_parser.h │ │ ├── xds_routing.cc │ │ ├── xds_routing.h │ │ ├── xds_server_grpc.cc │ │ ├── xds_server_grpc.h │ │ ├── xds_server_grpc_interface.h │ │ ├── xds_transport_grpc.cc │ │ └── xds_transport_grpc.h │ │ └── xds_client │ │ ├── lrs_client.cc │ │ ├── lrs_client.h │ │ ├── xds_api.cc │ │ ├── xds_api.h │ │ ├── xds_backend_metric_propagation.cc │ │ ├── xds_backend_metric_propagation.h │ │ ├── xds_bootstrap.cc │ │ ├── xds_bootstrap.h │ │ ├── xds_channel_args.h │ │ ├── xds_client.cc │ │ ├── xds_client.h │ │ ├── xds_locality.h │ │ ├── xds_metrics.h │ │ ├── xds_resource_type.h │ │ ├── xds_resource_type_impl.h │ │ └── xds_transport.h ├── cpp │ ├── client │ │ ├── call_credentials.cc │ │ ├── channel_cc.cc │ │ ├── channel_credentials.cc │ │ ├── client_callback.cc │ │ ├── client_context.cc │ │ ├── client_interceptor.cc │ │ ├── client_stats_interceptor.cc │ │ ├── client_stats_interceptor.h │ │ ├── create_channel.cc │ │ ├── create_channel_internal.cc │ │ ├── create_channel_internal.h │ │ ├── create_channel_posix.cc │ │ ├── global_callback_hook.cc │ │ ├── insecure_credentials.cc │ │ ├── secure_credentials.cc │ │ ├── secure_credentials.h │ │ └── xds_credentials.cc │ ├── common │ │ ├── alarm.cc │ │ ├── auth_property_iterator.cc │ │ ├── channel_arguments.cc │ │ ├── completion_queue_cc.cc │ │ ├── resource_quota_cc.cc │ │ ├── rpc_method.cc │ │ ├── secure_auth_context.cc │ │ ├── secure_auth_context.h │ │ ├── secure_create_auth_context.cc │ │ ├── tls_certificate_provider.cc │ │ ├── tls_certificate_verifier.cc │ │ ├── tls_credentials_options.cc │ │ ├── validate_service_config.cc │ │ └── version_cc.cc │ ├── server │ │ ├── async_generic_service.cc │ │ ├── backend_metric_recorder.cc │ │ ├── backend_metric_recorder.h │ │ ├── channel_argument_option.cc │ │ ├── create_default_thread_pool.cc │ │ ├── dynamic_thread_pool.h │ │ ├── external_connection_acceptor_impl.cc │ │ ├── external_connection_acceptor_impl.h │ │ ├── health │ │ │ ├── default_health_check_service.cc │ │ │ ├── default_health_check_service.h │ │ │ ├── health_check_service.cc │ │ │ └── health_check_service_server_builder_option.cc │ │ ├── insecure_server_credentials.cc │ │ ├── secure_server_credentials.cc │ │ ├── secure_server_credentials.h │ │ ├── server_builder.cc │ │ ├── server_callback.cc │ │ ├── server_cc.cc │ │ ├── server_context.cc │ │ ├── server_credentials.cc │ │ ├── server_posix.cc │ │ ├── thread_pool_interface.h │ │ ├── xds_server_builder.cc │ │ └── xds_server_credentials.cc │ ├── thread_manager │ │ ├── thread_manager.cc │ │ └── thread_manager.h │ └── util │ │ ├── byte_buffer_cc.cc │ │ ├── status.cc │ │ ├── string_ref.cc │ │ └── time_cc.cc └── objective-c │ ├── !ProtoCompiler-gRPCCppPlugin.podspec │ ├── !ProtoCompiler-gRPCPlugin.podspec │ ├── !ProtoCompiler.podspec │ ├── BoringSSL-GRPC.podspec │ ├── GRPCClient │ ├── GRPCCall+ChannelArg.h │ ├── GRPCCall+ChannelArg.mm │ ├── GRPCCall+ChannelCredentials.h │ ├── GRPCCall+ChannelCredentials.mm │ ├── GRPCCall+GID.h │ ├── GRPCCall+GID.mm │ ├── GRPCCall+Interceptor.h │ ├── GRPCCall+Interceptor.mm │ ├── GRPCCall+OAuth2.h │ ├── GRPCCall+OAuth2.mm │ ├── GRPCCall+Tests.h │ ├── GRPCCall+Tests.mm │ ├── GRPCCall.h │ ├── GRPCCall.mm │ ├── GRPCCallLegacy.h │ ├── GRPCCallLegacy.mm │ ├── GRPCCallOptions.h │ ├── GRPCCallOptions.mm │ ├── GRPCDispatchable.h │ ├── GRPCInterceptor.h │ ├── GRPCInterceptor.mm │ ├── GRPCTransport.h │ ├── GRPCTransport.mm │ ├── GRPCTypes.h │ ├── GRPCTypes.mm │ ├── README.md │ ├── internal │ │ └── GRPCCallOptions+Internal.h │ ├── internal_testing │ │ ├── GRPCCall+InternalTests.h │ │ └── GRPCCall+InternalTests.mm │ ├── private │ │ ├── GRPCCore │ │ │ ├── ChannelArgsUtil.h │ │ │ ├── ChannelArgsUtil.mm │ │ │ ├── GRPCCall+V2API.h │ │ │ ├── GRPCCallInternal.h │ │ │ ├── GRPCCallInternal.mm │ │ │ ├── GRPCChannel.h │ │ │ ├── GRPCChannel.mm │ │ │ ├── GRPCChannelFactory.h │ │ │ ├── GRPCChannelPool+Test.h │ │ │ ├── GRPCChannelPool.h │ │ │ ├── GRPCChannelPool.mm │ │ │ ├── GRPCCompletionQueue.h │ │ │ ├── GRPCCompletionQueue.mm │ │ │ ├── GRPCCoreFactory.h │ │ │ ├── GRPCCoreFactory.mm │ │ │ ├── GRPCHost.h │ │ │ ├── GRPCHost.mm │ │ │ ├── GRPCInsecureChannelFactory.h │ │ │ ├── GRPCInsecureChannelFactory.mm │ │ │ ├── GRPCOpBatchLog.h │ │ │ ├── GRPCOpBatchLog.mm │ │ │ ├── GRPCReachabilityFlagNames.xmacro.h │ │ │ ├── GRPCRequestHeaders.h │ │ │ ├── GRPCRequestHeaders.mm │ │ │ ├── GRPCSecureChannelFactory.h │ │ │ ├── GRPCSecureChannelFactory.mm │ │ │ ├── GRPCWrappedCall.h │ │ │ ├── GRPCWrappedCall.mm │ │ │ ├── NSData+GRPC.h │ │ │ ├── NSData+GRPC.mm │ │ │ ├── NSDictionary+GRPC.h │ │ │ ├── NSDictionary+GRPC.mm │ │ │ ├── NSError+GRPC.h │ │ │ └── NSError+GRPC.mm │ │ ├── GRPCTransport+Private.h │ │ └── GRPCTransport+Private.mm │ └── version.h │ ├── PrivacyInfo.xcprivacy │ ├── ProtoRPC │ ├── ProtoMethod.h │ ├── ProtoMethod.m │ ├── ProtoRPC.h │ ├── ProtoRPC.m │ ├── ProtoRPCLegacy.h │ ├── ProtoRPCLegacy.m │ ├── ProtoService.h │ ├── ProtoService.m │ ├── ProtoServiceLegacy.h │ └── ProtoServiceLegacy.m │ └── RxLibrary │ ├── GRXBufferedPipe.h │ ├── GRXBufferedPipe.m │ ├── GRXConcurrentWriteable.h │ ├── GRXConcurrentWriteable.m │ ├── GRXForwardingWriter.h │ ├── GRXForwardingWriter.m │ ├── GRXImmediateSingleWriter.h │ ├── GRXImmediateSingleWriter.m │ ├── GRXImmediateWriter.h │ ├── GRXImmediateWriter.m │ ├── GRXMappingWriter.h │ ├── GRXMappingWriter.m │ ├── GRXWriteable.h │ ├── GRXWriteable.m │ ├── GRXWriter+Immediate.h │ ├── GRXWriter+Immediate.m │ ├── GRXWriter+Transformations.h │ ├── GRXWriter+Transformations.m │ ├── GRXWriter.h │ ├── GRXWriter.m │ ├── NSEnumerator+GRXUtil.h │ ├── NSEnumerator+GRXUtil.m │ ├── README.md │ └── private │ ├── GRXNSBlockEnumerator.h │ ├── GRXNSBlockEnumerator.m │ ├── GRXNSFastEnumerator.h │ ├── GRXNSFastEnumerator.m │ ├── GRXNSScalarEnumerator.h │ └── GRXNSScalarEnumerator.m ├── tests ├── cocoapod │ └── gRPCSample │ │ ├── Podfile │ │ ├── gRPCSample.xcodeproj │ │ └── project.pbxproj │ │ └── gRPCSample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── SceneDelegate.h │ │ ├── SceneDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── spm │ ├── README.md │ └── gRPCSample │ │ ├── README.md │ │ ├── build.xcconfig │ │ ├── gRPCSample.xcodeproj │ │ └── project.pbxproj │ │ └── gRPCSample │ │ ├── ContentView.swift │ │ └── gRPCSampleApp.swift └── spm_build │ └── test.cc └── third_party ├── address_sorting ├── address_sorting.c ├── address_sorting_internal.h ├── address_sorting_posix.c ├── address_sorting_windows.c └── include │ └── address_sorting │ └── address_sorting.h ├── re2 ├── LICENSE ├── re2 │ ├── bitmap256.h │ ├── bitstate.cc │ ├── compile.cc │ ├── dfa.cc │ ├── filtered_re2.cc │ ├── filtered_re2.h │ ├── mimics_pcre.cc │ ├── nfa.cc │ ├── onepass.cc │ ├── parse.cc │ ├── perl_groups.cc │ ├── pod_array.h │ ├── prefilter.cc │ ├── prefilter.h │ ├── prefilter_tree.cc │ ├── prefilter_tree.h │ ├── prog.cc │ ├── prog.h │ ├── re2.cc │ ├── re2.h │ ├── regexp.cc │ ├── regexp.h │ ├── set.cc │ ├── set.h │ ├── simplify.cc │ ├── sparse_array.h │ ├── sparse_set.h │ ├── stringpiece.cc │ ├── stringpiece.h │ ├── tostring.cc │ ├── unicode_casefold.cc │ ├── unicode_casefold.h │ ├── unicode_groups.cc │ ├── unicode_groups.h │ └── walker-inl.h └── util │ ├── logging.h │ ├── mix.h │ ├── mutex.h │ ├── rune.cc │ ├── strutil.cc │ ├── strutil.h │ ├── utf.h │ └── util.h ├── upb └── upb │ ├── base │ ├── descriptor_constants.h │ ├── internal │ │ ├── endian.h │ │ └── log2.h │ ├── status.c │ ├── status.h │ ├── status.hpp │ ├── string_view.h │ └── upcast.h │ ├── generated_code_support.h │ ├── hash │ ├── common.c │ ├── common.h │ ├── int_table.h │ └── str_table.h │ ├── json │ ├── decode.c │ ├── decode.h │ ├── encode.c │ └── encode.h │ ├── lex │ ├── atoi.c │ ├── atoi.h │ ├── round_trip.c │ ├── round_trip.h │ ├── strtod.c │ ├── strtod.h │ ├── unicode.c │ └── unicode.h │ ├── mem │ ├── alloc.c │ ├── alloc.h │ ├── arena.c │ ├── arena.h │ ├── arena.hpp │ └── internal │ │ └── arena.h │ ├── message │ ├── accessors.c │ ├── accessors.h │ ├── array.c │ ├── array.h │ ├── compat.c │ ├── compat.h │ ├── copy.c │ ├── copy.h │ ├── internal │ │ ├── accessors.h │ │ ├── array.h │ │ ├── extension.c │ │ ├── extension.h │ │ ├── iterator.c │ │ ├── iterator.h │ │ ├── map.h │ │ ├── map_entry.h │ │ ├── map_sorter.h │ │ ├── message.c │ │ ├── message.h │ │ ├── tagged_ptr.h │ │ └── types.h │ ├── map.c │ ├── map.h │ ├── map_gencode_util.h │ ├── map_sorter.c │ ├── merge.c │ ├── merge.h │ ├── message.c │ ├── message.h │ ├── tagged_ptr.h │ └── value.h │ ├── mini_descriptor │ ├── build_enum.c │ ├── build_enum.h │ ├── decode.c │ ├── decode.h │ ├── internal │ │ ├── base92.c │ │ ├── base92.h │ │ ├── decoder.h │ │ ├── encode.c │ │ ├── encode.h │ │ ├── encode.hpp │ │ ├── modifiers.h │ │ └── wire_constants.h │ ├── link.c │ └── link.h │ ├── mini_table │ ├── enum.h │ ├── extension.h │ ├── extension_registry.c │ ├── extension_registry.h │ ├── field.h │ ├── file.h │ ├── internal │ │ ├── enum.h │ │ ├── extension.h │ │ ├── field.h │ │ ├── file.h │ │ ├── message.c │ │ ├── message.h │ │ ├── size_log2.h │ │ └── sub.h │ ├── message.c │ ├── message.h │ └── sub.h │ ├── port │ ├── atomic.h │ ├── def.inc │ ├── undef.inc │ └── vsnprintf_compat.h │ ├── reflection │ ├── common.h │ ├── def.h │ ├── def.hpp │ ├── def_pool.c │ ├── def_pool.h │ ├── def_type.c │ ├── def_type.h │ ├── desc_state.c │ ├── descriptor_bootstrap.h │ ├── enum_def.c │ ├── enum_def.h │ ├── enum_reserved_range.c │ ├── enum_reserved_range.h │ ├── enum_value_def.c │ ├── enum_value_def.h │ ├── extension_range.c │ ├── extension_range.h │ ├── field_def.c │ ├── field_def.h │ ├── file_def.c │ ├── file_def.h │ ├── internal │ │ ├── def_builder.c │ │ ├── def_builder.h │ │ ├── def_pool.h │ │ ├── desc_state.h │ │ ├── enum_def.h │ │ ├── enum_reserved_range.h │ │ ├── enum_value_def.h │ │ ├── extension_range.h │ │ ├── field_def.h │ │ ├── file_def.h │ │ ├── message_def.h │ │ ├── message_reserved_range.h │ │ ├── method_def.h │ │ ├── oneof_def.h │ │ ├── service_def.h │ │ ├── strdup2.c │ │ ├── strdup2.h │ │ └── upb_edition_defaults.h │ ├── message.c │ ├── message.h │ ├── message.hpp │ ├── message_def.c │ ├── message_def.h │ ├── message_reserved_range.c │ ├── message_reserved_range.h │ ├── method_def.c │ ├── method_def.h │ ├── oneof_def.c │ ├── oneof_def.h │ ├── service_def.c │ └── service_def.h │ ├── text │ ├── encode.c │ ├── encode.h │ ├── internal │ │ ├── encode.c │ │ └── encode.h │ └── options.h │ └── wire │ ├── decode.c │ ├── decode.h │ ├── encode.c │ ├── encode.h │ ├── eps_copy_input_stream.c │ ├── eps_copy_input_stream.h │ ├── internal │ ├── constants.h │ ├── decode_fast.c │ ├── decode_fast.h │ ├── decoder.h │ └── reader.h │ ├── reader.c │ ├── reader.h │ └── types.h ├── utf8_range ├── LICENSE ├── utf8_range.c ├── utf8_range.h ├── utf8_range_neon.inc └── utf8_range_sse.inc ├── xxhash ├── LICENSE └── xxhash.h └── zlib ├── LICENSE ├── adler32.c ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── gzguts.h ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h /.github/workflows/grpc_source_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/.github/workflows/grpc_source_sync.yml -------------------------------------------------------------------------------- /.github/workflows/manual-push-a-pod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/.github/workflows/manual-push-a-pod.yml -------------------------------------------------------------------------------- /.github/workflows/pre_submit_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/.github/workflows/pre_submit_check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/README.md -------------------------------------------------------------------------------- /etc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/etc/README.md -------------------------------------------------------------------------------- /etc/roots.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/etc/roots.pem -------------------------------------------------------------------------------- /gRPC-C++.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/gRPC-C++.podspec -------------------------------------------------------------------------------- /gRPC-Core.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/gRPC-Core.podspec -------------------------------------------------------------------------------- /gRPC-ProtoRPC.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/gRPC-ProtoRPC.podspec -------------------------------------------------------------------------------- /gRPC-RxLibrary.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/gRPC-RxLibrary.podspec -------------------------------------------------------------------------------- /gRPC.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/gRPC.podspec -------------------------------------------------------------------------------- /include/grpc++/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/alarm.h -------------------------------------------------------------------------------- /include/grpc++/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/channel.h -------------------------------------------------------------------------------- /include/grpc++/client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/client_context.h -------------------------------------------------------------------------------- /include/grpc++/completion_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/completion_queue.h -------------------------------------------------------------------------------- /include/grpc++/create_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/create_channel.h -------------------------------------------------------------------------------- /include/grpc++/create_channel_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/create_channel_posix.h -------------------------------------------------------------------------------- /include/grpc++/generic/generic_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/generic/generic_stub.h -------------------------------------------------------------------------------- /include/grpc++/grpc++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/grpc++.h -------------------------------------------------------------------------------- /include/grpc++/impl/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/impl/call.h -------------------------------------------------------------------------------- /include/grpc++/impl/client_unary_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/impl/client_unary_call.h -------------------------------------------------------------------------------- /include/grpc++/impl/codegen/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/impl/codegen/call.h -------------------------------------------------------------------------------- /include/grpc++/impl/codegen/call_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/impl/codegen/call_hook.h -------------------------------------------------------------------------------- /include/grpc++/impl/codegen/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/impl/codegen/config.h -------------------------------------------------------------------------------- /include/grpc++/impl/codegen/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/impl/codegen/slice.h -------------------------------------------------------------------------------- /include/grpc++/impl/codegen/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/impl/codegen/status.h -------------------------------------------------------------------------------- /include/grpc++/impl/codegen/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/impl/codegen/time.h -------------------------------------------------------------------------------- /include/grpc++/impl/grpc_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/impl/grpc_library.h -------------------------------------------------------------------------------- /include/grpc++/impl/rpc_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/impl/rpc_method.h -------------------------------------------------------------------------------- /include/grpc++/impl/service_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/impl/service_type.h -------------------------------------------------------------------------------- /include/grpc++/resource_quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/resource_quota.h -------------------------------------------------------------------------------- /include/grpc++/security/auth_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/security/auth_context.h -------------------------------------------------------------------------------- /include/grpc++/security/credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/security/credentials.h -------------------------------------------------------------------------------- /include/grpc++/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/server.h -------------------------------------------------------------------------------- /include/grpc++/server_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/server_builder.h -------------------------------------------------------------------------------- /include/grpc++/server_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/server_context.h -------------------------------------------------------------------------------- /include/grpc++/server_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/server_posix.h -------------------------------------------------------------------------------- /include/grpc++/support/async_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/support/async_stream.h -------------------------------------------------------------------------------- /include/grpc++/support/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/support/byte_buffer.h -------------------------------------------------------------------------------- /include/grpc++/support/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/support/config.h -------------------------------------------------------------------------------- /include/grpc++/support/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/support/slice.h -------------------------------------------------------------------------------- /include/grpc++/support/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/support/status.h -------------------------------------------------------------------------------- /include/grpc++/support/string_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/support/string_ref.h -------------------------------------------------------------------------------- /include/grpc++/support/stub_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/support/stub_options.h -------------------------------------------------------------------------------- /include/grpc++/support/sync_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/support/sync_stream.h -------------------------------------------------------------------------------- /include/grpc++/support/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc++/support/time.h -------------------------------------------------------------------------------- /include/grpc/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/byte_buffer.h -------------------------------------------------------------------------------- /include/grpc/byte_buffer_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/byte_buffer_reader.h -------------------------------------------------------------------------------- /include/grpc/census.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/census.h -------------------------------------------------------------------------------- /include/grpc/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/compression.h -------------------------------------------------------------------------------- /include/grpc/credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/credentials.h -------------------------------------------------------------------------------- /include/grpc/event_engine/extensible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/event_engine/extensible.h -------------------------------------------------------------------------------- /include/grpc/event_engine/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/event_engine/port.h -------------------------------------------------------------------------------- /include/grpc/event_engine/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/event_engine/slice.h -------------------------------------------------------------------------------- /include/grpc/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/fork.h -------------------------------------------------------------------------------- /include/grpc/grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/grpc.h -------------------------------------------------------------------------------- /include/grpc/grpc_audit_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/grpc_audit_logging.h -------------------------------------------------------------------------------- /include/grpc/grpc_crl_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/grpc_crl_provider.h -------------------------------------------------------------------------------- /include/grpc/grpc_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/grpc_posix.h -------------------------------------------------------------------------------- /include/grpc/grpc_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/grpc_security.h -------------------------------------------------------------------------------- /include/grpc/grpc_security_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/grpc_security_constants.h -------------------------------------------------------------------------------- /include/grpc/impl/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/call.h -------------------------------------------------------------------------------- /include/grpc/impl/channel_arg_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/channel_arg_names.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/atm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/atm.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/atm_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/atm_windows.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/byte_buffer.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/fork.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/gpr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/gpr_types.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/grpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/grpc_types.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/log.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/slice.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/status.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/sync.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/sync_abseil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/sync_abseil.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/sync_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/sync_custom.h -------------------------------------------------------------------------------- /include/grpc/impl/codegen/sync_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/codegen/sync_posix.h -------------------------------------------------------------------------------- /include/grpc/impl/compression_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/compression_types.h -------------------------------------------------------------------------------- /include/grpc/impl/connectivity_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/connectivity_state.h -------------------------------------------------------------------------------- /include/grpc/impl/grpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/grpc_types.h -------------------------------------------------------------------------------- /include/grpc/impl/propagation_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/propagation_bits.h -------------------------------------------------------------------------------- /include/grpc/impl/slice_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/impl/slice_type.h -------------------------------------------------------------------------------- /include/grpc/load_reporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/load_reporting.h -------------------------------------------------------------------------------- /include/grpc/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/module.modulemap -------------------------------------------------------------------------------- /include/grpc/passive_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/passive_listener.h -------------------------------------------------------------------------------- /include/grpc/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/slice.h -------------------------------------------------------------------------------- /include/grpc/slice_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/slice_buffer.h -------------------------------------------------------------------------------- /include/grpc/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/status.h -------------------------------------------------------------------------------- /include/grpc/support/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/alloc.h -------------------------------------------------------------------------------- /include/grpc/support/atm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/atm.h -------------------------------------------------------------------------------- /include/grpc/support/atm_gcc_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/atm_gcc_atomic.h -------------------------------------------------------------------------------- /include/grpc/support/atm_gcc_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/atm_gcc_sync.h -------------------------------------------------------------------------------- /include/grpc/support/atm_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/atm_windows.h -------------------------------------------------------------------------------- /include/grpc/support/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/cpu.h -------------------------------------------------------------------------------- /include/grpc/support/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/json.h -------------------------------------------------------------------------------- /include/grpc/support/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/log.h -------------------------------------------------------------------------------- /include/grpc/support/log_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/log_windows.h -------------------------------------------------------------------------------- /include/grpc/support/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/metrics.h -------------------------------------------------------------------------------- /include/grpc/support/port_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/port_platform.h -------------------------------------------------------------------------------- /include/grpc/support/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/string_util.h -------------------------------------------------------------------------------- /include/grpc/support/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/sync.h -------------------------------------------------------------------------------- /include/grpc/support/sync_abseil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/sync_abseil.h -------------------------------------------------------------------------------- /include/grpc/support/sync_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/sync_custom.h -------------------------------------------------------------------------------- /include/grpc/support/sync_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/sync_generic.h -------------------------------------------------------------------------------- /include/grpc/support/sync_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/sync_posix.h -------------------------------------------------------------------------------- /include/grpc/support/sync_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/sync_windows.h -------------------------------------------------------------------------------- /include/grpc/support/thd_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/thd_id.h -------------------------------------------------------------------------------- /include/grpc/support/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/time.h -------------------------------------------------------------------------------- /include/grpc/support/workaround_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpc/support/workaround_list.h -------------------------------------------------------------------------------- /include/grpcpp/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/alarm.h -------------------------------------------------------------------------------- /include/grpcpp/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/channel.h -------------------------------------------------------------------------------- /include/grpcpp/client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/client_context.h -------------------------------------------------------------------------------- /include/grpcpp/completion_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/completion_queue.h -------------------------------------------------------------------------------- /include/grpcpp/create_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/create_channel.h -------------------------------------------------------------------------------- /include/grpcpp/create_channel_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/create_channel_posix.h -------------------------------------------------------------------------------- /include/grpcpp/generic/generic_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/generic/generic_stub.h -------------------------------------------------------------------------------- /include/grpcpp/grpcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/grpcpp.h -------------------------------------------------------------------------------- /include/grpcpp/impl/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/call.h -------------------------------------------------------------------------------- /include/grpcpp/impl/call_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/call_hook.h -------------------------------------------------------------------------------- /include/grpcpp/impl/call_op_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/call_op_set.h -------------------------------------------------------------------------------- /include/grpcpp/impl/channel_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/channel_interface.h -------------------------------------------------------------------------------- /include/grpcpp/impl/client_unary_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/client_unary_call.h -------------------------------------------------------------------------------- /include/grpcpp/impl/codegen/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/codegen/call.h -------------------------------------------------------------------------------- /include/grpcpp/impl/codegen/call_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/codegen/call_hook.h -------------------------------------------------------------------------------- /include/grpcpp/impl/codegen/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/codegen/config.h -------------------------------------------------------------------------------- /include/grpcpp/impl/codegen/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/codegen/slice.h -------------------------------------------------------------------------------- /include/grpcpp/impl/codegen/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/codegen/status.h -------------------------------------------------------------------------------- /include/grpcpp/impl/codegen/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/codegen/sync.h -------------------------------------------------------------------------------- /include/grpcpp/impl/codegen/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/codegen/time.h -------------------------------------------------------------------------------- /include/grpcpp/impl/generic_serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/generic_serialize.h -------------------------------------------------------------------------------- /include/grpcpp/impl/grpc_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/grpc_library.h -------------------------------------------------------------------------------- /include/grpcpp/impl/metadata_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/metadata_map.h -------------------------------------------------------------------------------- /include/grpcpp/impl/proto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/proto_utils.h -------------------------------------------------------------------------------- /include/grpcpp/impl/rpc_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/rpc_method.h -------------------------------------------------------------------------------- /include/grpcpp/impl/service_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/service_type.h -------------------------------------------------------------------------------- /include/grpcpp/impl/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/status.h -------------------------------------------------------------------------------- /include/grpcpp/impl/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/impl/sync.h -------------------------------------------------------------------------------- /include/grpcpp/passive_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/passive_listener.h -------------------------------------------------------------------------------- /include/grpcpp/ports_def.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/ports_def.inc -------------------------------------------------------------------------------- /include/grpcpp/ports_undef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/ports_undef.inc -------------------------------------------------------------------------------- /include/grpcpp/resource_quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/resource_quota.h -------------------------------------------------------------------------------- /include/grpcpp/security/audit_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/security/audit_logging.h -------------------------------------------------------------------------------- /include/grpcpp/security/auth_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/security/auth_context.h -------------------------------------------------------------------------------- /include/grpcpp/security/credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/security/credentials.h -------------------------------------------------------------------------------- /include/grpcpp/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/server.h -------------------------------------------------------------------------------- /include/grpcpp/server_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/server_builder.h -------------------------------------------------------------------------------- /include/grpcpp/server_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/server_context.h -------------------------------------------------------------------------------- /include/grpcpp/server_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/server_interface.h -------------------------------------------------------------------------------- /include/grpcpp/server_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/server_posix.h -------------------------------------------------------------------------------- /include/grpcpp/support/async_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/support/async_stream.h -------------------------------------------------------------------------------- /include/grpcpp/support/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/support/byte_buffer.h -------------------------------------------------------------------------------- /include/grpcpp/support/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/support/config.h -------------------------------------------------------------------------------- /include/grpcpp/support/interceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/support/interceptor.h -------------------------------------------------------------------------------- /include/grpcpp/support/method_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/support/method_handler.h -------------------------------------------------------------------------------- /include/grpcpp/support/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/support/slice.h -------------------------------------------------------------------------------- /include/grpcpp/support/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/support/status.h -------------------------------------------------------------------------------- /include/grpcpp/support/string_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/support/string_ref.h -------------------------------------------------------------------------------- /include/grpcpp/support/stub_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/support/stub_options.h -------------------------------------------------------------------------------- /include/grpcpp/support/sync_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/support/sync_stream.h -------------------------------------------------------------------------------- /include/grpcpp/support/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/support/time.h -------------------------------------------------------------------------------- /include/grpcpp/version_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/version_info.h -------------------------------------------------------------------------------- /include/grpcpp/xds_server_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/include/grpcpp/xds_server_builder.h -------------------------------------------------------------------------------- /scripts/build_commons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/build_commons.sh -------------------------------------------------------------------------------- /scripts/build_spm_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/build_spm_package.sh -------------------------------------------------------------------------------- /scripts/build_test_cocoapod_samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/build_test_cocoapod_samples.sh -------------------------------------------------------------------------------- /scripts/build_test_spm_samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/build_test_spm_samples.sh -------------------------------------------------------------------------------- /scripts/delete_pod_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/delete_pod_version.sh -------------------------------------------------------------------------------- /scripts/extract-grpc-ios-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/extract-grpc-ios-files.py -------------------------------------------------------------------------------- /scripts/lint_test_cocoapod_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/lint_test_cocoapod_spec.sh -------------------------------------------------------------------------------- /scripts/prepare_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/prepare_env.sh -------------------------------------------------------------------------------- /scripts/release_cocoapod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/release_cocoapod.sh -------------------------------------------------------------------------------- /scripts/skip_pod_push_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/skip_pod_push_lint.sh -------------------------------------------------------------------------------- /scripts/sync_grpc_src_shallow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/sync_grpc_src_shallow.sh -------------------------------------------------------------------------------- /scripts/wait_for_pod_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/scripts/wait_for_pod_release.sh -------------------------------------------------------------------------------- /spm-core-include/grpc: -------------------------------------------------------------------------------- 1 | ../include/grpc -------------------------------------------------------------------------------- /spm-cpp-include/grpcpp: -------------------------------------------------------------------------------- 1 | ../include/grpcpp -------------------------------------------------------------------------------- /src/core/call/call_arena_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/call_arena_allocator.cc -------------------------------------------------------------------------------- /src/core/call/call_arena_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/call_arena_allocator.h -------------------------------------------------------------------------------- /src/core/call/call_destination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/call_destination.h -------------------------------------------------------------------------------- /src/core/call/call_filters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/call_filters.cc -------------------------------------------------------------------------------- /src/core/call/call_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/call_filters.h -------------------------------------------------------------------------------- /src/core/call/call_finalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/call_finalization.h -------------------------------------------------------------------------------- /src/core/call/call_spine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/call_spine.cc -------------------------------------------------------------------------------- /src/core/call/call_spine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/call_spine.h -------------------------------------------------------------------------------- /src/core/call/call_state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/call_state.cc -------------------------------------------------------------------------------- /src/core/call/call_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/call_state.h -------------------------------------------------------------------------------- /src/core/call/client_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/client_call.cc -------------------------------------------------------------------------------- /src/core/call/client_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/client_call.h -------------------------------------------------------------------------------- /src/core/call/custom_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/custom_metadata.h -------------------------------------------------------------------------------- /src/core/call/filter_fusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/filter_fusion.h -------------------------------------------------------------------------------- /src/core/call/interception_chain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/interception_chain.cc -------------------------------------------------------------------------------- /src/core/call/interception_chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/interception_chain.h -------------------------------------------------------------------------------- /src/core/call/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/message.cc -------------------------------------------------------------------------------- /src/core/call/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/message.h -------------------------------------------------------------------------------- /src/core/call/metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/metadata.cc -------------------------------------------------------------------------------- /src/core/call/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/metadata.h -------------------------------------------------------------------------------- /src/core/call/metadata_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/metadata_batch.cc -------------------------------------------------------------------------------- /src/core/call/metadata_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/metadata_batch.h -------------------------------------------------------------------------------- /src/core/call/metadata_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/metadata_info.cc -------------------------------------------------------------------------------- /src/core/call/metadata_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/metadata_info.h -------------------------------------------------------------------------------- /src/core/call/parsed_metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/parsed_metadata.cc -------------------------------------------------------------------------------- /src/core/call/parsed_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/parsed_metadata.h -------------------------------------------------------------------------------- /src/core/call/request_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/request_buffer.cc -------------------------------------------------------------------------------- /src/core/call/request_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/request_buffer.h -------------------------------------------------------------------------------- /src/core/call/security_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/security_context.cc -------------------------------------------------------------------------------- /src/core/call/security_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/security_context.h -------------------------------------------------------------------------------- /src/core/call/server_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/server_call.cc -------------------------------------------------------------------------------- /src/core/call/server_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/server_call.h -------------------------------------------------------------------------------- /src/core/call/status_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/status_util.cc -------------------------------------------------------------------------------- /src/core/call/status_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/call/status_util.h -------------------------------------------------------------------------------- /src/core/channelz/channel_trace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/channel_trace.cc -------------------------------------------------------------------------------- /src/core/channelz/channel_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/channel_trace.h -------------------------------------------------------------------------------- /src/core/channelz/channelz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/channelz.cc -------------------------------------------------------------------------------- /src/core/channelz/channelz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/channelz.h -------------------------------------------------------------------------------- /src/core/channelz/channelz_registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/channelz_registry.cc -------------------------------------------------------------------------------- /src/core/channelz/channelz_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/channelz_registry.h -------------------------------------------------------------------------------- /src/core/channelz/property_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/property_list.cc -------------------------------------------------------------------------------- /src/core/channelz/property_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/property_list.h -------------------------------------------------------------------------------- /src/core/channelz/text_encode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/text_encode.cc -------------------------------------------------------------------------------- /src/core/channelz/text_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/text_encode.h -------------------------------------------------------------------------------- /src/core/channelz/v2tov1/convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/v2tov1/convert.cc -------------------------------------------------------------------------------- /src/core/channelz/v2tov1/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/v2tov1/convert.h -------------------------------------------------------------------------------- /src/core/channelz/v2tov1/legacy_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/v2tov1/legacy_api.cc -------------------------------------------------------------------------------- /src/core/channelz/v2tov1/legacy_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/v2tov1/legacy_api.h -------------------------------------------------------------------------------- /src/core/channelz/ztrace_collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/channelz/ztrace_collector.h -------------------------------------------------------------------------------- /src/core/client_channel/backup_poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/client_channel/backup_poller.h -------------------------------------------------------------------------------- /src/core/client_channel/connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/client_channel/connector.h -------------------------------------------------------------------------------- /src/core/client_channel/lb_metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/client_channel/lb_metadata.cc -------------------------------------------------------------------------------- /src/core/client_channel/lb_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/client_channel/lb_metadata.h -------------------------------------------------------------------------------- /src/core/client_channel/retry_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/client_channel/retry_filter.cc -------------------------------------------------------------------------------- /src/core/client_channel/retry_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/client_channel/retry_filter.h -------------------------------------------------------------------------------- /src/core/client_channel/subchannel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/client_channel/subchannel.cc -------------------------------------------------------------------------------- /src/core/client_channel/subchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/client_channel/subchannel.h -------------------------------------------------------------------------------- /src/core/config/config_vars.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/config/config_vars.cc -------------------------------------------------------------------------------- /src/core/config/config_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/config/config_vars.h -------------------------------------------------------------------------------- /src/core/config/core_configuration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/config/core_configuration.cc -------------------------------------------------------------------------------- /src/core/config/core_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/config/core_configuration.h -------------------------------------------------------------------------------- /src/core/config/load_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/config/load_config.cc -------------------------------------------------------------------------------- /src/core/config/load_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/config/load_config.h -------------------------------------------------------------------------------- /src/core/credentials/call/json_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/credentials/call/json_util.cc -------------------------------------------------------------------------------- /src/core/credentials/call/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/credentials/call/json_util.h -------------------------------------------------------------------------------- /src/core/credentials/call/jwt_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/credentials/call/jwt_util.cc -------------------------------------------------------------------------------- /src/core/credentials/call/jwt_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/credentials/call/jwt_util.h -------------------------------------------------------------------------------- /src/core/ext/filters/rbac/rbac_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/ext/filters/rbac/rbac_filter.h -------------------------------------------------------------------------------- /src/core/filter/auth/auth_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/filter/auth/auth_filters.h -------------------------------------------------------------------------------- /src/core/filter/blackboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/filter/blackboard.cc -------------------------------------------------------------------------------- /src/core/filter/blackboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/filter/blackboard.h -------------------------------------------------------------------------------- /src/core/filter/filter_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/filter/filter_args.h -------------------------------------------------------------------------------- /src/core/filter/fused_filters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/filter/fused_filters.cc -------------------------------------------------------------------------------- /src/core/handshaker/handshaker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/handshaker/handshaker.cc -------------------------------------------------------------------------------- /src/core/handshaker/handshaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/handshaker/handshaker.h -------------------------------------------------------------------------------- /src/core/handshaker/proxy_mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/handshaker/proxy_mapper.h -------------------------------------------------------------------------------- /src/core/lib/channel/channel_args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/channel/channel_args.cc -------------------------------------------------------------------------------- /src/core/lib/channel/channel_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/channel/channel_args.h -------------------------------------------------------------------------------- /src/core/lib/channel/channel_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/channel/channel_fwd.h -------------------------------------------------------------------------------- /src/core/lib/channel/channel_stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/channel/channel_stack.cc -------------------------------------------------------------------------------- /src/core/lib/channel/channel_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/channel/channel_stack.h -------------------------------------------------------------------------------- /src/core/lib/compression/compression.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/compression/compression.cc -------------------------------------------------------------------------------- /src/core/lib/debug/trace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/debug/trace.cc -------------------------------------------------------------------------------- /src/core/lib/debug/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/debug/trace.h -------------------------------------------------------------------------------- /src/core/lib/debug/trace_flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/debug/trace_flags.cc -------------------------------------------------------------------------------- /src/core/lib/debug/trace_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/debug/trace_flags.h -------------------------------------------------------------------------------- /src/core/lib/debug/trace_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/debug/trace_impl.h -------------------------------------------------------------------------------- /src/core/lib/event_engine/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/event_engine/nameser.h -------------------------------------------------------------------------------- /src/core/lib/event_engine/poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/event_engine/poller.h -------------------------------------------------------------------------------- /src/core/lib/event_engine/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/event_engine/posix.h -------------------------------------------------------------------------------- /src/core/lib/event_engine/shim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/event_engine/shim.cc -------------------------------------------------------------------------------- /src/core/lib/event_engine/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/event_engine/shim.h -------------------------------------------------------------------------------- /src/core/lib/event_engine/slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/event_engine/slice.cc -------------------------------------------------------------------------------- /src/core/lib/event_engine/time_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/event_engine/time_util.cc -------------------------------------------------------------------------------- /src/core/lib/event_engine/time_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/event_engine/time_util.h -------------------------------------------------------------------------------- /src/core/lib/event_engine/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/event_engine/utils.cc -------------------------------------------------------------------------------- /src/core/lib/event_engine/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/event_engine/utils.h -------------------------------------------------------------------------------- /src/core/lib/experiments/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/experiments/config.cc -------------------------------------------------------------------------------- /src/core/lib/experiments/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/experiments/config.h -------------------------------------------------------------------------------- /src/core/lib/experiments/experiments.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/experiments/experiments.cc -------------------------------------------------------------------------------- /src/core/lib/experiments/experiments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/experiments/experiments.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/block_annotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/block_annotate.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/buffer_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/buffer_list.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/buffer_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/buffer_list.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/call_combiner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/call_combiner.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/call_combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/call_combiner.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/cfstream_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/cfstream_handle.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/cfstream_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/cfstream_handle.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/closure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/closure.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/closure.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/combiner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/combiner.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/combiner.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/endpoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/endpoint.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/endpoint.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/endpoint_cfstream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/endpoint_cfstream.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/endpoint_cfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/endpoint_cfstream.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/endpoint_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/endpoint_pair.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/error.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/error.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/error_cfstream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/error_cfstream.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/error_cfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/error_cfstream.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/ev_apple.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/ev_apple.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/ev_apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/ev_apple.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/ev_epoll1_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/ev_epoll1_linux.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/ev_epoll1_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/ev_epoll1_linux.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/ev_poll_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/ev_poll_posix.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/ev_poll_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/ev_poll_posix.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/ev_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/ev_posix.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/ev_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/ev_posix.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/exec_ctx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/exec_ctx.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/exec_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/exec_ctx.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/fork_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/fork_posix.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/fork_windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/fork_windows.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/internal_errqueue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/internal_errqueue.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/internal_errqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/internal_errqueue.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/iocp_windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/iocp_windows.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/iocp_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/iocp_windows.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/iomgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/iomgr.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/iomgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/iomgr.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/iomgr_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/iomgr_fwd.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/iomgr_internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/iomgr_internal.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/iomgr_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/iomgr_internal.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/iomgr_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/iomgr_posix.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/iomgr_windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/iomgr_windows.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/lockfree_event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/lockfree_event.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/lockfree_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/lockfree_event.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/nameser.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/polling_entity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/polling_entity.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/polling_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/polling_entity.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/pollset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/pollset.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/pollset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/pollset.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/pollset_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/pollset_set.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/pollset_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/pollset_set.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/pollset_windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/pollset_windows.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/pollset_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/pollset_windows.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/port.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/resolve_address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/resolve_address.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/resolve_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/resolve_address.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/resolved_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/resolved_address.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/sockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/sockaddr.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/sockaddr_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/sockaddr_posix.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/sockaddr_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/sockaddr_windows.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/socket_mutator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/socket_mutator.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/socket_mutator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/socket_mutator.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/socket_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/socket_utils.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/socket_utils_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/socket_utils_posix.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/socket_windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/socket_windows.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/socket_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/socket_windows.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/systemd_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/systemd_utils.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/systemd_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/systemd_utils.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/tcp_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/tcp_client.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/tcp_client.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/tcp_client_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/tcp_client_posix.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/tcp_client_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/tcp_client_posix.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/tcp_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/tcp_posix.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/tcp_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/tcp_posix.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/tcp_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/tcp_server.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/tcp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/tcp_server.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/tcp_server_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/tcp_server_posix.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/tcp_windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/tcp_windows.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/tcp_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/tcp_windows.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/timer.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/timer.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/timer_generic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/timer_generic.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/timer_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/timer_generic.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/timer_heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/timer_heap.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/timer_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/timer_heap.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/timer_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/timer_manager.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/timer_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/timer_manager.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/unix_sockets_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/unix_sockets_posix.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/vsock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/vsock.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/vsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/vsock.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/wakeup_fd_eventfd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/wakeup_fd_eventfd.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/wakeup_fd_pipe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/wakeup_fd_pipe.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/wakeup_fd_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/wakeup_fd_pipe.h -------------------------------------------------------------------------------- /src/core/lib/iomgr/wakeup_fd_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/wakeup_fd_posix.cc -------------------------------------------------------------------------------- /src/core/lib/iomgr/wakeup_fd_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/iomgr/wakeup_fd_posix.h -------------------------------------------------------------------------------- /src/core/lib/promise/activity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/activity.cc -------------------------------------------------------------------------------- /src/core/lib/promise/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/activity.h -------------------------------------------------------------------------------- /src/core/lib/promise/all_ok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/all_ok.h -------------------------------------------------------------------------------- /src/core/lib/promise/arena_promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/arena_promise.h -------------------------------------------------------------------------------- /src/core/lib/promise/cancel_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/cancel_callback.h -------------------------------------------------------------------------------- /src/core/lib/promise/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/context.h -------------------------------------------------------------------------------- /src/core/lib/promise/detail/basic_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/detail/basic_seq.h -------------------------------------------------------------------------------- /src/core/lib/promise/detail/seq_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/detail/seq_state.h -------------------------------------------------------------------------------- /src/core/lib/promise/detail/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/detail/status.h -------------------------------------------------------------------------------- /src/core/lib/promise/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/for_each.h -------------------------------------------------------------------------------- /src/core/lib/promise/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/if.h -------------------------------------------------------------------------------- /src/core/lib/promise/interceptor_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/interceptor_list.h -------------------------------------------------------------------------------- /src/core/lib/promise/latch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/latch.h -------------------------------------------------------------------------------- /src/core/lib/promise/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/loop.h -------------------------------------------------------------------------------- /src/core/lib/promise/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/map.h -------------------------------------------------------------------------------- /src/core/lib/promise/match_promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/match_promise.h -------------------------------------------------------------------------------- /src/core/lib/promise/mpsc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/mpsc.cc -------------------------------------------------------------------------------- /src/core/lib/promise/mpsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/mpsc.h -------------------------------------------------------------------------------- /src/core/lib/promise/observable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/observable.h -------------------------------------------------------------------------------- /src/core/lib/promise/party.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/party.cc -------------------------------------------------------------------------------- /src/core/lib/promise/party.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/party.h -------------------------------------------------------------------------------- /src/core/lib/promise/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/pipe.h -------------------------------------------------------------------------------- /src/core/lib/promise/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/poll.h -------------------------------------------------------------------------------- /src/core/lib/promise/prioritized_race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/prioritized_race.h -------------------------------------------------------------------------------- /src/core/lib/promise/promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/promise.h -------------------------------------------------------------------------------- /src/core/lib/promise/race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/race.h -------------------------------------------------------------------------------- /src/core/lib/promise/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/seq.h -------------------------------------------------------------------------------- /src/core/lib/promise/sleep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/sleep.cc -------------------------------------------------------------------------------- /src/core/lib/promise/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/sleep.h -------------------------------------------------------------------------------- /src/core/lib/promise/status_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/status_flag.h -------------------------------------------------------------------------------- /src/core/lib/promise/try_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/try_join.h -------------------------------------------------------------------------------- /src/core/lib/promise/try_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/try_seq.h -------------------------------------------------------------------------------- /src/core/lib/promise/wait_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/wait_set.cc -------------------------------------------------------------------------------- /src/core/lib/promise/wait_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/promise/wait_set.h -------------------------------------------------------------------------------- /src/core/lib/resource_quota/api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/resource_quota/api.cc -------------------------------------------------------------------------------- /src/core/lib/resource_quota/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/resource_quota/api.h -------------------------------------------------------------------------------- /src/core/lib/resource_quota/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/resource_quota/arena.cc -------------------------------------------------------------------------------- /src/core/lib/resource_quota/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/resource_quota/arena.h -------------------------------------------------------------------------------- /src/core/lib/resource_quota/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/resource_quota/telemetry.h -------------------------------------------------------------------------------- /src/core/lib/slice/percent_encoding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/slice/percent_encoding.cc -------------------------------------------------------------------------------- /src/core/lib/slice/percent_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/slice/percent_encoding.h -------------------------------------------------------------------------------- /src/core/lib/slice/slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/slice/slice.cc -------------------------------------------------------------------------------- /src/core/lib/slice/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/slice/slice.h -------------------------------------------------------------------------------- /src/core/lib/slice/slice_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/slice/slice_buffer.cc -------------------------------------------------------------------------------- /src/core/lib/slice/slice_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/slice/slice_buffer.h -------------------------------------------------------------------------------- /src/core/lib/slice/slice_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/slice/slice_internal.h -------------------------------------------------------------------------------- /src/core/lib/slice/slice_refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/slice/slice_refcount.h -------------------------------------------------------------------------------- /src/core/lib/surface/byte_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/byte_buffer.cc -------------------------------------------------------------------------------- /src/core/lib/surface/call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/call.cc -------------------------------------------------------------------------------- /src/core/lib/surface/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/call.h -------------------------------------------------------------------------------- /src/core/lib/surface/call_details.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/call_details.cc -------------------------------------------------------------------------------- /src/core/lib/surface/call_log_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/call_log_batch.cc -------------------------------------------------------------------------------- /src/core/lib/surface/call_test_only.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/call_test_only.h -------------------------------------------------------------------------------- /src/core/lib/surface/call_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/call_utils.cc -------------------------------------------------------------------------------- /src/core/lib/surface/call_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/call_utils.h -------------------------------------------------------------------------------- /src/core/lib/surface/channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/channel.cc -------------------------------------------------------------------------------- /src/core/lib/surface/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/channel.h -------------------------------------------------------------------------------- /src/core/lib/surface/channel_create.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/channel_create.cc -------------------------------------------------------------------------------- /src/core/lib/surface/channel_create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/channel_create.h -------------------------------------------------------------------------------- /src/core/lib/surface/channel_init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/channel_init.cc -------------------------------------------------------------------------------- /src/core/lib/surface/channel_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/channel_init.h -------------------------------------------------------------------------------- /src/core/lib/surface/completion_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/completion_queue.h -------------------------------------------------------------------------------- /src/core/lib/surface/event_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/event_string.cc -------------------------------------------------------------------------------- /src/core/lib/surface/event_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/event_string.h -------------------------------------------------------------------------------- /src/core/lib/surface/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/init.cc -------------------------------------------------------------------------------- /src/core/lib/surface/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/init.h -------------------------------------------------------------------------------- /src/core/lib/surface/init_internally.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/init_internally.cc -------------------------------------------------------------------------------- /src/core/lib/surface/init_internally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/init_internally.h -------------------------------------------------------------------------------- /src/core/lib/surface/lame_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/lame_client.cc -------------------------------------------------------------------------------- /src/core/lib/surface/lame_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/lame_client.h -------------------------------------------------------------------------------- /src/core/lib/surface/legacy_channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/legacy_channel.cc -------------------------------------------------------------------------------- /src/core/lib/surface/legacy_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/legacy_channel.h -------------------------------------------------------------------------------- /src/core/lib/surface/metadata_array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/metadata_array.cc -------------------------------------------------------------------------------- /src/core/lib/surface/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/surface/version.cc -------------------------------------------------------------------------------- /src/core/lib/transport/bdp_estimator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/transport/bdp_estimator.cc -------------------------------------------------------------------------------- /src/core/lib/transport/bdp_estimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/transport/bdp_estimator.h -------------------------------------------------------------------------------- /src/core/lib/transport/error_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/transport/error_utils.cc -------------------------------------------------------------------------------- /src/core/lib/transport/error_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/transport/error_utils.h -------------------------------------------------------------------------------- /src/core/lib/transport/transport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/transport/transport.cc -------------------------------------------------------------------------------- /src/core/lib/transport/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/transport/transport.h -------------------------------------------------------------------------------- /src/core/lib/transport/transport_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/lib/transport/transport_fwd.h -------------------------------------------------------------------------------- /src/core/load_balancing/endpoint_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/load_balancing/endpoint_list.h -------------------------------------------------------------------------------- /src/core/load_balancing/grpclb/grpclb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/load_balancing/grpclb/grpclb.h -------------------------------------------------------------------------------- /src/core/load_balancing/lb_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/load_balancing/lb_policy.cc -------------------------------------------------------------------------------- /src/core/load_balancing/lb_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/load_balancing/lb_policy.h -------------------------------------------------------------------------------- /src/core/load_balancing/rls/rls.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/load_balancing/rls/rls.cc -------------------------------------------------------------------------------- /src/core/load_balancing/rls/rls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/load_balancing/rls/rls.h -------------------------------------------------------------------------------- /src/core/load_balancing/xds/cds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/load_balancing/xds/cds.cc -------------------------------------------------------------------------------- /src/core/net/socket_mutator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/net/socket_mutator.cc -------------------------------------------------------------------------------- /src/core/net/socket_mutator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/net/socket_mutator.h -------------------------------------------------------------------------------- /src/core/resolver/endpoint_addresses.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/endpoint_addresses.cc -------------------------------------------------------------------------------- /src/core/resolver/endpoint_addresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/endpoint_addresses.h -------------------------------------------------------------------------------- /src/core/resolver/fake/fake_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/fake/fake_resolver.cc -------------------------------------------------------------------------------- /src/core/resolver/fake/fake_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/fake/fake_resolver.h -------------------------------------------------------------------------------- /src/core/resolver/polling_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/polling_resolver.cc -------------------------------------------------------------------------------- /src/core/resolver/polling_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/polling_resolver.h -------------------------------------------------------------------------------- /src/core/resolver/resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/resolver.cc -------------------------------------------------------------------------------- /src/core/resolver/resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/resolver.h -------------------------------------------------------------------------------- /src/core/resolver/resolver_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/resolver_factory.h -------------------------------------------------------------------------------- /src/core/resolver/resolver_registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/resolver_registry.cc -------------------------------------------------------------------------------- /src/core/resolver/resolver_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/resolver_registry.h -------------------------------------------------------------------------------- /src/core/resolver/server_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/server_address.h -------------------------------------------------------------------------------- /src/core/resolver/xds/xds_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/xds/xds_config.cc -------------------------------------------------------------------------------- /src/core/resolver/xds/xds_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/xds/xds_config.h -------------------------------------------------------------------------------- /src/core/resolver/xds/xds_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/resolver/xds/xds_resolver.cc -------------------------------------------------------------------------------- /src/core/server/add_port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/server/add_port.cc -------------------------------------------------------------------------------- /src/core/server/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/server/server.cc -------------------------------------------------------------------------------- /src/core/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/server/server.h -------------------------------------------------------------------------------- /src/core/server/server_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/server/server_interface.h -------------------------------------------------------------------------------- /src/core/telemetry/call_tracer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/call_tracer.cc -------------------------------------------------------------------------------- /src/core/telemetry/call_tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/call_tracer.h -------------------------------------------------------------------------------- /src/core/telemetry/context_list_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/context_list_entry.h -------------------------------------------------------------------------------- /src/core/telemetry/default_tcp_tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/default_tcp_tracer.h -------------------------------------------------------------------------------- /src/core/telemetry/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/histogram.h -------------------------------------------------------------------------------- /src/core/telemetry/histogram_view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/histogram_view.cc -------------------------------------------------------------------------------- /src/core/telemetry/histogram_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/histogram_view.h -------------------------------------------------------------------------------- /src/core/telemetry/instrument.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/instrument.cc -------------------------------------------------------------------------------- /src/core/telemetry/instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/instrument.h -------------------------------------------------------------------------------- /src/core/telemetry/metrics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/metrics.cc -------------------------------------------------------------------------------- /src/core/telemetry/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/metrics.h -------------------------------------------------------------------------------- /src/core/telemetry/stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/stats.cc -------------------------------------------------------------------------------- /src/core/telemetry/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/stats.h -------------------------------------------------------------------------------- /src/core/telemetry/stats_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/stats_data.cc -------------------------------------------------------------------------------- /src/core/telemetry/stats_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/stats_data.h -------------------------------------------------------------------------------- /src/core/telemetry/tcp_tracer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/tcp_tracer.cc -------------------------------------------------------------------------------- /src/core/telemetry/tcp_tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/telemetry/tcp_tracer.h -------------------------------------------------------------------------------- /src/core/transport/auth_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/transport/auth_context.cc -------------------------------------------------------------------------------- /src/core/transport/auth_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/transport/auth_context.h -------------------------------------------------------------------------------- /src/core/transport/endpoint_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/transport/endpoint_transport.h -------------------------------------------------------------------------------- /src/core/tsi/alts/crypt/aes_gcm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/alts/crypt/aes_gcm.cc -------------------------------------------------------------------------------- /src/core/tsi/alts/crypt/gsec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/alts/crypt/gsec.cc -------------------------------------------------------------------------------- /src/core/tsi/alts/crypt/gsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/alts/crypt/gsec.h -------------------------------------------------------------------------------- /src/core/tsi/fake_transport_security.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/fake_transport_security.cc -------------------------------------------------------------------------------- /src/core/tsi/fake_transport_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/fake_transport_security.h -------------------------------------------------------------------------------- /src/core/tsi/local_transport_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/local_transport_security.h -------------------------------------------------------------------------------- /src/core/tsi/ssl_transport_security.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/ssl_transport_security.cc -------------------------------------------------------------------------------- /src/core/tsi/ssl_transport_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/ssl_transport_security.h -------------------------------------------------------------------------------- /src/core/tsi/ssl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/ssl_types.h -------------------------------------------------------------------------------- /src/core/tsi/transport_security.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/transport_security.cc -------------------------------------------------------------------------------- /src/core/tsi/transport_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/transport_security.h -------------------------------------------------------------------------------- /src/core/tsi/transport_security_grpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/transport_security_grpc.cc -------------------------------------------------------------------------------- /src/core/tsi/transport_security_grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/tsi/transport_security_grpc.h -------------------------------------------------------------------------------- /src/core/util/alloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/alloc.cc -------------------------------------------------------------------------------- /src/core/util/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/alloc.h -------------------------------------------------------------------------------- /src/core/util/atomic_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/atomic_utils.h -------------------------------------------------------------------------------- /src/core/util/avl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/avl.h -------------------------------------------------------------------------------- /src/core/util/backoff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/backoff.cc -------------------------------------------------------------------------------- /src/core/util/backoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/backoff.h -------------------------------------------------------------------------------- /src/core/util/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/bitset.h -------------------------------------------------------------------------------- /src/core/util/check_class_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/check_class_size.h -------------------------------------------------------------------------------- /src/core/util/chunked_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/chunked_vector.h -------------------------------------------------------------------------------- /src/core/util/construct_destruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/construct_destruct.h -------------------------------------------------------------------------------- /src/core/util/cpp_impl_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/cpp_impl_of.h -------------------------------------------------------------------------------- /src/core/util/crash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/crash.cc -------------------------------------------------------------------------------- /src/core/util/crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/crash.h -------------------------------------------------------------------------------- /src/core/util/debug_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/debug_location.h -------------------------------------------------------------------------------- /src/core/util/directory_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/directory_reader.h -------------------------------------------------------------------------------- /src/core/util/down_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/down_cast.h -------------------------------------------------------------------------------- /src/core/util/dual_ref_counted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/dual_ref_counted.h -------------------------------------------------------------------------------- /src/core/util/dump_args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/dump_args.cc -------------------------------------------------------------------------------- /src/core/util/dump_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/dump_args.h -------------------------------------------------------------------------------- /src/core/util/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/env.h -------------------------------------------------------------------------------- /src/core/util/event_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/event_log.cc -------------------------------------------------------------------------------- /src/core/util/event_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/event_log.h -------------------------------------------------------------------------------- /src/core/util/examine_stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/examine_stack.cc -------------------------------------------------------------------------------- /src/core/util/examine_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/examine_stack.h -------------------------------------------------------------------------------- /src/core/util/fork.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/fork.cc -------------------------------------------------------------------------------- /src/core/util/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/fork.h -------------------------------------------------------------------------------- /src/core/util/function_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/function_signature.h -------------------------------------------------------------------------------- /src/core/util/gcp_metadata_query.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/gcp_metadata_query.cc -------------------------------------------------------------------------------- /src/core/util/gcp_metadata_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/gcp_metadata_query.h -------------------------------------------------------------------------------- /src/core/util/gethostname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/gethostname.h -------------------------------------------------------------------------------- /src/core/util/gethostname_fallback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/gethostname_fallback.cc -------------------------------------------------------------------------------- /src/core/util/gethostname_sysconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/gethostname_sysconf.cc -------------------------------------------------------------------------------- /src/core/util/glob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/glob.cc -------------------------------------------------------------------------------- /src/core/util/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/glob.h -------------------------------------------------------------------------------- /src/core/util/gpr_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/gpr_time.cc -------------------------------------------------------------------------------- /src/core/util/grpc_check.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/grpc_check.cc -------------------------------------------------------------------------------- /src/core/util/grpc_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/grpc_check.h -------------------------------------------------------------------------------- /src/core/util/grpc_if_nametoindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/grpc_if_nametoindex.h -------------------------------------------------------------------------------- /src/core/util/host_port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/host_port.cc -------------------------------------------------------------------------------- /src/core/util/host_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/host_port.h -------------------------------------------------------------------------------- /src/core/util/http_client/httpcli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/http_client/httpcli.cc -------------------------------------------------------------------------------- /src/core/util/http_client/httpcli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/http_client/httpcli.h -------------------------------------------------------------------------------- /src/core/util/http_client/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/http_client/parser.cc -------------------------------------------------------------------------------- /src/core/util/http_client/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/http_client/parser.h -------------------------------------------------------------------------------- /src/core/util/if_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/if_list.h -------------------------------------------------------------------------------- /src/core/util/iphone/cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/iphone/cpu.cc -------------------------------------------------------------------------------- /src/core/util/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/json/json.h -------------------------------------------------------------------------------- /src/core/util/json/json_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/json/json_args.h -------------------------------------------------------------------------------- /src/core/util/json/json_channel_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/json/json_channel_args.h -------------------------------------------------------------------------------- /src/core/util/json/json_object_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/json/json_object_loader.h -------------------------------------------------------------------------------- /src/core/util/json/json_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/json/json_reader.cc -------------------------------------------------------------------------------- /src/core/util/json/json_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/json/json_reader.h -------------------------------------------------------------------------------- /src/core/util/json/json_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/json/json_util.cc -------------------------------------------------------------------------------- /src/core/util/json/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/json/json_util.h -------------------------------------------------------------------------------- /src/core/util/json/json_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/json/json_writer.cc -------------------------------------------------------------------------------- /src/core/util/json/json_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/json/json_writer.h -------------------------------------------------------------------------------- /src/core/util/latent_see.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/latent_see.cc -------------------------------------------------------------------------------- /src/core/util/latent_see.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/latent_see.h -------------------------------------------------------------------------------- /src/core/util/linux/cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/linux/cpu.cc -------------------------------------------------------------------------------- /src/core/util/linux/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/linux/env.cc -------------------------------------------------------------------------------- /src/core/util/load_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/load_file.cc -------------------------------------------------------------------------------- /src/core/util/load_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/load_file.h -------------------------------------------------------------------------------- /src/core/util/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/log.cc -------------------------------------------------------------------------------- /src/core/util/lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/lru_cache.h -------------------------------------------------------------------------------- /src/core/util/manual_constructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/manual_constructor.h -------------------------------------------------------------------------------- /src/core/util/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/match.h -------------------------------------------------------------------------------- /src/core/util/matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/matchers.cc -------------------------------------------------------------------------------- /src/core/util/matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/matchers.h -------------------------------------------------------------------------------- /src/core/util/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/memory.h -------------------------------------------------------------------------------- /src/core/util/memory_usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/memory_usage.h -------------------------------------------------------------------------------- /src/core/util/mpscq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/mpscq.cc -------------------------------------------------------------------------------- /src/core/util/mpscq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/mpscq.h -------------------------------------------------------------------------------- /src/core/util/msys/tmpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/msys/tmpfile.cc -------------------------------------------------------------------------------- /src/core/util/no_destruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/no_destruct.h -------------------------------------------------------------------------------- /src/core/util/notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/notification.h -------------------------------------------------------------------------------- /src/core/util/orphanable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/orphanable.h -------------------------------------------------------------------------------- /src/core/util/overload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/overload.h -------------------------------------------------------------------------------- /src/core/util/packed_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/packed_table.h -------------------------------------------------------------------------------- /src/core/util/per_cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/per_cpu.cc -------------------------------------------------------------------------------- /src/core/util/per_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/per_cpu.h -------------------------------------------------------------------------------- /src/core/util/posix/cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/posix/cpu.cc -------------------------------------------------------------------------------- /src/core/util/posix/directory_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/posix/directory_reader.cc -------------------------------------------------------------------------------- /src/core/util/posix/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/posix/env.cc -------------------------------------------------------------------------------- /src/core/util/posix/stat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/posix/stat.cc -------------------------------------------------------------------------------- /src/core/util/posix/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/posix/string.cc -------------------------------------------------------------------------------- /src/core/util/posix/sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/posix/sync.cc -------------------------------------------------------------------------------- /src/core/util/posix/thd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/posix/thd.cc -------------------------------------------------------------------------------- /src/core/util/posix/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/posix/time.cc -------------------------------------------------------------------------------- /src/core/util/posix/tmpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/posix/tmpfile.cc -------------------------------------------------------------------------------- /src/core/util/postmortem_emit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/postmortem_emit.cc -------------------------------------------------------------------------------- /src/core/util/postmortem_emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/postmortem_emit.h -------------------------------------------------------------------------------- /src/core/util/random_early_detection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/random_early_detection.cc -------------------------------------------------------------------------------- /src/core/util/random_early_detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/random_early_detection.h -------------------------------------------------------------------------------- /src/core/util/ref_counted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/ref_counted.h -------------------------------------------------------------------------------- /src/core/util/ref_counted_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/ref_counted_ptr.h -------------------------------------------------------------------------------- /src/core/util/ref_counted_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/ref_counted_string.cc -------------------------------------------------------------------------------- /src/core/util/ref_counted_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/ref_counted_string.h -------------------------------------------------------------------------------- /src/core/util/shared_bit_gen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/shared_bit_gen.cc -------------------------------------------------------------------------------- /src/core/util/shared_bit_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/shared_bit_gen.h -------------------------------------------------------------------------------- /src/core/util/single_set_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/single_set_ptr.h -------------------------------------------------------------------------------- /src/core/util/sorted_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/sorted_pack.h -------------------------------------------------------------------------------- /src/core/util/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/spinlock.h -------------------------------------------------------------------------------- /src/core/util/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/stat.h -------------------------------------------------------------------------------- /src/core/util/status_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/status_helper.cc -------------------------------------------------------------------------------- /src/core/util/status_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/status_helper.h -------------------------------------------------------------------------------- /src/core/util/strerror.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/strerror.cc -------------------------------------------------------------------------------- /src/core/util/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/strerror.h -------------------------------------------------------------------------------- /src/core/util/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/string.cc -------------------------------------------------------------------------------- /src/core/util/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/string.h -------------------------------------------------------------------------------- /src/core/util/sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/sync.cc -------------------------------------------------------------------------------- /src/core/util/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/sync.h -------------------------------------------------------------------------------- /src/core/util/sync_abseil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/sync_abseil.cc -------------------------------------------------------------------------------- /src/core/util/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/table.h -------------------------------------------------------------------------------- /src/core/util/tchar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/tchar.cc -------------------------------------------------------------------------------- /src/core/util/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/tchar.h -------------------------------------------------------------------------------- /src/core/util/thd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/thd.h -------------------------------------------------------------------------------- /src/core/util/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/time.cc -------------------------------------------------------------------------------- /src/core/util/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/time.h -------------------------------------------------------------------------------- /src/core/util/time_averaged_stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/time_averaged_stats.cc -------------------------------------------------------------------------------- /src/core/util/time_averaged_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/time_averaged_stats.h -------------------------------------------------------------------------------- /src/core/util/time_precise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/time_precise.cc -------------------------------------------------------------------------------- /src/core/util/time_precise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/time_precise.h -------------------------------------------------------------------------------- /src/core/util/time_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/time_util.cc -------------------------------------------------------------------------------- /src/core/util/time_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/time_util.h -------------------------------------------------------------------------------- /src/core/util/tmpfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/tmpfile.h -------------------------------------------------------------------------------- /src/core/util/trie_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/trie_lookup.h -------------------------------------------------------------------------------- /src/core/util/type_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/type_list.h -------------------------------------------------------------------------------- /src/core/util/unique_ptr_with_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/unique_ptr_with_bitset.h -------------------------------------------------------------------------------- /src/core/util/unique_type_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/unique_type_name.h -------------------------------------------------------------------------------- /src/core/util/upb_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/upb_utils.h -------------------------------------------------------------------------------- /src/core/util/uri.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/uri.cc -------------------------------------------------------------------------------- /src/core/util/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/uri.h -------------------------------------------------------------------------------- /src/core/util/useful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/useful.h -------------------------------------------------------------------------------- /src/core/util/uuid_v4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/uuid_v4.cc -------------------------------------------------------------------------------- /src/core/util/uuid_v4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/uuid_v4.h -------------------------------------------------------------------------------- /src/core/util/validation_errors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/validation_errors.cc -------------------------------------------------------------------------------- /src/core/util/validation_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/validation_errors.h -------------------------------------------------------------------------------- /src/core/util/wait_for_single_owner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/wait_for_single_owner.cc -------------------------------------------------------------------------------- /src/core/util/wait_for_single_owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/wait_for_single_owner.h -------------------------------------------------------------------------------- /src/core/util/windows/cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/windows/cpu.cc -------------------------------------------------------------------------------- /src/core/util/windows/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/windows/env.cc -------------------------------------------------------------------------------- /src/core/util/windows/stat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/windows/stat.cc -------------------------------------------------------------------------------- /src/core/util/windows/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/windows/string.cc -------------------------------------------------------------------------------- /src/core/util/windows/string_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/windows/string_util.cc -------------------------------------------------------------------------------- /src/core/util/windows/sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/windows/sync.cc -------------------------------------------------------------------------------- /src/core/util/windows/thd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/windows/thd.cc -------------------------------------------------------------------------------- /src/core/util/windows/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/windows/time.cc -------------------------------------------------------------------------------- /src/core/util/windows/tmpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/windows/tmpfile.cc -------------------------------------------------------------------------------- /src/core/util/work_serializer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/work_serializer.cc -------------------------------------------------------------------------------- /src/core/util/work_serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/work_serializer.h -------------------------------------------------------------------------------- /src/core/util/xxhash_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/util/xxhash_inline.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_bootstrap_grpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_bootstrap_grpc.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_bootstrap_grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_bootstrap_grpc.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_client_grpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_client_grpc.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_client_grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_client_grpc.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_cluster.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_cluster.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_cluster.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_cluster_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_cluster_parser.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_cluster_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_cluster_parser.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_common_types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_common_types.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_common_types.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_enabled_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_enabled_server.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_endpoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_endpoint.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_endpoint.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_endpoint_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_endpoint_parser.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_health_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_health_status.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_http_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_http_filter.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_listener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_listener.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_listener.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_matcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_matcher.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_matcher.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_matcher_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_matcher_input.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_matcher_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_matcher_parse.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_metadata.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_metadata.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_route_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_route_config.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_route_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_route_config.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_routing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_routing.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_routing.h -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_server_grpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_server_grpc.cc -------------------------------------------------------------------------------- /src/core/xds/grpc/xds_server_grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/grpc/xds_server_grpc.h -------------------------------------------------------------------------------- /src/core/xds/xds_client/lrs_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/xds_client/lrs_client.cc -------------------------------------------------------------------------------- /src/core/xds/xds_client/lrs_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/xds_client/lrs_client.h -------------------------------------------------------------------------------- /src/core/xds/xds_client/xds_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/xds_client/xds_api.cc -------------------------------------------------------------------------------- /src/core/xds/xds_client/xds_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/xds_client/xds_api.h -------------------------------------------------------------------------------- /src/core/xds/xds_client/xds_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/xds_client/xds_client.cc -------------------------------------------------------------------------------- /src/core/xds/xds_client/xds_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/xds_client/xds_client.h -------------------------------------------------------------------------------- /src/core/xds/xds_client/xds_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/core/xds/xds_client/xds_metrics.h -------------------------------------------------------------------------------- /src/cpp/client/call_credentials.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/client/call_credentials.cc -------------------------------------------------------------------------------- /src/cpp/client/channel_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/client/channel_cc.cc -------------------------------------------------------------------------------- /src/cpp/client/channel_credentials.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/client/channel_credentials.cc -------------------------------------------------------------------------------- /src/cpp/client/client_callback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/client/client_callback.cc -------------------------------------------------------------------------------- /src/cpp/client/client_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/client/client_context.cc -------------------------------------------------------------------------------- /src/cpp/client/client_interceptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/client/client_interceptor.cc -------------------------------------------------------------------------------- /src/cpp/client/create_channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/client/create_channel.cc -------------------------------------------------------------------------------- /src/cpp/client/secure_credentials.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/client/secure_credentials.cc -------------------------------------------------------------------------------- /src/cpp/client/secure_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/client/secure_credentials.h -------------------------------------------------------------------------------- /src/cpp/client/xds_credentials.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/client/xds_credentials.cc -------------------------------------------------------------------------------- /src/cpp/common/alarm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/common/alarm.cc -------------------------------------------------------------------------------- /src/cpp/common/channel_arguments.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/common/channel_arguments.cc -------------------------------------------------------------------------------- /src/cpp/common/completion_queue_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/common/completion_queue_cc.cc -------------------------------------------------------------------------------- /src/cpp/common/resource_quota_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/common/resource_quota_cc.cc -------------------------------------------------------------------------------- /src/cpp/common/rpc_method.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/common/rpc_method.cc -------------------------------------------------------------------------------- /src/cpp/common/secure_auth_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/common/secure_auth_context.cc -------------------------------------------------------------------------------- /src/cpp/common/secure_auth_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/common/secure_auth_context.h -------------------------------------------------------------------------------- /src/cpp/common/version_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/common/version_cc.cc -------------------------------------------------------------------------------- /src/cpp/server/dynamic_thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/server/dynamic_thread_pool.h -------------------------------------------------------------------------------- /src/cpp/server/server_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/server/server_builder.cc -------------------------------------------------------------------------------- /src/cpp/server/server_callback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/server/server_callback.cc -------------------------------------------------------------------------------- /src/cpp/server/server_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/server/server_cc.cc -------------------------------------------------------------------------------- /src/cpp/server/server_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/server/server_context.cc -------------------------------------------------------------------------------- /src/cpp/server/server_credentials.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/server/server_credentials.cc -------------------------------------------------------------------------------- /src/cpp/server/server_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/server/server_posix.cc -------------------------------------------------------------------------------- /src/cpp/server/xds_server_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/server/xds_server_builder.cc -------------------------------------------------------------------------------- /src/cpp/util/byte_buffer_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/util/byte_buffer_cc.cc -------------------------------------------------------------------------------- /src/cpp/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/util/status.cc -------------------------------------------------------------------------------- /src/cpp/util/string_ref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/util/string_ref.cc -------------------------------------------------------------------------------- /src/cpp/util/time_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/cpp/util/time_cc.cc -------------------------------------------------------------------------------- /src/objective-c/GRPCClient/GRPCCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/objective-c/GRPCClient/GRPCCall.h -------------------------------------------------------------------------------- /src/objective-c/GRPCClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/objective-c/GRPCClient/README.md -------------------------------------------------------------------------------- /src/objective-c/GRPCClient/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/objective-c/GRPCClient/version.h -------------------------------------------------------------------------------- /src/objective-c/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/objective-c/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/objective-c/ProtoRPC/ProtoRPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/objective-c/ProtoRPC/ProtoRPC.h -------------------------------------------------------------------------------- /src/objective-c/ProtoRPC/ProtoRPC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/objective-c/ProtoRPC/ProtoRPC.m -------------------------------------------------------------------------------- /src/objective-c/RxLibrary/GRXWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/objective-c/RxLibrary/GRXWriter.h -------------------------------------------------------------------------------- /src/objective-c/RxLibrary/GRXWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/objective-c/RxLibrary/GRXWriter.m -------------------------------------------------------------------------------- /src/objective-c/RxLibrary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/src/objective-c/RxLibrary/README.md -------------------------------------------------------------------------------- /tests/cocoapod/gRPCSample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/tests/cocoapod/gRPCSample/Podfile -------------------------------------------------------------------------------- /tests/spm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/tests/spm/README.md -------------------------------------------------------------------------------- /tests/spm/gRPCSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/tests/spm/gRPCSample/README.md -------------------------------------------------------------------------------- /tests/spm/gRPCSample/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/tests/spm/gRPCSample/build.xcconfig -------------------------------------------------------------------------------- /tests/spm_build/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/tests/spm_build/test.cc -------------------------------------------------------------------------------- /third_party/re2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/LICENSE -------------------------------------------------------------------------------- /third_party/re2/re2/bitmap256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/bitmap256.h -------------------------------------------------------------------------------- /third_party/re2/re2/bitstate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/bitstate.cc -------------------------------------------------------------------------------- /third_party/re2/re2/compile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/compile.cc -------------------------------------------------------------------------------- /third_party/re2/re2/dfa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/dfa.cc -------------------------------------------------------------------------------- /third_party/re2/re2/filtered_re2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/filtered_re2.cc -------------------------------------------------------------------------------- /third_party/re2/re2/filtered_re2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/filtered_re2.h -------------------------------------------------------------------------------- /third_party/re2/re2/mimics_pcre.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/mimics_pcre.cc -------------------------------------------------------------------------------- /third_party/re2/re2/nfa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/nfa.cc -------------------------------------------------------------------------------- /third_party/re2/re2/onepass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/onepass.cc -------------------------------------------------------------------------------- /third_party/re2/re2/parse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/parse.cc -------------------------------------------------------------------------------- /third_party/re2/re2/perl_groups.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/perl_groups.cc -------------------------------------------------------------------------------- /third_party/re2/re2/pod_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/pod_array.h -------------------------------------------------------------------------------- /third_party/re2/re2/prefilter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/prefilter.cc -------------------------------------------------------------------------------- /third_party/re2/re2/prefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/prefilter.h -------------------------------------------------------------------------------- /third_party/re2/re2/prefilter_tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/prefilter_tree.cc -------------------------------------------------------------------------------- /third_party/re2/re2/prefilter_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/prefilter_tree.h -------------------------------------------------------------------------------- /third_party/re2/re2/prog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/prog.cc -------------------------------------------------------------------------------- /third_party/re2/re2/prog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/prog.h -------------------------------------------------------------------------------- /third_party/re2/re2/re2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/re2.cc -------------------------------------------------------------------------------- /third_party/re2/re2/re2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/re2.h -------------------------------------------------------------------------------- /third_party/re2/re2/regexp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/regexp.cc -------------------------------------------------------------------------------- /third_party/re2/re2/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/regexp.h -------------------------------------------------------------------------------- /third_party/re2/re2/set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/set.cc -------------------------------------------------------------------------------- /third_party/re2/re2/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/set.h -------------------------------------------------------------------------------- /third_party/re2/re2/simplify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/simplify.cc -------------------------------------------------------------------------------- /third_party/re2/re2/sparse_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/sparse_array.h -------------------------------------------------------------------------------- /third_party/re2/re2/sparse_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/sparse_set.h -------------------------------------------------------------------------------- /third_party/re2/re2/stringpiece.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/stringpiece.cc -------------------------------------------------------------------------------- /third_party/re2/re2/stringpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/stringpiece.h -------------------------------------------------------------------------------- /third_party/re2/re2/tostring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/tostring.cc -------------------------------------------------------------------------------- /third_party/re2/re2/unicode_groups.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/unicode_groups.cc -------------------------------------------------------------------------------- /third_party/re2/re2/unicode_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/unicode_groups.h -------------------------------------------------------------------------------- /third_party/re2/re2/walker-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/re2/walker-inl.h -------------------------------------------------------------------------------- /third_party/re2/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/util/logging.h -------------------------------------------------------------------------------- /third_party/re2/util/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/util/mix.h -------------------------------------------------------------------------------- /third_party/re2/util/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/util/mutex.h -------------------------------------------------------------------------------- /third_party/re2/util/rune.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/util/rune.cc -------------------------------------------------------------------------------- /third_party/re2/util/strutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/util/strutil.cc -------------------------------------------------------------------------------- /third_party/re2/util/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/util/strutil.h -------------------------------------------------------------------------------- /third_party/re2/util/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/util/utf.h -------------------------------------------------------------------------------- /third_party/re2/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/re2/util/util.h -------------------------------------------------------------------------------- /third_party/upb/upb/base/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/base/status.c -------------------------------------------------------------------------------- /third_party/upb/upb/base/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/base/status.h -------------------------------------------------------------------------------- /third_party/upb/upb/base/status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/base/status.hpp -------------------------------------------------------------------------------- /third_party/upb/upb/base/upcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/base/upcast.h -------------------------------------------------------------------------------- /third_party/upb/upb/hash/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/hash/common.c -------------------------------------------------------------------------------- /third_party/upb/upb/hash/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/hash/common.h -------------------------------------------------------------------------------- /third_party/upb/upb/hash/int_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/hash/int_table.h -------------------------------------------------------------------------------- /third_party/upb/upb/hash/str_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/hash/str_table.h -------------------------------------------------------------------------------- /third_party/upb/upb/json/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/json/decode.c -------------------------------------------------------------------------------- /third_party/upb/upb/json/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/json/decode.h -------------------------------------------------------------------------------- /third_party/upb/upb/json/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/json/encode.c -------------------------------------------------------------------------------- /third_party/upb/upb/json/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/json/encode.h -------------------------------------------------------------------------------- /third_party/upb/upb/lex/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/lex/atoi.c -------------------------------------------------------------------------------- /third_party/upb/upb/lex/atoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/lex/atoi.h -------------------------------------------------------------------------------- /third_party/upb/upb/lex/round_trip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/lex/round_trip.c -------------------------------------------------------------------------------- /third_party/upb/upb/lex/round_trip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/lex/round_trip.h -------------------------------------------------------------------------------- /third_party/upb/upb/lex/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/lex/strtod.c -------------------------------------------------------------------------------- /third_party/upb/upb/lex/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/lex/strtod.h -------------------------------------------------------------------------------- /third_party/upb/upb/lex/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/lex/unicode.c -------------------------------------------------------------------------------- /third_party/upb/upb/lex/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/lex/unicode.h -------------------------------------------------------------------------------- /third_party/upb/upb/mem/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/mem/alloc.c -------------------------------------------------------------------------------- /third_party/upb/upb/mem/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/mem/alloc.h -------------------------------------------------------------------------------- /third_party/upb/upb/mem/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/mem/arena.c -------------------------------------------------------------------------------- /third_party/upb/upb/mem/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/mem/arena.h -------------------------------------------------------------------------------- /third_party/upb/upb/mem/arena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/mem/arena.hpp -------------------------------------------------------------------------------- /third_party/upb/upb/message/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/array.c -------------------------------------------------------------------------------- /third_party/upb/upb/message/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/array.h -------------------------------------------------------------------------------- /third_party/upb/upb/message/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/compat.c -------------------------------------------------------------------------------- /third_party/upb/upb/message/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/compat.h -------------------------------------------------------------------------------- /third_party/upb/upb/message/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/copy.c -------------------------------------------------------------------------------- /third_party/upb/upb/message/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/copy.h -------------------------------------------------------------------------------- /third_party/upb/upb/message/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/map.c -------------------------------------------------------------------------------- /third_party/upb/upb/message/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/map.h -------------------------------------------------------------------------------- /third_party/upb/upb/message/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/merge.c -------------------------------------------------------------------------------- /third_party/upb/upb/message/merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/merge.h -------------------------------------------------------------------------------- /third_party/upb/upb/message/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/message.c -------------------------------------------------------------------------------- /third_party/upb/upb/message/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/message.h -------------------------------------------------------------------------------- /third_party/upb/upb/message/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/message/value.h -------------------------------------------------------------------------------- /third_party/upb/upb/mini_table/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/mini_table/enum.h -------------------------------------------------------------------------------- /third_party/upb/upb/mini_table/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/mini_table/file.h -------------------------------------------------------------------------------- /third_party/upb/upb/mini_table/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/mini_table/sub.h -------------------------------------------------------------------------------- /third_party/upb/upb/port/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/port/atomic.h -------------------------------------------------------------------------------- /third_party/upb/upb/port/def.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/port/def.inc -------------------------------------------------------------------------------- /third_party/upb/upb/port/undef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/port/undef.inc -------------------------------------------------------------------------------- /third_party/upb/upb/reflection/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/reflection/def.h -------------------------------------------------------------------------------- /third_party/upb/upb/text/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/text/encode.c -------------------------------------------------------------------------------- /third_party/upb/upb/text/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/text/encode.h -------------------------------------------------------------------------------- /third_party/upb/upb/text/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/text/options.h -------------------------------------------------------------------------------- /third_party/upb/upb/wire/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/wire/decode.c -------------------------------------------------------------------------------- /third_party/upb/upb/wire/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/wire/decode.h -------------------------------------------------------------------------------- /third_party/upb/upb/wire/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/wire/encode.c -------------------------------------------------------------------------------- /third_party/upb/upb/wire/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/wire/encode.h -------------------------------------------------------------------------------- /third_party/upb/upb/wire/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/wire/reader.c -------------------------------------------------------------------------------- /third_party/upb/upb/wire/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/wire/reader.h -------------------------------------------------------------------------------- /third_party/upb/upb/wire/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/upb/upb/wire/types.h -------------------------------------------------------------------------------- /third_party/utf8_range/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/utf8_range/LICENSE -------------------------------------------------------------------------------- /third_party/utf8_range/utf8_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/utf8_range/utf8_range.c -------------------------------------------------------------------------------- /third_party/utf8_range/utf8_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/utf8_range/utf8_range.h -------------------------------------------------------------------------------- /third_party/xxhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/xxhash/LICENSE -------------------------------------------------------------------------------- /third_party/xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/xxhash/xxhash.h -------------------------------------------------------------------------------- /third_party/zlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/LICENSE -------------------------------------------------------------------------------- /third_party/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/adler32.c -------------------------------------------------------------------------------- /third_party/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/compress.c -------------------------------------------------------------------------------- /third_party/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/crc32.c -------------------------------------------------------------------------------- /third_party/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/crc32.h -------------------------------------------------------------------------------- /third_party/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/deflate.c -------------------------------------------------------------------------------- /third_party/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/deflate.h -------------------------------------------------------------------------------- /third_party/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/gzguts.h -------------------------------------------------------------------------------- /third_party/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/infback.c -------------------------------------------------------------------------------- /third_party/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/inffast.c -------------------------------------------------------------------------------- /third_party/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/inffast.h -------------------------------------------------------------------------------- /third_party/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/inffixed.h -------------------------------------------------------------------------------- /third_party/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/inflate.c -------------------------------------------------------------------------------- /third_party/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/inflate.h -------------------------------------------------------------------------------- /third_party/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/inftrees.c -------------------------------------------------------------------------------- /third_party/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/inftrees.h -------------------------------------------------------------------------------- /third_party/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/trees.c -------------------------------------------------------------------------------- /third_party/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/trees.h -------------------------------------------------------------------------------- /third_party/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/uncompr.c -------------------------------------------------------------------------------- /third_party/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/zconf.h -------------------------------------------------------------------------------- /third_party/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/zlib.h -------------------------------------------------------------------------------- /third_party/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/zutil.c -------------------------------------------------------------------------------- /third_party/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-ios/HEAD/third_party/zlib/zutil.h --------------------------------------------------------------------------------