grpc 1.63.0 → 1.72.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Makefile +480 -478
- data/include/grpc/compression.h +1 -2
- data/include/grpc/credentials.h +1221 -0
- data/include/grpc/event_engine/README.md +1 -1
- data/include/grpc/event_engine/endpoint_config.h +7 -7
- data/include/grpc/event_engine/event_engine.h +83 -20
- data/include/grpc/event_engine/extensible.h +5 -2
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +4 -4
- data/include/grpc/event_engine/internal/slice_cast.h +1 -1
- data/include/grpc/event_engine/memory_allocator.h +3 -4
- data/include/grpc/event_engine/memory_request.h +19 -2
- data/include/grpc/event_engine/slice.h +3 -5
- data/include/grpc/event_engine/slice_buffer.h +6 -8
- data/include/grpc/grpc.h +8 -2
- data/include/grpc/grpc_audit_logging.h +3 -3
- data/include/grpc/grpc_crl_provider.h +5 -4
- data/include/grpc/grpc_posix.h +1 -2
- data/include/grpc/grpc_security.h +1 -1173
- data/include/grpc/impl/call.h +2 -2
- data/include/grpc/impl/channel_arg_names.h +78 -55
- data/include/grpc/impl/grpc_types.h +1 -2
- data/include/grpc/impl/slice_type.h +1 -2
- data/include/grpc/module.modulemap +2 -0
- data/include/grpc/passive_listener.h +62 -0
- data/include/grpc/status.h +1 -1
- data/include/grpc/support/alloc.h +1 -2
- data/include/grpc/support/atm.h +0 -13
- data/include/grpc/support/json.h +17 -18
- data/include/grpc/support/log.h +37 -64
- data/include/grpc/support/metrics.h +21 -6
- data/include/grpc/support/port_platform.h +31 -1
- data/include/grpc/support/sync_generic.h +2 -4
- data/include/grpc/support/sync_posix.h +1 -2
- data/include/grpc/support/time.h +1 -2
- data/include/grpc/support/workaround_list.h +1 -4
- data/src/core/call/call_arena_allocator.cc +27 -0
- data/src/core/call/call_arena_allocator.h +91 -0
- data/src/core/call/call_destination.h +76 -0
- data/src/core/call/call_filters.cc +148 -0
- data/src/core/call/call_filters.h +1967 -0
- data/src/core/call/call_finalization.h +88 -0
- data/src/core/call/call_spine.cc +90 -0
- data/src/core/call/call_spine.h +644 -0
- data/src/core/call/call_state.cc +39 -0
- data/src/core/call/call_state.h +1154 -0
- data/src/core/call/client_call.cc +458 -0
- data/src/core/call/client_call.h +192 -0
- data/src/core/call/custom_metadata.h +30 -0
- data/src/core/call/interception_chain.cc +155 -0
- data/src/core/call/interception_chain.h +282 -0
- data/src/core/call/message.cc +44 -0
- data/src/core/call/message.h +70 -0
- data/src/core/call/metadata.cc +61 -0
- data/src/core/call/metadata.h +201 -0
- data/src/core/call/metadata_batch.cc +383 -0
- data/src/core/call/metadata_batch.h +1668 -0
- data/src/core/call/metadata_compression_traits.h +66 -0
- data/src/core/call/metadata_info.cc +73 -0
- data/src/core/call/metadata_info.h +85 -0
- data/src/core/call/parsed_metadata.cc +35 -0
- data/src/core/call/parsed_metadata.h +429 -0
- data/src/core/call/request_buffer.cc +224 -0
- data/src/core/call/request_buffer.h +192 -0
- data/src/core/call/security_context.cc +125 -0
- data/src/core/call/security_context.h +114 -0
- data/src/core/call/server_call.cc +259 -0
- data/src/core/call/server_call.h +169 -0
- data/src/core/call/simple_slice_based_metadata.h +53 -0
- data/src/core/call/status_util.cc +153 -0
- data/src/core/call/status_util.h +80 -0
- data/src/core/channelz/channel_trace.cc +180 -0
- data/src/core/channelz/channel_trace.h +138 -0
- data/src/core/channelz/channelz.cc +670 -0
- data/src/core/channelz/channelz.h +402 -0
- data/src/core/channelz/channelz_registry.cc +274 -0
- data/src/core/channelz/channelz_registry.h +101 -0
- data/src/core/client_channel/backup_poller.cc +25 -16
- data/src/core/client_channel/client_channel.cc +1423 -0
- data/src/core/client_channel/client_channel.h +246 -0
- data/src/core/client_channel/client_channel_args.h +21 -0
- data/src/core/client_channel/client_channel_factory.cc +2 -2
- data/src/core/client_channel/client_channel_factory.h +1 -2
- data/src/core/client_channel/client_channel_filter.cc +441 -1045
- data/src/core/client_channel/client_channel_filter.h +35 -88
- data/src/core/client_channel/client_channel_internal.h +26 -11
- data/src/core/client_channel/client_channel_plugin.cc +4 -18
- data/src/core/client_channel/client_channel_service_config.cc +3 -4
- data/src/core/client_channel/client_channel_service_config.h +13 -15
- data/src/core/client_channel/config_selector.h +26 -26
- data/src/core/client_channel/connector.h +4 -4
- data/src/core/client_channel/direct_channel.cc +83 -0
- data/src/core/client_channel/direct_channel.h +101 -0
- data/src/core/client_channel/dynamic_filters.cc +19 -17
- data/src/core/client_channel/dynamic_filters.h +9 -11
- data/src/core/client_channel/global_subchannel_pool.cc +2 -2
- data/src/core/client_channel/global_subchannel_pool.h +2 -3
- data/src/core/client_channel/lb_metadata.cc +119 -0
- data/src/core/client_channel/lb_metadata.h +55 -0
- data/src/core/client_channel/load_balanced_call_destination.cc +273 -0
- data/src/core/client_channel/load_balanced_call_destination.h +48 -0
- data/src/core/client_channel/local_subchannel_pool.cc +6 -7
- data/src/core/client_channel/local_subchannel_pool.h +1 -1
- data/src/core/client_channel/retry_filter.cc +9 -18
- data/src/core/client_channel/retry_filter.h +10 -18
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +259 -368
- data/src/core/client_channel/retry_filter_legacy_call_data.h +22 -25
- data/src/core/client_channel/retry_interceptor.cc +408 -0
- data/src/core/client_channel/retry_interceptor.h +157 -0
- data/src/core/client_channel/retry_service_config.cc +12 -15
- data/src/core/client_channel/retry_service_config.h +23 -12
- data/src/core/client_channel/retry_throttle.cc +60 -50
- data/src/core/client_channel/retry_throttle.h +16 -11
- data/src/core/client_channel/subchannel.cc +339 -254
- data/src/core/client_channel/subchannel.h +53 -47
- data/src/core/client_channel/subchannel_interface_internal.h +1 -1
- data/src/core/client_channel/subchannel_pool_interface.cc +1 -5
- data/src/core/client_channel/subchannel_pool_interface.h +4 -7
- data/src/core/client_channel/subchannel_stream_client.cc +58 -70
- data/src/core/client_channel/subchannel_stream_client.h +15 -19
- data/src/core/config/config_vars.cc +152 -0
- data/src/core/config/config_vars.h +129 -0
- data/src/core/config/config_vars_non_generated.cc +49 -0
- data/src/core/config/core_configuration.cc +111 -0
- data/src/core/config/core_configuration.h +242 -0
- data/src/core/config/load_config.cc +78 -0
- data/src/core/config/load_config.h +54 -0
- data/src/core/credentials/call/call_credentials.h +157 -0
- data/src/core/credentials/call/call_creds_util.cc +97 -0
- data/src/core/credentials/call/call_creds_util.h +43 -0
- data/src/core/credentials/call/composite/composite_call_credentials.cc +115 -0
- data/src/core/credentials/call/composite/composite_call_credentials.h +82 -0
- data/src/core/credentials/call/external/aws_external_account_credentials.cc +528 -0
- data/src/core/credentials/call/external/aws_external_account_credentials.h +117 -0
- data/src/core/credentials/call/external/aws_request_signer.cc +230 -0
- data/src/core/credentials/call/external/aws_request_signer.h +72 -0
- data/src/core/credentials/call/external/external_account_credentials.cc +641 -0
- data/src/core/credentials/call/external/external_account_credentials.h +207 -0
- data/src/core/credentials/call/external/file_external_account_credentials.cc +174 -0
- data/src/core/credentials/call/external/file_external_account_credentials.h +80 -0
- data/src/core/credentials/call/external/url_external_account_credentials.cc +222 -0
- data/src/core/credentials/call/external/url_external_account_credentials.h +73 -0
- data/src/core/credentials/call/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +196 -0
- data/src/core/credentials/call/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
- data/src/core/credentials/call/iam/iam_credentials.cc +78 -0
- data/src/core/credentials/call/iam/iam_credentials.h +66 -0
- data/src/core/credentials/call/json_util.cc +69 -0
- data/src/core/credentials/call/json_util.h +43 -0
- data/src/core/credentials/call/jwt/json_token.cc +318 -0
- data/src/core/credentials/call/jwt/json_token.h +78 -0
- data/src/core/credentials/call/jwt/jwt_credentials.cc +181 -0
- data/src/core/credentials/call/jwt/jwt_credentials.h +106 -0
- data/src/core/credentials/call/jwt/jwt_verifier.cc +988 -0
- data/src/core/credentials/call/jwt/jwt_verifier.h +122 -0
- data/src/core/credentials/call/oauth2/oauth2_credentials.cc +654 -0
- data/src/core/credentials/call/oauth2/oauth2_credentials.h +197 -0
- data/src/core/credentials/call/plugin/plugin_credentials.cc +201 -0
- data/src/core/credentials/call/plugin/plugin_credentials.h +123 -0
- data/src/core/credentials/call/token_fetcher/token_fetcher_credentials.cc +304 -0
- data/src/core/credentials/call/token_fetcher/token_fetcher_credentials.h +181 -0
- data/src/core/credentials/transport/alts/alts_credentials.cc +116 -0
- data/src/core/credentials/transport/alts/alts_credentials.h +127 -0
- data/src/core/credentials/transport/alts/alts_security_connector.cc +303 -0
- data/src/core/credentials/transport/alts/alts_security_connector.h +78 -0
- data/src/core/credentials/transport/alts/check_gcp_environment.cc +71 -0
- data/src/core/credentials/transport/alts/check_gcp_environment.h +57 -0
- data/src/core/credentials/transport/alts/check_gcp_environment_linux.cc +67 -0
- data/src/core/credentials/transport/alts/check_gcp_environment_no_op.cc +32 -0
- data/src/core/credentials/transport/alts/check_gcp_environment_windows.cc +101 -0
- data/src/core/credentials/transport/alts/grpc_alts_credentials_client_options.cc +123 -0
- data/src/core/credentials/transport/alts/grpc_alts_credentials_options.cc +45 -0
- data/src/core/credentials/transport/alts/grpc_alts_credentials_options.h +74 -0
- data/src/core/credentials/transport/alts/grpc_alts_credentials_server_options.cc +55 -0
- data/src/core/credentials/transport/channel_creds_registry.h +126 -0
- data/src/core/credentials/transport/channel_creds_registry_init.cc +245 -0
- data/src/core/credentials/transport/composite/composite_channel_credentials.cc +68 -0
- data/src/core/credentials/transport/composite/composite_channel_credentials.h +89 -0
- data/src/core/credentials/transport/fake/fake_credentials.cc +81 -0
- data/src/core/credentials/transport/fake/fake_credentials.h +92 -0
- data/src/core/credentials/transport/fake/fake_security_connector.cc +314 -0
- data/src/core/credentials/transport/fake/fake_security_connector.h +42 -0
- data/src/core/credentials/transport/google_default/credentials_generic.cc +38 -0
- data/src/core/credentials/transport/google_default/google_default_credentials.cc +442 -0
- data/src/core/credentials/transport/google_default/google_default_credentials.h +101 -0
- data/src/core/credentials/transport/insecure/insecure_credentials.cc +71 -0
- data/src/core/credentials/transport/insecure/insecure_credentials.h +61 -0
- data/src/core/credentials/transport/insecure/insecure_security_connector.cc +118 -0
- data/src/core/credentials/transport/insecure/insecure_security_connector.h +102 -0
- data/src/core/credentials/transport/local/local_credentials.cc +68 -0
- data/src/core/credentials/transport/local/local_credentials.h +77 -0
- data/src/core/credentials/transport/local/local_security_connector.cc +306 -0
- data/src/core/credentials/transport/local/local_security_connector.h +62 -0
- data/src/core/credentials/transport/security_connector.cc +123 -0
- data/src/core/credentials/transport/security_connector.h +197 -0
- data/src/core/credentials/transport/ssl/ssl_credentials.cc +474 -0
- data/src/core/credentials/transport/ssl/ssl_credentials.h +144 -0
- data/src/core/credentials/transport/ssl/ssl_security_connector.cc +403 -0
- data/src/core/credentials/transport/ssl/ssl_security_connector.h +81 -0
- data/src/core/credentials/transport/tls/certificate_provider_factory.h +69 -0
- data/src/core/credentials/transport/tls/certificate_provider_registry.cc +50 -0
- data/src/core/credentials/transport/tls/certificate_provider_registry.h +75 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.cc +337 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.h +215 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_match.cc +84 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.cc +490 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.h +206 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_verifier.cc +237 -0
- data/src/core/credentials/transport/tls/grpc_tls_certificate_verifier.h +169 -0
- data/src/core/credentials/transport/tls/grpc_tls_credentials_options.cc +161 -0
- data/src/core/credentials/transport/tls/grpc_tls_credentials_options.h +145 -0
- data/src/core/credentials/transport/tls/grpc_tls_crl_provider.cc +257 -0
- data/src/core/credentials/transport/tls/grpc_tls_crl_provider.h +129 -0
- data/src/core/credentials/transport/tls/load_system_roots.h +35 -0
- data/src/core/credentials/transport/tls/load_system_roots_fallback.cc +36 -0
- data/src/core/credentials/transport/tls/load_system_roots_supported.cc +165 -0
- data/src/core/credentials/transport/tls/load_system_roots_supported.h +44 -0
- data/src/core/credentials/transport/tls/load_system_roots_windows.cc +85 -0
- data/src/core/credentials/transport/tls/ssl_utils.cc +628 -0
- data/src/core/credentials/transport/tls/ssl_utils.h +188 -0
- data/src/core/credentials/transport/tls/tls_credentials.cc +170 -0
- data/src/core/credentials/transport/tls/tls_credentials.h +75 -0
- data/src/core/credentials/transport/tls/tls_security_connector.cc +816 -0
- data/src/core/credentials/transport/tls/tls_security_connector.h +285 -0
- data/src/core/credentials/transport/tls/tls_utils.cc +127 -0
- data/src/core/credentials/transport/tls/tls_utils.h +50 -0
- data/src/core/credentials/transport/transport_credentials.cc +158 -0
- data/src/core/credentials/transport/transport_credentials.h +182 -0
- data/src/core/credentials/transport/xds/xds_credentials.cc +231 -0
- data/src/core/credentials/transport/xds/xds_credentials.h +110 -0
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +30 -41
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +11 -9
- data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
- data/src/core/ext/filters/census/grpc_context.cc +7 -10
- data/src/core/ext/filters/channel_idle/idle_filter_state.cc +1 -2
- data/src/core/ext/filters/channel_idle/idle_filter_state.h +0 -1
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +53 -53
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +22 -19
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +33 -44
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +13 -12
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +4 -5
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +7 -10
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +198 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +97 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +80 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +86 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +19 -17
- data/src/core/ext/filters/http/client/http_client_filter.h +12 -10
- data/src/core/ext/filters/http/client_authority_filter.cc +20 -23
- data/src/core/ext/filters/http/client_authority_filter.h +13 -10
- data/src/core/ext/filters/http/http_filters_plugin.cc +1 -2
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +74 -73
- data/src/core/ext/filters/http/message_compress/compression_filter.h +33 -24
- data/src/core/ext/filters/http/server/http_server_filter.cc +21 -23
- data/src/core/ext/filters/http/server/http_server_filter.h +11 -9
- data/src/core/ext/filters/message_size/message_size_filter.cc +53 -74
- data/src/core/ext/filters/message_size/message_size_filter.h +38 -35
- data/src/core/ext/filters/rbac/rbac_filter.cc +21 -26
- data/src/core/ext/filters/rbac/rbac_filter.h +13 -12
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +19 -13
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +3 -5
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +27 -34
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +11 -9
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +3 -4
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +8 -10
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +4 -5
- data/src/core/ext/transport/chttp2/alpn/alpn.h +0 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +88 -121
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +9 -15
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +1014 -387
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +225 -12
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +27 -39
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +1 -3
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +10 -12
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -3
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +53 -0
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +70 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +795 -642
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +21 -23
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +4 -5
- data/src/core/ext/transport/chttp2/transport/decode_huff.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +2 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +12 -17
- data/src/core/ext/transport/chttp2/transport/flow_control.h +7 -12
- data/src/core/ext/transport/chttp2/transport/frame.cc +112 -74
- data/src/core/ext/transport/chttp2/transport/frame.h +50 -5
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +23 -22
- data/src/core/ext/transport/chttp2/transport/frame_data.h +3 -5
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +15 -18
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -3
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +16 -21
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -3
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +25 -23
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_security.cc +80 -0
- data/src/core/ext/transport/chttp2/transport/frame_security.h +44 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +45 -28
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -4
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +31 -10
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -4
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +21 -22
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +20 -17
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +10 -10
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +3 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +4 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +8 -11
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +113 -107
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +12 -14
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +45 -20
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +30 -11
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +24 -14
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +14 -8
- data/src/core/ext/transport/chttp2/transport/http2_status.h +52 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +87 -89
- data/src/core/ext/transport/chttp2/transport/legacy_frame.h +1 -0
- data/src/core/ext/transport/chttp2/transport/parsing.cc +177 -150
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +4 -5
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +1 -1
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +6 -9
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +4 -9
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +35 -21
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +8 -9
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +20 -21
- data/src/core/ext/transport/chttp2/transport/stream_lists.h +65 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +6 -6
- data/src/core/ext/transport/chttp2/transport/varint.h +2 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +186 -153
- data/src/core/ext/transport/inproc/inproc_transport.cc +156 -76
- data/src/core/ext/transport/inproc/inproc_transport.h +2 -5
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +140 -137
- data/src/core/ext/transport/inproc/legacy_inproc_transport.h +1 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +46 -15
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +40 -18
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +124 -92
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +64 -46
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +50 -15
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +44 -22
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +204 -69
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +168 -90
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +24 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +11 -5
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +19 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +18 -8
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +11 -10
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +14 -13
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +230 -167
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +94 -81
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +9 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +9 -8
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +18 -8
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +117 -60
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +121 -55
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +21 -4
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +583 -295
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +286 -170
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +29 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +68 -41
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +40 -26
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +802 -416
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +358 -231
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +31 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +12 -7
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +218 -74
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +66 -39
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +147 -57
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +128 -66
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +20 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +96 -56
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +76 -42
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +13 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +11 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +1020 -227
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +390 -119
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +41 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +121 -79
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +78 -48
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +9 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +11 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +236 -99
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +129 -62
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +19 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +273 -139
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +121 -79
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +13 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +22 -19
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +15 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +419 -173
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +197 -119
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +21 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +10 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +15 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb.h +151 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.c +60 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +241 -28
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +77 -19
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +13 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +50 -38
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +27 -17
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +11 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +52 -23
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +37 -19
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +134 -62
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +82 -50
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +305 -61
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +90 -36
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +267 -172
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +130 -87
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +15 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +150 -187
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +85 -76
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +11 -5
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +178 -13
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +46 -14
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +14 -7
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +16 -6
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +20 -15
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +15 -9
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +84 -55
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +72 -38
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +13 -4
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +70 -22
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +71 -29
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +15 -4
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +321 -50
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +143 -65
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +18 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +111 -65
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +43 -29
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +1541 -823
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +769 -475
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +67 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +33 -23
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +26 -12
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +103 -38
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +97 -47
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +17 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +118 -16
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +43 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +9 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +12 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +10 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +27 -15
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +16 -10
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +32 -25
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +25 -15
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +5 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +5 -5
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +26 -17
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +22 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +30 -27
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +20 -14
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +513 -405
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +218 -151
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +21 -4
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +24 -11
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +33 -11
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +103 -83
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +54 -40
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +444 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +135 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +38 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +72 -29
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +34 -18
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +63 -46
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +29 -19
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +16 -11
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +19 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +604 -395
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +303 -215
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +26 -4
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +83 -10
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +28 -11
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +34 -17
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +40 -18
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +6 -5
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +45 -34
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +22 -16
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +105 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +51 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +247 -108
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +109 -63
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +25 -12
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +27 -13
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +264 -113
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +119 -80
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +51 -13
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +23 -11
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +82 -44
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +49 -31
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +476 -163
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +179 -96
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +21 -4
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +24 -14
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +20 -10
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +127 -85
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +73 -51
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +17 -14
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +13 -7
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +16 -6
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +26 -8
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb.h +142 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +42 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +16 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +10 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +23 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +22 -14
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +13 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +9 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +8 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +23 -16
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +27 -13
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +51 -10
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +30 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +14 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +30 -12
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +32 -14
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +24 -10
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +40 -10
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +12 -4
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +41 -28
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +37 -15
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +10 -4
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +12 -7
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +19 -5
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +6 -5
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +11 -10
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +15 -1
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +14 -9
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +8 -7
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +12 -7
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/api/annotations.upb.h +17 -7
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +5 -2
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +213 -118
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +139 -74
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +18 -4
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +576 -123
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +213 -79
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +23 -4
- data/src/core/ext/upb-gen/google/api/http.upb.h +81 -67
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +44 -30
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/google/api/httpbody.upb.h +12 -6
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/any.upb.h +8 -6
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +873 -445
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +465 -292
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +57 -21
- data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +8 -6
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +40 -19
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +32 -14
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +8 -6
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +15 -13
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +39 -1
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/google/rpc/status.upb.h +12 -6
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +27 -19
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +205 -149
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +112 -62
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +17 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +14 -8
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +15 -5
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +8 -6
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +11 -1
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +53 -28
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +62 -24
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +36 -29
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +21 -7
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +140 -89
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +77 -39
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +14 -4
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +69 -23
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +31 -12
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +19 -9
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +6 -5
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +19 -9
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +18 -8
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/validate/validate.upb.h +632 -540
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +302 -204
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +29 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +69 -23
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +31 -12
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +19 -9
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +6 -5
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +4 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +5 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +46 -18
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +32 -11
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +18 -8
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +13 -6
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +6 -5
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +9 -6
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +16 -9
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +18 -8
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +19 -13
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +9 -6
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +19 -14
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +33 -23
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +20 -10
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +11 -8
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +53 -37
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +24 -6
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +9 -4
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +8 -5
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +16 -13
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +13 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +13 -5
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +5 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +7 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +6 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +22 -9
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +19 -9
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +101 -44
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +88 -46
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +15 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +44 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +48 -22
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +11 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +9 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +14 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +18 -10
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +17 -8
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +19 -9
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +7 -4
- data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +12 -10
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +15 -1
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +8 -4
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +9 -6
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +6 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +13 -11
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +90 -82
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +63 -61
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +223 -211
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +419 -393
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +116 -106
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +201 -147
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +35 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +12 -12
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +175 -165
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +199 -188
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +272 -255
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.c +46 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.h +33 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +31 -20
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +20 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +41 -37
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +124 -94
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +43 -40
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +60 -66
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +5 -9
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +75 -56
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +51 -49
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +119 -97
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +922 -895
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +15 -4
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +32 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +20 -18
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +17 -19
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +23 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +147 -143
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +87 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +48 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +38 -34
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +465 -459
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +50 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +33 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +96 -88
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +204 -192
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +21 -18
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +150 -136
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +25 -23
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.c +41 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.h +33 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +28 -20
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +41 -34
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +110 -108
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +103 -79
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +15 -4
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +496 -458
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +10 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +5 -4
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +5 -4
- data/src/core/filter/auth/auth_filters.h +233 -0
- data/src/core/filter/auth/client_auth_filter.cc +310 -0
- data/src/core/filter/auth/server_auth_filter.cc +208 -0
- data/src/core/filter/blackboard.cc +33 -0
- data/src/core/filter/blackboard.h +70 -0
- data/src/core/filter/filter_args.h +112 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +81 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +37 -0
- data/src/core/handshaker/handshaker.cc +188 -0
- data/src/core/handshaker/handshaker.h +170 -0
- data/src/core/handshaker/handshaker_factory.h +89 -0
- data/src/core/handshaker/handshaker_registry.cc +60 -0
- data/src/core/handshaker/handshaker_registry.h +69 -0
- data/src/core/handshaker/http_connect/http_connect_handshaker.cc +357 -0
- data/src/core/handshaker/http_connect/http_connect_handshaker.h +42 -0
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +296 -0
- data/src/core/handshaker/http_connect/http_proxy_mapper.h +52 -0
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +57 -0
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +46 -0
- data/src/core/handshaker/proxy_mapper.h +52 -0
- data/src/core/handshaker/proxy_mapper_registry.cc +70 -0
- data/src/core/handshaker/proxy_mapper_registry.h +74 -0
- data/src/core/handshaker/security/secure_endpoint.cc +578 -0
- data/src/core/handshaker/security/secure_endpoint.h +41 -0
- data/src/core/handshaker/security/security_handshaker.cc +626 -0
- data/src/core/handshaker/security/security_handshaker.h +45 -0
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +232 -0
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.h +39 -0
- data/src/core/lib/address_utils/parse_address.cc +33 -44
- data/src/core/lib/address_utils/parse_address.h +1 -3
- data/src/core/lib/address_utils/sockaddr_utils.cc +22 -19
- data/src/core/lib/address_utils/sockaddr_utils.h +0 -2
- data/src/core/lib/channel/channel_args.cc +33 -39
- data/src/core/lib/channel/channel_args.h +91 -59
- data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
- data/src/core/lib/channel/channel_args_preconditioning.h +2 -3
- data/src/core/lib/channel/channel_stack.cc +19 -81
- data/src/core/lib/channel/channel_stack.h +28 -65
- data/src/core/lib/channel/channel_stack_builder.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder.h +1 -7
- data/src/core/lib/channel/channel_stack_builder_impl.cc +6 -158
- data/src/core/lib/channel/channel_stack_builder_impl.h +13 -3
- data/src/core/lib/channel/connected_channel.cc +52 -709
- data/src/core/lib/channel/promise_based_filter.cc +258 -333
- data/src/core/lib/channel/promise_based_filter.h +268 -638
- data/src/core/lib/compression/compression.cc +9 -11
- data/src/core/lib/compression/compression_internal.cc +16 -19
- data/src/core/lib/compression/compression_internal.h +5 -8
- data/src/core/lib/compression/message_compress.cc +16 -18
- data/src/core/lib/compression/message_compress.h +1 -2
- data/src/core/lib/debug/trace.cc +48 -67
- data/src/core/lib/debug/trace.h +2 -97
- data/src/core/lib/debug/trace_flags.cc +243 -0
- data/src/core/lib/debug/trace_flags.h +131 -0
- data/src/core/lib/debug/trace_impl.h +125 -0
- data/src/core/lib/event_engine/ares_resolver.cc +171 -100
- data/src/core/lib/event_engine/ares_resolver.h +17 -28
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +16 -19
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +3 -5
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +53 -41
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +6 -10
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +3 -5
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +29 -36
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +7 -10
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +8 -12
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +7 -10
- data/src/core/lib/event_engine/common_closures.h +3 -6
- data/src/core/lib/event_engine/default_event_engine.cc +69 -43
- data/src/core/lib/event_engine/default_event_engine.h +27 -37
- data/src/core/lib/event_engine/default_event_engine_factory.cc +15 -22
- data/src/core/lib/event_engine/default_event_engine_factory.h +4 -7
- data/src/core/lib/event_engine/event_engine.cc +37 -9
- data/src/core/lib/event_engine/event_engine_context.h +5 -4
- data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -4
- data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +2 -5
- data/src/core/lib/event_engine/extensions/iomgr_compatible.h +39 -0
- data/src/core/lib/event_engine/extensions/supports_fd.h +27 -6
- data/src/core/lib/event_engine/extensions/supports_win_sockets.h +48 -0
- data/src/core/lib/event_engine/extensions/tcp_trace.h +40 -0
- data/src/core/lib/event_engine/forkable.cc +14 -17
- data/src/core/lib/event_engine/forkable.h +2 -17
- data/src/core/lib/event_engine/grpc_polled_fd.h +4 -8
- data/src/core/lib/event_engine/handle_containers.h +3 -7
- data/src/core/lib/event_engine/memory_allocator_factory.h +3 -7
- data/src/core/lib/event_engine/nameser.h +1 -1
- data/src/core/lib/event_engine/poller.h +3 -6
- data/src/core/lib/event_engine/posix.h +3 -6
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +32 -80
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +8 -12
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +31 -82
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +4 -8
- data/src/core/lib/event_engine/posix_engine/event_poller.h +3 -7
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +4 -7
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -4
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +5 -10
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +7 -10
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +2 -5
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +9 -13
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -5
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +5 -8
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +2 -5
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +116 -115
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +24 -27
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +94 -74
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +18 -19
- data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +3 -6
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +30 -35
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +15 -17
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +55 -37
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +7 -7
- data/src/core/lib/event_engine/posix_engine/set_socket_dualstack.cc +64 -0
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +43 -49
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +12 -14
- data/src/core/lib/event_engine/posix_engine/timer.cc +9 -12
- data/src/core/lib/event_engine/posix_engine/timer.h +8 -13
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +4 -7
- data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -4
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +21 -32
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +8 -13
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +11 -18
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +26 -30
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +5 -8
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +2 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +14 -9
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +2 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +2 -4
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +2 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +2 -4
- data/src/core/lib/event_engine/query_extensions.h +5 -6
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +4 -9
- data/src/core/lib/event_engine/resolved_address.cc +10 -11
- data/src/core/lib/event_engine/resolved_address_internal.h +3 -6
- data/src/core/lib/event_engine/shim.cc +13 -22
- data/src/core/lib/event_engine/shim.h +13 -4
- data/src/core/lib/event_engine/slice.cc +7 -11
- data/src/core/lib/event_engine/slice_buffer.cc +4 -8
- data/src/core/lib/event_engine/tcp_socket_utils.cc +27 -34
- data/src/core/lib/event_engine/tcp_socket_utils.h +6 -9
- data/src/core/lib/event_engine/thread_local.cc +4 -6
- data/src/core/lib/event_engine/thread_local.h +3 -5
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +7 -12
- data/src/core/lib/event_engine/thread_pool/thread_count.h +8 -24
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +3 -8
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +3 -6
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +63 -64
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +13 -20
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +52 -27
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +9 -11
- data/src/core/lib/event_engine/time_util.cc +5 -8
- data/src/core/lib/event_engine/time_util.h +3 -7
- data/src/core/lib/event_engine/utils.cc +21 -10
- data/src/core/lib/event_engine/utils.h +11 -8
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +160 -136
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +6 -10
- data/src/core/lib/event_engine/windows/iocp.cc +26 -26
- data/src/core/lib/event_engine/windows/iocp.h +4 -7
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +6 -10
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.h +2 -4
- data/src/core/lib/event_engine/windows/win_socket.cc +60 -40
- data/src/core/lib/event_engine/windows/win_socket.h +13 -14
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +65 -58
- data/src/core/lib/event_engine/windows/windows_endpoint.h +4 -6
- data/src/core/lib/event_engine/windows/windows_engine.cc +290 -140
- data/src/core/lib/event_engine/windows/windows_engine.h +153 -39
- data/src/core/lib/event_engine/windows/windows_listener.cc +34 -51
- data/src/core/lib/event_engine/windows/windows_listener.h +15 -13
- data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +5 -7
- data/src/core/lib/event_engine/work_queue/basic_work_queue.h +4 -9
- data/src/core/lib/event_engine/work_queue/work_queue.h +3 -7
- data/src/core/lib/experiments/config.cc +59 -32
- data/src/core/lib/experiments/config.h +55 -2
- data/src/core/lib/experiments/experiments.cc +470 -360
- data/src/core/lib/experiments/experiments.h +210 -147
- data/src/core/lib/iomgr/buffer_list.cc +7 -8
- data/src/core/lib/iomgr/buffer_list.h +23 -24
- data/src/core/lib/iomgr/call_combiner.cc +42 -68
- data/src/core/lib/iomgr/call_combiner.h +12 -17
- data/src/core/lib/iomgr/cfstream_handle.cc +14 -22
- data/src/core/lib/iomgr/cfstream_handle.h +1 -1
- data/src/core/lib/iomgr/closure.cc +2 -2
- data/src/core/lib/iomgr/closure.h +15 -22
- data/src/core/lib/iomgr/combiner.cc +38 -53
- data/src/core/lib/iomgr/combiner.h +2 -6
- data/src/core/lib/iomgr/endpoint.cc +1 -7
- data/src/core/lib/iomgr/endpoint.h +4 -6
- data/src/core/lib/iomgr/endpoint_cfstream.cc +45 -76
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +50 -25
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +56 -22
- data/src/core/lib/iomgr/error.cc +52 -78
- data/src/core/lib/iomgr/error.h +8 -11
- data/src/core/lib/iomgr/error_cfstream.cc +1 -3
- data/src/core/lib/iomgr/ev_apple.cc +16 -24
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +94 -127
- data/src/core/lib/iomgr/ev_poll_posix.cc +75 -62
- data/src/core/lib/iomgr/ev_posix.cc +68 -60
- data/src/core/lib/iomgr/ev_posix.h +9 -12
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +11 -16
- data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -3
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +36 -56
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +1 -2
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +10 -16
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.h +1 -2
- data/src/core/lib/iomgr/exec_ctx.cc +15 -25
- data/src/core/lib/iomgr/exec_ctx.h +21 -142
- data/src/core/lib/iomgr/executor.cc +60 -70
- data/src/core/lib/iomgr/executor.h +2 -2
- data/src/core/lib/iomgr/fork_posix.cc +11 -15
- data/src/core/lib/iomgr/fork_windows.cc +3 -2
- data/src/core/lib/iomgr/internal_errqueue.cc +5 -6
- data/src/core/lib/iomgr/iocp_windows.cc +16 -15
- data/src/core/lib/iomgr/iocp_windows.h +0 -1
- data/src/core/lib/iomgr/iomgr.cc +19 -26
- data/src/core/lib/iomgr/iomgr.h +0 -1
- data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
- data/src/core/lib/iomgr/iomgr_internal.h +0 -1
- data/src/core/lib/iomgr/iomgr_posix.cc +2 -1
- data/src/core/lib/iomgr/iomgr_windows.cc +7 -6
- data/src/core/lib/iomgr/lockfree_event.cc +12 -21
- data/src/core/lib/iomgr/lockfree_event.h +1 -2
- data/src/core/lib/iomgr/nameser.h +1 -1
- data/src/core/lib/iomgr/polling_entity.cc +18 -17
- data/src/core/lib/iomgr/pollset.cc +2 -2
- data/src/core/lib/iomgr/pollset.h +0 -3
- data/src/core/lib/iomgr/pollset_set.cc +2 -2
- data/src/core/lib/iomgr/pollset_set_windows.cc +0 -1
- data/src/core/lib/iomgr/pollset_windows.cc +2 -6
- data/src/core/lib/iomgr/pollset_windows.h +0 -1
- data/src/core/lib/iomgr/port.h +2 -2
- data/src/core/lib/iomgr/python_util.h +1 -2
- data/src/core/lib/iomgr/resolve_address.cc +4 -7
- data/src/core/lib/iomgr/resolve_address.h +3 -6
- data/src/core/lib/iomgr/resolve_address_impl.h +0 -1
- data/src/core/lib/iomgr/resolve_address_posix.cc +12 -23
- data/src/core/lib/iomgr/resolve_address_windows.cc +9 -14
- data/src/core/lib/iomgr/resolved_address.h +0 -1
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +5 -6
- data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
- data/src/core/lib/iomgr/socket_factory_posix.h +1 -2
- data/src/core/lib/iomgr/socket_mutator.cc +3 -5
- data/src/core/lib/iomgr/socket_mutator.h +2 -4
- data/src/core/lib/iomgr/socket_utils.h +0 -1
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +46 -52
- data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
- data/src/core/lib/iomgr/socket_utils_posix.cc +23 -14
- data/src/core/lib/iomgr/socket_utils_posix.h +13 -4
- data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
- data/src/core/lib/iomgr/socket_windows.cc +11 -14
- data/src/core/lib/iomgr/socket_windows.h +1 -2
- data/src/core/lib/iomgr/tcp_client.cc +2 -2
- data/src/core/lib/iomgr/tcp_client.h +1 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +20 -29
- data/src/core/lib/iomgr/tcp_client_posix.cc +33 -49
- data/src/core/lib/iomgr/tcp_client_posix.h +1 -1
- data/src/core/lib/iomgr/tcp_client_windows.cc +9 -12
- data/src/core/lib/iomgr/tcp_posix.cc +176 -217
- data/src/core/lib/iomgr/tcp_posix.h +10 -4
- data/src/core/lib/iomgr/tcp_server.cc +2 -2
- data/src/core/lib/iomgr/tcp_server.h +3 -4
- data/src/core/lib/iomgr/tcp_server_posix.cc +71 -83
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +0 -1
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +14 -21
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +13 -14
- data/src/core/lib/iomgr/tcp_server_windows.cc +58 -55
- data/src/core/lib/iomgr/tcp_windows.cc +38 -66
- data/src/core/lib/iomgr/timer.cc +2 -2
- data/src/core/lib/iomgr/timer.h +2 -3
- data/src/core/lib/iomgr/timer_generic.cc +73 -106
- data/src/core/lib/iomgr/timer_generic.h +0 -1
- data/src/core/lib/iomgr/timer_heap.cc +4 -6
- data/src/core/lib/iomgr/timer_manager.cc +28 -53
- data/src/core/lib/iomgr/timer_manager.h +0 -1
- data/src/core/lib/iomgr/unix_sockets_posix.cc +5 -6
- data/src/core/lib/iomgr/unix_sockets_posix.h +1 -3
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +2 -4
- data/src/core/lib/iomgr/vsock.cc +5 -8
- data/src/core/lib/iomgr/vsock.h +1 -3
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -4
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +16 -9
- data/src/core/lib/promise/activity.cc +6 -5
- data/src/core/lib/promise/activity.h +86 -34
- data/src/core/lib/promise/all_ok.h +83 -9
- data/src/core/lib/promise/arena_promise.h +1 -3
- data/src/core/lib/promise/cancel_callback.h +34 -6
- data/src/core/lib/promise/context.h +18 -9
- data/src/core/lib/promise/detail/basic_seq.h +33 -20
- data/src/core/lib/promise/detail/join_state.h +555 -812
- data/src/core/lib/promise/detail/promise_factory.h +122 -46
- data/src/core/lib/promise/detail/promise_like.h +48 -13
- data/src/core/lib/promise/detail/seq_state.h +1378 -2254
- data/src/core/lib/promise/detail/status.h +36 -14
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +1 -2
- data/src/core/lib/promise/for_each.h +108 -41
- data/src/core/lib/promise/if.h +67 -35
- data/src/core/lib/promise/interceptor_list.h +31 -45
- data/src/core/lib/promise/latch.h +39 -46
- data/src/core/lib/promise/loop.h +83 -27
- data/src/core/lib/promise/map.h +248 -21
- data/src/core/lib/promise/observable.h +181 -0
- data/src/core/lib/promise/party.cc +331 -154
- data/src/core/lib/promise/party.h +395 -396
- data/src/core/lib/promise/pipe.h +45 -68
- data/src/core/lib/promise/poll.h +124 -41
- data/src/core/lib/promise/prioritized_race.h +16 -22
- data/src/core/lib/promise/promise.h +14 -9
- data/src/core/lib/promise/race.h +12 -15
- data/src/core/lib/promise/seq.h +98 -70
- data/src/core/lib/promise/sleep.cc +7 -8
- data/src/core/lib/promise/sleep.h +17 -5
- data/src/core/lib/promise/status_flag.h +190 -56
- data/src/core/lib/promise/try_join.h +156 -25
- data/src/core/lib/promise/try_seq.h +152 -89
- data/src/core/lib/resource_quota/api.cc +4 -7
- data/src/core/lib/resource_quota/api.h +3 -5
- data/src/core/lib/resource_quota/arena.cc +64 -87
- data/src/core/lib/resource_quota/arena.h +224 -210
- data/src/core/lib/resource_quota/connection_quota.cc +8 -10
- data/src/core/lib/resource_quota/connection_quota.h +7 -4
- data/src/core/lib/resource_quota/memory_quota.cc +100 -97
- data/src/core/lib/resource_quota/memory_quota.h +31 -25
- data/src/core/lib/resource_quota/periodic_update.cc +5 -5
- data/src/core/lib/resource_quota/periodic_update.h +1 -3
- data/src/core/lib/resource_quota/resource_quota.cc +2 -2
- data/src/core/lib/resource_quota/resource_quota.h +6 -8
- data/src/core/lib/resource_quota/thread_quota.cc +4 -4
- data/src/core/lib/resource_quota/thread_quota.h +3 -4
- data/src/core/lib/security/authorization/audit_logging.cc +10 -12
- data/src/core/lib/security/authorization/audit_logging.h +3 -5
- data/src/core/lib/security/authorization/authorization_engine.h +1 -1
- data/src/core/lib/security/authorization/authorization_policy_provider.h +5 -7
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +3 -4
- data/src/core/lib/security/authorization/evaluate_args.cc +15 -20
- data/src/core/lib/security/authorization/evaluate_args.h +5 -7
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +4 -5
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +1 -3
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +25 -41
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +17 -16
- data/src/core/lib/security/authorization/matchers.cc +5 -8
- data/src/core/lib/security/authorization/matchers.h +4 -6
- data/src/core/lib/security/authorization/rbac_policy.cc +3 -3
- data/src/core/lib/security/authorization/rbac_policy.h +5 -8
- data/src/core/lib/security/authorization/stdout_logger.cc +7 -7
- data/src/core/lib/security/authorization/stdout_logger.h +2 -3
- data/src/core/lib/slice/percent_encoding.cc +4 -6
- data/src/core/lib/slice/slice.cc +13 -15
- data/src/core/lib/slice/slice.h +14 -11
- data/src/core/lib/slice/slice_buffer.cc +20 -21
- data/src/core/lib/slice/slice_buffer.h +4 -6
- data/src/core/lib/slice/slice_internal.h +4 -7
- data/src/core/lib/slice/slice_refcount.h +7 -15
- data/src/core/lib/slice/slice_string_helpers.cc +3 -3
- data/src/core/lib/slice/slice_string_helpers.h +1 -3
- data/src/core/lib/surface/byte_buffer.cc +2 -4
- data/src/core/lib/surface/byte_buffer_reader.cc +5 -7
- data/src/core/lib/surface/call.cc +218 -4007
- data/src/core/lib/surface/call.h +180 -103
- data/src/core/lib/surface/call_details.cc +5 -5
- data/src/core/lib/surface/call_log_batch.cc +7 -11
- data/src/core/lib/surface/call_test_only.h +2 -4
- data/src/core/lib/surface/call_utils.cc +231 -0
- data/src/core/lib/surface/call_utils.h +492 -0
- data/src/core/lib/surface/channel.cc +53 -59
- data/src/core/lib/surface/channel.h +23 -22
- data/src/core/lib/surface/channel_create.cc +31 -15
- data/src/core/lib/surface/channel_create.h +3 -3
- data/src/core/lib/surface/channel_init.cc +274 -271
- data/src/core/lib/surface/channel_init.h +180 -121
- data/src/core/lib/surface/channel_stack_type.cc +2 -2
- data/src/core/lib/surface/completion_queue.cc +195 -171
- data/src/core/lib/surface/completion_queue.h +4 -14
- data/src/core/lib/surface/completion_queue_factory.cc +8 -9
- data/src/core/lib/surface/completion_queue_factory.h +1 -2
- data/src/core/lib/surface/connection_context.cc +77 -0
- data/src/core/lib/surface/connection_context.h +156 -0
- data/src/core/lib/surface/event_string.cc +9 -3
- data/src/core/lib/surface/event_string.h +1 -2
- data/src/core/lib/surface/filter_stack_call.cc +1167 -0
- data/src/core/lib/surface/filter_stack_call.h +366 -0
- data/src/core/lib/surface/init.cc +76 -33
- data/src/core/lib/surface/init.h +5 -0
- data/src/core/lib/surface/init_internally.cc +2 -2
- data/src/core/lib/surface/init_internally.h +13 -2
- data/src/core/lib/surface/lame_client.cc +21 -27
- data/src/core/lib/surface/lame_client.h +9 -13
- data/src/core/lib/surface/legacy_channel.cc +89 -69
- data/src/core/lib/surface/legacy_channel.h +16 -27
- data/src/core/lib/surface/metadata_array.cc +6 -7
- data/src/core/lib/surface/validate_metadata.cc +4 -6
- data/src/core/lib/surface/validate_metadata.h +3 -6
- data/src/core/lib/surface/version.cc +3 -4
- data/src/core/lib/transport/bdp_estimator.cc +14 -20
- data/src/core/lib/transport/bdp_estimator.h +12 -18
- data/src/core/lib/transport/call_final_info.cc +2 -2
- data/src/core/lib/transport/call_final_info.h +3 -4
- data/src/core/lib/transport/connectivity_state.cc +44 -54
- data/src/core/lib/transport/connectivity_state.h +5 -11
- data/src/core/lib/transport/error_utils.cc +68 -16
- data/src/core/lib/transport/error_utils.h +4 -6
- data/src/core/lib/transport/status_conversion.cc +17 -15
- data/src/core/lib/transport/status_conversion.h +7 -7
- data/src/core/lib/transport/timeout_encoding.cc +26 -27
- data/src/core/lib/transport/timeout_encoding.h +3 -4
- data/src/core/lib/transport/transport.cc +7 -14
- data/src/core/lib/transport/transport.h +110 -99
- data/src/core/lib/transport/transport_framing_endpoint_extension.h +47 -0
- data/src/core/lib/transport/transport_op_string.cc +3 -6
- data/src/core/load_balancing/address_filtering.cc +2 -4
- data/src/core/load_balancing/address_filtering.h +2 -3
- data/src/core/load_balancing/backend_metric_parser.cc +22 -30
- data/src/core/load_balancing/backend_metric_parser.h +0 -2
- data/src/core/load_balancing/child_policy_handler.cc +42 -46
- data/src/core/load_balancing/child_policy_handler.h +2 -3
- data/src/core/load_balancing/delegating_helper.h +6 -8
- data/src/core/load_balancing/endpoint_list.cc +28 -22
- data/src/core/load_balancing/endpoint_list.h +39 -28
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +35 -36
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +21 -7
- data/src/core/load_balancing/grpclb/grpclb.cc +202 -254
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.h +1 -2
- data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +3 -5
- data/src/core/load_balancing/grpclb/grpclb_client_stats.h +4 -7
- data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -11
- data/src/core/load_balancing/grpclb/load_balancer_api.h +3 -6
- data/src/core/load_balancing/health_check_client.cc +78 -131
- data/src/core/load_balancing/health_check_client.h +1 -1
- data/src/core/load_balancing/health_check_client_internal.h +13 -15
- data/src/core/load_balancing/lb_policy.cc +11 -16
- data/src/core/load_balancing/lb_policy.h +76 -51
- data/src/core/load_balancing/lb_policy_factory.h +3 -4
- data/src/core/load_balancing/lb_policy_registry.cc +17 -17
- data/src/core/load_balancing/lb_policy_registry.h +3 -4
- data/src/core/load_balancing/oob_backend_metric.cc +22 -29
- data/src/core/load_balancing/oob_backend_metric.h +1 -1
- data/src/core/load_balancing/oob_backend_metric_internal.h +6 -8
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +193 -249
- data/src/core/load_balancing/outlier_detection/outlier_detection.h +8 -9
- data/src/core/load_balancing/pick_first/pick_first.cc +434 -452
- data/src/core/load_balancing/priority/priority.cc +115 -159
- data/src/core/load_balancing/ring_hash/ring_hash.cc +285 -240
- data/src/core/load_balancing/ring_hash/ring_hash.h +9 -17
- data/src/core/load_balancing/rls/rls.cc +483 -576
- data/src/core/load_balancing/rls/rls.h +97 -1
- data/src/core/load_balancing/round_robin/round_robin.cc +93 -114
- data/src/core/load_balancing/subchannel_interface.h +15 -5
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +11 -12
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +3 -4
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +180 -196
- data/src/core/load_balancing/weighted_target/weighted_target.cc +87 -131
- data/src/core/load_balancing/weighted_target/weighted_target.h +1 -1
- data/src/core/load_balancing/xds/cds.cc +75 -103
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +202 -180
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +63 -104
- data/src/core/load_balancing/xds/xds_override_host.cc +168 -277
- data/src/core/load_balancing/xds/xds_override_host.h +5 -6
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +46 -59
- data/src/core/plugin_registry/grpc_plugin_registry.cc +14 -17
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +7 -5
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +101 -79
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +1 -2
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +3 -5
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +6 -9
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +153 -134
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +176 -161
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +7 -18
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +1 -1
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
- data/src/core/resolver/dns/dns_resolver_plugin.cc +11 -13
- data/src/core/resolver/dns/dns_resolver_plugin.h +1 -1
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +66 -78
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +2 -3
- data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
- data/src/core/resolver/dns/native/dns_resolver.cc +22 -32
- data/src/core/resolver/dns/native/dns_resolver.h +1 -1
- data/src/core/resolver/endpoint_addresses.cc +5 -8
- data/src/core/resolver/endpoint_addresses.h +3 -1
- data/src/core/resolver/fake/fake_resolver.cc +20 -23
- data/src/core/resolver/fake/fake_resolver.h +8 -10
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +38 -43
- data/src/core/resolver/polling_resolver.cc +44 -63
- data/src/core/resolver/polling_resolver.h +9 -11
- data/src/core/resolver/resolver.cc +3 -7
- data/src/core/resolver/resolver.h +2 -8
- data/src/core/resolver/resolver_factory.h +2 -3
- data/src/core/resolver/resolver_registry.cc +14 -15
- data/src/core/resolver/resolver_registry.h +2 -3
- data/src/core/resolver/sockaddr/sockaddr_resolver.cc +6 -8
- data/src/core/resolver/xds/xds_config.cc +95 -0
- data/src/core/resolver/xds/xds_config.h +108 -0
- data/src/core/resolver/xds/xds_dependency_manager.cc +268 -344
- data/src/core/resolver/xds/xds_dependency_manager.h +39 -94
- data/src/core/resolver/xds/xds_resolver.cc +205 -232
- data/src/core/resolver/xds/xds_resolver_attributes.h +6 -3
- data/src/core/server/server.cc +2192 -0
- data/src/core/server/server.h +718 -0
- data/src/core/server/server_call_tracer_filter.cc +113 -0
- data/src/core/server/server_call_tracer_filter.h +28 -0
- data/src/core/server/server_config_selector.h +82 -0
- data/src/core/server/server_config_selector_filter.cc +168 -0
- data/src/core/server/server_config_selector_filter.h +33 -0
- data/src/core/server/server_interface.h +45 -0
- data/src/core/server/xds_channel_stack_modifier.cc +107 -0
- data/src/core/server/xds_channel_stack_modifier.h +62 -0
- data/src/core/server/xds_server_config_fetcher.cc +1318 -0
- data/src/core/service_config/service_config.h +3 -6
- data/src/core/service_config/service_config_call_data.h +20 -19
- data/src/core/service_config/service_config_channel_arg_filter.cc +24 -33
- data/src/core/service_config/service_config_impl.cc +12 -14
- data/src/core/service_config/service_config_impl.h +6 -9
- data/src/core/service_config/service_config_parser.cc +4 -9
- data/src/core/service_config/service_config_parser.h +2 -4
- data/src/core/telemetry/call_tracer.cc +384 -0
- data/src/core/telemetry/call_tracer.h +264 -0
- data/src/core/telemetry/histogram_view.cc +69 -0
- data/src/core/telemetry/histogram_view.h +36 -0
- data/src/core/telemetry/metrics.cc +198 -0
- data/src/core/telemetry/metrics.h +575 -0
- data/src/core/telemetry/stats.cc +67 -0
- data/src/core/telemetry/stats.h +62 -0
- data/src/core/telemetry/stats_data.cc +1004 -0
- data/src/core/telemetry/stats_data.h +747 -0
- data/src/core/telemetry/tcp_tracer.h +149 -0
- data/src/core/transport/auth_context.cc +236 -0
- data/src/core/transport/auth_context.h +140 -0
- data/src/core/tsi/alts/crypt/aes_gcm.cc +4 -8
- data/src/core/tsi/alts/crypt/gsec.cc +2 -4
- data/src/core/tsi/alts/crypt/gsec.h +3 -5
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +2 -4
- data/src/core/tsi/alts/frame_protector/alts_counter.h +2 -4
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +2 -4
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +1 -3
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -19
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +0 -1
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +1 -2
- data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +2 -3
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +2 -3
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -13
- data/src/core/tsi/alts/frame_protector/frame_handler.h +0 -1
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +80 -84
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +5 -6
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +2 -3
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +90 -90
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +2 -3
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +6 -5
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -2
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +4 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +17 -19
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +12 -14
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +16 -14
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +13 -16
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +0 -1
- data/src/core/tsi/fake_transport_security.cc +36 -34
- data/src/core/tsi/local_transport_security.cc +9 -11
- data/src/core/tsi/local_transport_security.h +1 -2
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +13 -15
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +7 -10
- data/src/core/tsi/ssl/session_cache/ssl_session.h +3 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +16 -17
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +8 -10
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +4 -7
- data/src/core/tsi/ssl_transport_security.cc +155 -132
- data/src/core/tsi/ssl_transport_security.h +5 -8
- data/src/core/tsi/ssl_transport_security_utils.cc +86 -32
- data/src/core/tsi/ssl_transport_security_utils.h +13 -5
- data/src/core/tsi/ssl_types.h +0 -1
- data/src/core/tsi/transport_security.cc +3 -9
- data/src/core/tsi/transport_security.h +0 -3
- data/src/core/tsi/transport_security_grpc.cc +2 -2
- data/src/core/tsi/transport_security_grpc.h +1 -2
- data/src/core/tsi/transport_security_interface.h +2 -7
- data/src/core/util/alloc.cc +69 -0
- data/src/core/util/alloc.h +28 -0
- data/src/core/util/atomic_utils.h +47 -0
- data/src/core/util/avl.h +324 -0
- data/src/core/util/backoff.cc +57 -0
- data/src/core/util/backoff.h +86 -0
- data/src/core/util/bitset.h +224 -0
- data/src/core/util/check_class_size.h +48 -0
- data/src/core/util/chunked_vector.h +256 -0
- data/src/core/util/construct_destruct.h +41 -0
- data/src/core/util/cpp_impl_of.h +49 -0
- data/src/core/util/crash.cc +40 -0
- data/src/core/util/crash.h +36 -0
- data/src/core/util/debug_location.h +106 -0
- data/src/core/util/directory_reader.h +48 -0
- data/src/core/util/down_cast.h +48 -0
- data/src/core/util/dual_ref_counted.h +376 -0
- data/src/core/util/dump_args.cc +54 -0
- data/src/core/util/dump_args.h +114 -0
- data/src/core/util/env.h +52 -0
- data/src/core/util/event_log.cc +87 -0
- data/src/core/util/event_log.h +79 -0
- data/src/core/util/examine_stack.cc +43 -0
- data/src/core/util/examine_stack.h +44 -0
- data/src/core/util/fork.cc +241 -0
- data/src/core/util/fork.h +98 -0
- data/src/core/util/gcp_metadata_query.cc +132 -0
- data/src/core/util/gcp_metadata_query.h +86 -0
- data/src/core/util/gethostname.h +26 -0
- data/src/core/util/gethostname_fallback.cc +30 -0
- data/src/core/util/gethostname_host_name_max.cc +39 -0
- data/src/core/util/gethostname_sysconf.cc +39 -0
- data/src/core/util/glob.cc +70 -0
- data/src/core/util/glob.h +29 -0
- data/src/core/util/gpr_time.cc +266 -0
- data/src/core/util/grpc_if_nametoindex.h +29 -0
- data/src/core/util/grpc_if_nametoindex_posix.cc +41 -0
- data/src/core/util/grpc_if_nametoindex_unsupported.cc +36 -0
- data/src/core/util/host_port.cc +114 -0
- data/src/core/util/host_port.h +57 -0
- data/src/core/util/http_client/format_request.cc +134 -0
- data/src/core/util/http_client/format_request.h +37 -0
- data/src/core/util/http_client/httpcli.cc +427 -0
- data/src/core/util/http_client/httpcli.h +279 -0
- data/src/core/util/http_client/httpcli_security_connector.cc +210 -0
- data/src/core/util/http_client/httpcli_ssl_credentials.h +38 -0
- data/src/core/util/http_client/parser.cc +447 -0
- data/src/core/util/http_client/parser.h +126 -0
- data/src/core/util/if_list.h +4530 -0
- data/src/core/util/iphone/cpu.cc +43 -0
- data/src/core/util/json/json.h +29 -0
- data/src/core/util/json/json_args.h +34 -0
- data/src/core/util/json/json_channel_args.h +42 -0
- data/src/core/util/json/json_object_loader.cc +215 -0
- data/src/core/util/json/json_object_loader.h +644 -0
- data/src/core/util/json/json_reader.cc +953 -0
- data/src/core/util/json/json_reader.h +33 -0
- data/src/core/util/json/json_util.cc +101 -0
- data/src/core/util/json/json_util.h +163 -0
- data/src/core/util/json/json_writer.cc +337 -0
- data/src/core/util/json/json_writer.h +33 -0
- data/src/core/util/latent_see.cc +163 -0
- data/src/core/util/latent_see.h +334 -0
- data/src/core/util/linux/cpu.cc +86 -0
- data/src/core/util/linux/env.cc +61 -0
- data/src/core/util/load_file.cc +87 -0
- data/src/core/util/load_file.h +33 -0
- data/src/core/util/log.cc +127 -0
- data/src/core/util/lru_cache.h +122 -0
- data/src/core/util/manual_constructor.h +145 -0
- data/src/core/util/match.h +74 -0
- data/src/core/util/matchers.cc +336 -0
- data/src/core/util/matchers.h +162 -0
- data/src/core/util/memory.h +52 -0
- data/src/core/util/mpscq.cc +108 -0
- data/src/core/util/mpscq.h +98 -0
- data/src/core/util/msys/tmpfile.cc +57 -0
- data/src/core/util/no_destruct.h +95 -0
- data/src/core/util/notification.h +66 -0
- data/src/core/util/orphanable.h +153 -0
- data/src/core/util/overload.h +59 -0
- data/src/core/util/packed_table.h +40 -0
- data/src/core/util/per_cpu.cc +34 -0
- data/src/core/util/per_cpu.h +102 -0
- data/src/core/util/posix/cpu.cc +83 -0
- data/src/core/util/posix/directory_reader.cc +82 -0
- data/src/core/util/posix/env.cc +47 -0
- data/src/core/util/posix/stat.cc +54 -0
- data/src/core/util/posix/string.cc +71 -0
- data/src/core/util/posix/sync.cc +157 -0
- data/src/core/util/posix/thd.cc +243 -0
- data/src/core/util/posix/time.cc +122 -0
- data/src/core/util/posix/tmpfile.cc +71 -0
- data/src/core/util/random_early_detection.cc +33 -0
- data/src/core/util/random_early_detection.h +61 -0
- data/src/core/util/ref_counted.h +403 -0
- data/src/core/util/ref_counted_ptr.h +443 -0
- data/src/core/util/ref_counted_string.cc +42 -0
- data/src/core/util/ref_counted_string.h +159 -0
- data/src/core/util/ring_buffer.h +122 -0
- data/src/core/util/single_set_ptr.h +89 -0
- data/src/core/util/sorted_pack.h +89 -0
- data/src/core/util/spinlock.h +51 -0
- data/src/core/util/stat.h +35 -0
- data/src/core/util/status_helper.cc +450 -0
- data/src/core/util/status_helper.h +143 -0
- data/src/core/util/strerror.cc +40 -0
- data/src/core/util/strerror.h +29 -0
- data/src/core/util/string.cc +341 -0
- data/src/core/util/string.h +110 -0
- data/src/core/util/sync.cc +123 -0
- data/src/core/util/sync.h +199 -0
- data/src/core/util/sync_abseil.cc +106 -0
- data/src/core/util/table.h +471 -0
- data/src/core/util/tchar.cc +49 -0
- data/src/core/util/tchar.h +33 -0
- data/src/core/util/thd.h +193 -0
- data/src/core/util/time.cc +240 -0
- data/src/core/util/time.h +385 -0
- data/src/core/util/time_averaged_stats.cc +60 -0
- data/src/core/util/time_averaged_stats.h +79 -0
- data/src/core/util/time_precise.cc +167 -0
- data/src/core/util/time_precise.h +68 -0
- data/src/core/util/time_util.cc +80 -0
- data/src/core/util/time_util.h +41 -0
- data/src/core/util/tmpfile.h +31 -0
- data/src/core/util/type_list.h +88 -0
- data/src/core/util/unique_ptr_with_bitset.h +86 -0
- data/src/core/util/unique_type_name.h +123 -0
- data/src/core/util/upb_utils.h +43 -0
- data/src/core/util/uri.cc +378 -0
- data/src/core/util/uri.h +112 -0
- data/src/core/util/useful.h +153 -0
- data/src/core/util/uuid_v4.cc +37 -0
- data/src/core/util/uuid_v4.h +35 -0
- data/src/core/util/validation_errors.cc +73 -0
- data/src/core/util/validation_errors.h +144 -0
- data/src/core/util/wait_for_single_owner.h +62 -0
- data/src/core/util/windows/cpu.cc +34 -0
- data/src/core/util/windows/directory_reader.cc +79 -0
- data/src/core/util/windows/env.cc +56 -0
- data/src/core/util/windows/stat.cc +50 -0
- data/src/core/util/windows/string.cc +68 -0
- data/src/core/util/windows/string_util.cc +53 -0
- data/src/core/util/windows/sync.cc +121 -0
- data/src/core/util/windows/thd.cc +182 -0
- data/src/core/util/windows/time.cc +104 -0
- data/src/core/util/windows/tmpfile.cc +66 -0
- data/src/core/util/work_serializer.cc +298 -0
- data/src/core/util/work_serializer.h +81 -0
- data/src/core/util/xxhash_inline.h +29 -0
- data/src/core/xds/grpc/certificate_provider_store.cc +148 -0
- data/src/core/xds/grpc/certificate_provider_store.h +132 -0
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +136 -0
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +80 -0
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +123 -0
- data/src/core/xds/grpc/xds_audit_logger_registry.h +67 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +238 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +167 -0
- data/src/core/xds/grpc/xds_certificate_provider.cc +216 -0
- data/src/core/xds/grpc/xds_certificate_provider.h +116 -0
- data/src/core/xds/grpc/xds_client_grpc.cc +445 -0
- data/src/core/xds/grpc/xds_client_grpc.h +117 -0
- data/src/core/xds/grpc/xds_cluster.cc +79 -0
- data/src/core/xds/grpc/xds_cluster.h +135 -0
- data/src/core/xds/grpc/xds_cluster_parser.cc +773 -0
- data/src/core/xds/grpc/xds_cluster_parser.h +61 -0
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +137 -0
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +96 -0
- data/src/core/xds/grpc/xds_common_types.cc +103 -0
- data/src/core/xds/grpc/xds_common_types.h +90 -0
- data/src/core/xds/grpc/xds_common_types_parser.cc +501 -0
- data/src/core/xds/grpc/xds_common_types_parser.h +77 -0
- data/src/core/xds/grpc/xds_endpoint.cc +96 -0
- data/src/core/xds/grpc/xds_endpoint.h +128 -0
- data/src/core/xds/grpc/xds_endpoint_parser.cc +475 -0
- data/src/core/xds/grpc/xds_endpoint_parser.h +47 -0
- data/src/core/xds/grpc/xds_health_status.cc +73 -0
- data/src/core/xds/grpc/xds_health_status.h +89 -0
- data/src/core/xds/grpc/xds_http_fault_filter.cc +247 -0
- data/src/core/xds/grpc/xds_http_fault_filter.h +63 -0
- data/src/core/xds/grpc/xds_http_filter.h +134 -0
- data/src/core/xds/grpc/xds_http_filter_registry.cc +122 -0
- data/src/core/xds/grpc/xds_http_filter_registry.h +104 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +141 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +61 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +609 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.h +63 -0
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +230 -0
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +63 -0
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +365 -0
- data/src/core/xds/grpc/xds_lb_policy_registry.h +70 -0
- data/src/core/xds/grpc/xds_listener.cc +173 -0
- data/src/core/xds/grpc/xds_listener.h +203 -0
- data/src/core/xds/grpc/xds_listener_parser.cc +1000 -0
- data/src/core/xds/grpc/xds_listener_parser.h +60 -0
- data/src/core/xds/grpc/xds_metadata.cc +62 -0
- data/src/core/xds/grpc/xds_metadata.h +158 -0
- data/src/core/xds/grpc/xds_metadata_parser.cc +197 -0
- data/src/core/xds/grpc/xds_metadata_parser.h +35 -0
- data/src/core/xds/grpc/xds_route_config.cc +276 -0
- data/src/core/xds/grpc/xds_route_config.h +220 -0
- data/src/core/xds/grpc/xds_route_config_parser.cc +960 -0
- data/src/core/xds/grpc/xds_route_config_parser.h +77 -0
- data/src/core/xds/grpc/xds_routing.cc +297 -0
- data/src/core/xds/grpc/xds_routing.h +112 -0
- data/src/core/xds/grpc/xds_server_grpc.cc +193 -0
- data/src/core/xds/grpc/xds_server_grpc.h +76 -0
- data/src/core/xds/grpc/xds_server_grpc_interface.h +33 -0
- data/src/core/xds/grpc/xds_transport_grpc.cc +392 -0
- data/src/core/xds/grpc/xds_transport_grpc.h +151 -0
- data/src/core/xds/xds_client/lrs_client.cc +1281 -0
- data/src/core/xds/xds_client/lrs_client.h +394 -0
- data/src/core/xds/xds_client/xds_api.cc +130 -0
- data/src/core/xds/xds_client/xds_api.h +34 -0
- data/src/core/xds/xds_client/xds_backend_metric_propagation.cc +63 -0
- data/src/core/xds/xds_client/xds_backend_metric_propagation.h +59 -0
- data/src/core/xds/xds_client/xds_bootstrap.cc +47 -0
- data/src/core/xds/xds_client/xds_bootstrap.h +110 -0
- data/src/core/xds/xds_client/xds_channel_args.h +32 -0
- data/src/core/xds/xds_client/xds_client.cc +2017 -0
- data/src/core/xds/xds_client/xds_client.h +442 -0
- data/src/core/xds/xds_client/xds_locality.h +102 -0
- data/src/core/xds/xds_client/xds_metrics.h +41 -0
- data/src/core/xds/xds_client/xds_resource_type.h +95 -0
- data/src/core/xds/xds_client/xds_resource_type_impl.h +92 -0
- data/src/core/xds/xds_client/xds_transport.h +104 -0
- data/src/ruby/bin/math_pb.rb +1 -22
- data/src/ruby/ext/grpc/extconf.rb +2 -1
- data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -3
- data/src/ruby/ext/grpc/rb_call.c +15 -8
- data/src/ruby/ext/grpc/rb_call_credentials.c +39 -32
- data/src/ruby/ext/grpc/rb_call_credentials.h +1 -0
- data/src/ruby/ext/grpc/rb_channel.c +42 -36
- data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
- data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -5
- data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_completion_queue.c +18 -36
- data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +9 -10
- data/src/ruby/ext/grpc/rb_event_thread.c +9 -9
- data/src/ruby/ext/grpc/rb_grpc.c +16 -16
- data/src/ruby/ext/grpc/rb_grpc.h +8 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +136 -144
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +205 -216
- data/src/ruby/ext/grpc/rb_server.c +47 -27
- data/src/ruby/ext/grpc/rb_server_credentials.c +4 -3
- data/src/ruby/ext/grpc/rb_server_credentials.h +2 -2
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -5
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +5 -4
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +2 -2
- data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
- data/src/ruby/lib/grpc/logconfig.rb +13 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
- data/src/ruby/spec/call_spec.rb +53 -40
- data/src/ruby/spec/channel_spec.rb +4 -2
- data/src/ruby/spec/client_server_spec.rb +148 -507
- data/src/ruby/spec/generic/active_call_spec.rb +64 -86
- data/src/ruby/spec/generic/client_stub_spec.rb +20 -20
- data/src/ruby/spec/logconfig_spec.rb +30 -0
- data/src/ruby/spec/support/services.rb +3 -0
- data/third_party/abseil-cpp/absl/algorithm/container.h +57 -18
- data/third_party/abseil-cpp/absl/base/attributes.h +84 -0
- data/third_party/abseil-cpp/absl/base/config.h +32 -51
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +0 -16
- data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +3 -1
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +13 -3
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -12
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +4 -4
- data/third_party/abseil-cpp/absl/base/macros.h +48 -0
- data/third_party/abseil-cpp/absl/base/no_destructor.h +35 -40
- data/third_party/abseil-cpp/absl/base/nullability.h +33 -7
- data/third_party/abseil-cpp/absl/base/optimization.h +11 -0
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/prefetch.h +1 -1
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +68 -12
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +60 -6
- data/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +13 -0
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +20 -11
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +15 -16
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +34 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +68 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +50 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +22 -7
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +26 -8
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +39 -35
- data/third_party/abseil-cpp/absl/container/internal/layout.h +190 -74
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +8 -6
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +334 -71
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1299 -458
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +19 -17
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +4 -3
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +2 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +12 -8
- data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +11 -7
- data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +18 -17
- data/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1057 -86
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +3 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +42 -0
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +43 -16
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +8 -7
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +10 -7
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +11 -0
- data/third_party/abseil-cpp/absl/flags/flag.h +2 -0
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +117 -30
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +192 -30
- data/third_party/abseil-cpp/absl/flags/reflection.cc +10 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +13 -3
- data/third_party/abseil-cpp/absl/functional/bind_front.h +3 -2
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +7 -7
- data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +9 -9
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +1 -1
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +13 -3
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +60 -28
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +4 -0
- data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +3 -3
- data/third_party/abseil-cpp/absl/log/check.h +209 -0
- data/third_party/abseil-cpp/absl/log/globals.h +28 -15
- data/third_party/abseil-cpp/absl/log/internal/check_impl.h +150 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.cc +138 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.h +462 -0
- data/third_party/abseil-cpp/absl/log/internal/conditions.h +2 -2
- data/third_party/abseil-cpp/absl/log/internal/log_impl.h +23 -23
- data/third_party/abseil-cpp/absl/log/internal/log_message.cc +104 -47
- data/third_party/abseil-cpp/absl/log/internal/log_message.h +23 -4
- data/third_party/abseil-cpp/absl/log/internal/nullstream.h +1 -10
- data/third_party/abseil-cpp/absl/log/internal/strip.h +36 -0
- data/third_party/abseil-cpp/absl/log/log.h +5 -1
- data/third_party/abseil-cpp/absl/log/log_sink.h +11 -4
- data/third_party/abseil-cpp/absl/log/vlog_is_on.h +3 -3
- data/third_party/abseil-cpp/absl/meta/type_traits.h +138 -42
- data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -3
- data/third_party/abseil-cpp/absl/numeric/int128.h +35 -5
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +14 -0
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +18 -0
- data/third_party/abseil-cpp/absl/numeric/internal/bits.h +6 -2
- data/third_party/abseil-cpp/absl/random/beta_distribution.h +8 -8
- data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +9 -7
- data/third_party/abseil-cpp/absl/random/distributions.h +11 -11
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +2 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +61 -2
- data/third_party/abseil-cpp/absl/status/status.cc +0 -4
- data/third_party/abseil-cpp/absl/status/status.h +4 -4
- data/third_party/abseil-cpp/absl/status/statusor.h +108 -142
- data/third_party/abseil-cpp/absl/strings/ascii.cc +32 -71
- data/third_party/abseil-cpp/absl/strings/cord.cc +20 -15
- data/third_party/abseil-cpp/absl/strings/cord.h +68 -7
- data/third_party/abseil-cpp/absl/strings/escaping.cc +96 -21
- data/third_party/abseil-cpp/absl/strings/escaping.h +25 -8
- data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +10 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +29 -9
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +19 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +23 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +24 -24
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +12 -7
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +9 -4
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +5 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +23 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +5 -1
- data/third_party/abseil-cpp/absl/strings/numbers.cc +107 -333
- data/third_party/abseil-cpp/absl/strings/numbers.h +12 -151
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +49 -142
- data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -85
- data/third_party/abseil-cpp/absl/strings/str_format.h +1 -1
- data/third_party/abseil-cpp/absl/strings/str_join.h +19 -5
- data/third_party/abseil-cpp/absl/strings/str_split.h +2 -2
- data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
- data/third_party/abseil-cpp/absl/strings/substitute.cc +4 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +5 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +5 -4
- data/third_party/abseil-cpp/absl/time/civil_time.h +2 -2
- data/third_party/abseil-cpp/absl/time/clock.cc +15 -1
- data/third_party/abseil-cpp/absl/time/duration.cc +58 -53
- data/third_party/abseil-cpp/absl/time/format.cc +2 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +0 -29
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
- data/third_party/abseil-cpp/absl/time/time.h +73 -29
- data/third_party/abseil-cpp/absl/types/compare.h +505 -0
- data/third_party/abseil-cpp/absl/types/internal/optional.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +55 -67
- data/third_party/abseil-cpp/absl/types/optional.h +15 -18
- data/third_party/abseil-cpp/absl/types/span.h +3 -2
- data/third_party/abseil-cpp/absl/types/variant.h +19 -24
- data/third_party/abseil-cpp/absl/utility/utility.h +3 -41
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.cc +243 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.cc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.cc +47 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.cc +42 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.cc +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.cc +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.cc +424 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.cc +239 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.cc +193 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.cc +32 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.cc +415 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.cc +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.cc +224 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.cc +172 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.cc +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.cc +355 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.cc +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.cc +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.cc +63 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.cc +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +13 -57
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.cc +241 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.cc +932 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.cc +669 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.cc +164 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.cc +276 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.cc +84 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.cc +229 -0
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.cc +434 -0
- data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +119 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.cc +658 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.cc +268 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.cc +511 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/errno.cc +50 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.cc +193 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.cc +292 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.cc +152 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.cc +446 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.cc +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.cc +147 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.cc +133 -0
- data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.cc +169 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn/bn_asn1.cc +57 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn/convert.cc +423 -0
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.cc +118 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.cc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.cc +266 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.cc +702 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.cc +912 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.cc +156 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.cc +224 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +36 -32
- data/third_party/boringssl-with-bazel/src/crypto/cipher/derive_key.cc +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aesctrhmac.cc +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aesgcmsiv.cc +845 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_chacha20poly1305.cc +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_des.cc +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_null.cc +51 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_rc2.cc +417 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_rc4.cc +54 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_tls.cc +599 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/get_cipher.cc +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/internal.h +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/tls_cbc.cc +476 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.cc +631 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.cc +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.cc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.cc +60 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.cc +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.cc +92 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.cc +39 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.cc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.cc +150 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.cc +287 -0
- data/third_party/boringssl-with-bazel/src/crypto/crypto.cc +181 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.cc +2154 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.cc +18 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.cc +529 -0
- data/third_party/boringssl-with-bazel/src/crypto/des/des.cc +829 -0
- data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +27 -69
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.cc +124 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/params.cc +442 -0
- data/third_party/boringssl-with-bazel/src/crypto/digest/digest_extra.cc +306 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.cc +951 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.cc +379 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/ec/ec_asn1.cc +570 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec/ec_derive.cc +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec/hash_to_curve.cc +510 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec/internal.h +78 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdh/ecdh.cc +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa/ecdsa_asn1.cc +357 -0
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.cc +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/err.cc +810 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.cc +379 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.cc +471 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.cc +440 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +20 -55
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.cc +153 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.cc +142 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.cc +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.cc +230 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.cc +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.cc +103 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.cc +225 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.cc +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.cc +609 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.cc +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.cc +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.cc +237 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.cc +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.cc +342 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.cc +216 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/sign.cc +114 -0
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.cc +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.cc.inc +191 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.cc.inc +1281 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/cbc.cc.inc +130 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/cfb.cc.inc +166 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ctr.cc.inc +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm.cc.inc +604 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm_nohw.cc.inc +302 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +450 -75
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.cc.inc +208 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.cc.inc +84 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ofb.cc.inc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/polyval.cc.inc +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.cc +282 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +729 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.cc.inc +269 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.cc.inc +554 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.cc.inc +374 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.cc.inc +225 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.cc.inc +159 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.cc.inc +191 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.cc.inc +825 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.cc.inc +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.cc.inc +1227 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.cc.inc +300 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.cc.inc +339 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.cc.inc +582 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +52 -151
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.cc.inc +108 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.cc.inc +430 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.cc.inc +222 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.cc.inc +698 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.cc.inc +980 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.cc.inc +260 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.cc.inc +142 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +20 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.cc.inc +320 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.cc.inc +459 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.cc.inc +295 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.cc.inc +672 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.cc.inc +1242 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.cc.inc +409 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +14 -68
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.cc.inc +288 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +26 -22
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.cc.inc +203 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.cc.inc +443 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +13 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.cc.inc +250 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.cc.inc +178 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +13 -47
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.cc.inc +226 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +91 -91
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.cc.inc +986 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.cc.inc +501 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.cc.inc +439 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.cc.inc +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +19 -66
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.cc.inc +306 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.cc.inc +1163 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz-table.h +15 -10
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.cc.inc +741 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +87 -25
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.cc.inc +749 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.cc.inc +179 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.cc.inc +284 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.cc.inc +269 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.cc.inc +255 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.cc.inc +221 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.cc.inc +88 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.cc.inc +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +41 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.cc +28 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.cc.inc +112 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.cc.inc +215 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/internal.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/keccak.cc.inc +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/mldsa.cc.inc +1993 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/mlkem.cc.inc +1165 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.cc.inc +214 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +19 -104
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.cc.inc +483 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.cc.inc +147 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +13 -56
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.cc.inc +379 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.cc.inc +983 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.cc.inc +1296 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.cc.inc +129 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.cc.inc +1042 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +36 -36
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.cc.inc +327 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +109 -74
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.cc.inc +390 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.cc.inc +299 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.cc.inc +473 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/address.h +119 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.cc.inc +169 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.cc.inc +161 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/params.h +78 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/slhdsa.cc.inc +329 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.cc.inc +173 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.h +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.cc.inc +171 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.h +50 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.cc.inc +180 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.cc +1095 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.cc +2185 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +366 -459
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +14 -14
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.cc +869 -0
- data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +31 -75
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.cc +309 -0
- data/third_party/boringssl-with-bazel/src/crypto/md4/md4.cc +194 -0
- data/third_party/boringssl-with-bazel/src/crypto/md5/internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/md5/md5.cc +243 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.cc +583 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.cc +90 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +152 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.cc +519 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +18 -57
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.cc +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/internal.h +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.cc +149 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.cc +254 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.cc +741 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.cc +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.cc +208 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.cc +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.cc +22 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.cc +22 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.cc +193 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.cc +526 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +14 -54
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.cc +275 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.cc +487 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.cc +1304 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.cc +314 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.cc +310 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.cc +850 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.cc +262 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/deterministic.cc +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/fork_detect.cc +194 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/forkunsafe.cc +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/getentropy.cc +60 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/getrandom_fillin.h +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/ios.cc +42 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/passive.cc +178 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/rand.cc +77 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/sysrand_internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/trusty.cc +46 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/urandom.cc +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/windows.cc +102 -0
- data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.cc +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount.cc +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa/internal.h +36 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_asn1.cc +283 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_crypt.cc +531 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_extra.cc +19 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_print.cc +27 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha1.cc +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha256.cc +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha512.cc +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.cc +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/slhdsa.cc +113 -0
- data/third_party/boringssl-with-bazel/src/crypto/spake2plus/internal.h +204 -0
- data/third_party/boringssl-with-bazel/src/crypto/spake2plus/spake2plus.cc +501 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.cc +496 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread.cc +68 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.cc +51 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.cc +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.cc +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.cc +1656 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.cc +685 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.cc +1263 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.cc +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.cc +97 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.cc +74 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.cc +136 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.cc +542 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.cc +355 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.cc +227 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/ext_dat.h +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.cc +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +17 -62
- data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.cc +185 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/policy.cc +796 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.cc +364 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.cc +103 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.cc +203 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.cc +287 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.cc +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.cc +181 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.cc +31 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.cc +593 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.cc +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.cc +102 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.cc +374 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.cc +444 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.cc +557 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.cc +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.cc +114 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.cc +228 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.cc +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.cc +164 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.cc +81 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.cc +304 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.cc +514 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.cc +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.cc +101 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.cc +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.cc +183 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.cc +590 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.cc +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.cc +1342 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.cc +47 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.cc +186 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.cc +238 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.cc +66 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.cc +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.cc +139 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.cc +554 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.cc +164 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.cc +257 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.cc +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.cc +118 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.cc +147 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.cc +249 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.cc +1600 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.cc +440 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.cc +235 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.cc +365 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.cc +67 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.cc +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.cc +107 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.cc +318 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.cc +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.cc +342 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.cc +36 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.cc +492 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.cc +170 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.cc +74 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.cc +51 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.cc +34 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.cc +28 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.cc +506 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.cc +169 -0
- data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.cc +1529 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +13 -47
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +16 -76
- data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +37 -63
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +248 -328
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +32 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/bcm_public.h +82 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +98 -97
- data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/blowfish.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +28 -130
- data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/buffer.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +43 -20
- data/third_party/boringssl-with-bazel/src/include/openssl/cast.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +31 -59
- data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +35 -25
- data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/des.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +34 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +19 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +27 -61
- data/third_party/boringssl-with-bazel/src/include/openssl/dtls1.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +14 -66
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +31 -72
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdh.h +14 -65
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +13 -51
- data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +26 -107
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +39 -70
- data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +14 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +28 -110
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +146 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +21 -19
- data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/md4.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/md5.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +130 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +222 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +30 -69
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +15 -57
- data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/objects.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslv.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +88 -117
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +32 -23
- data/third_party/boringssl-with-bazel/src/include/openssl/rc4.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/ripemd.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +23 -63
- data/third_party/boringssl-with-bazel/src/include/openssl/safestack.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +15 -15
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +15 -95
- data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/slhdsa.h +174 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +60 -32
- data/third_party/boringssl-with-bazel/src/include/openssl/srtp.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +723 -369
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +15 -114
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +23 -58
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +36 -23
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +15 -57
- data/third_party/boringssl-with-bazel/src/include/openssl/time.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +29 -158
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +15 -15
- data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2951 -2520
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3_errors.h +13 -53
- data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +15 -14
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +684 -441
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +129 -168
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +177 -127
- data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +21 -127
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +112 -97
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +456 -222
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +57 -56
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +736 -530
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +67 -74
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +78 -160
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +283 -332
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +242 -324
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +1220 -648
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +88 -170
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +29 -160
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +39 -113
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +103 -111
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +52 -145
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +22 -24
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +155 -521
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +239 -373
- data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +609 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +15 -111
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +129 -33
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +289 -389
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +147 -169
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +104 -247
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +17 -91
- data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +109 -157
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +48 -28
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +104 -301
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +45 -176
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +79 -69
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +187 -88
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +296 -163
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +290 -116
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +64 -117
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +55 -157
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +6 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +6 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +4 -1
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +1 -1
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +3 -0
- data/third_party/upb/upb/base/internal/log2.h +3 -1
- data/third_party/upb/upb/base/string_view.h +11 -1
- data/third_party/upb/upb/hash/common.c +5 -1
- data/third_party/upb/upb/json/decode.c +60 -13
- data/third_party/upb/upb/json/decode.h +25 -3
- data/third_party/upb/upb/json/encode.c +2 -2
- data/third_party/upb/upb/lex/round_trip.c +10 -0
- data/third_party/upb/upb/mem/alloc.h +5 -0
- data/third_party/upb/upb/mem/arena.c +355 -125
- data/third_party/upb/upb/mem/arena.h +66 -19
- data/third_party/upb/upb/mem/arena.hpp +9 -21
- data/third_party/upb/upb/mem/internal/arena.h +10 -9
- data/third_party/upb/upb/message/accessors.c +6 -7
- data/third_party/upb/upb/message/accessors.h +227 -376
- data/third_party/upb/upb/message/array.c +26 -3
- data/third_party/upb/upb/message/array.h +17 -9
- data/third_party/upb/upb/message/compat.c +13 -16
- data/third_party/upb/upb/message/compat.h +7 -6
- data/third_party/upb/upb/message/copy.c +56 -48
- data/third_party/upb/upb/message/internal/accessors.h +748 -57
- data/third_party/upb/upb/message/internal/array.h +23 -15
- data/third_party/upb/upb/message/internal/extension.c +34 -31
- data/third_party/upb/upb/message/internal/extension.h +29 -16
- data/third_party/upb/upb/message/internal/iterator.c +58 -0
- data/third_party/upb/upb/message/internal/iterator.h +29 -0
- data/third_party/upb/upb/message/internal/map.h +17 -3
- data/third_party/upb/upb/message/internal/map_sorter.h +4 -4
- data/third_party/upb/upb/message/internal/message.c +64 -29
- data/third_party/upb/upb/message/internal/message.h +165 -24
- data/third_party/upb/upb/message/internal/tagged_ptr.h +5 -5
- data/third_party/upb/upb/message/internal/types.h +41 -1
- data/third_party/upb/upb/message/map.c +25 -0
- data/third_party/upb/upb/message/map.h +11 -7
- data/third_party/upb/upb/message/map_sorter.c +20 -8
- data/third_party/upb/upb/message/merge.c +38 -0
- data/third_party/upb/upb/message/merge.h +26 -0
- data/third_party/upb/upb/message/message.c +166 -35
- data/third_party/upb/upb/message/message.h +74 -3
- data/third_party/upb/upb/message/tagged_ptr.h +4 -8
- data/third_party/upb/upb/message/value.h +35 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.c +4 -4
- data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
- data/third_party/upb/upb/mini_descriptor/decode.c +114 -137
- data/third_party/upb/upb/mini_descriptor/decode.h +4 -3
- data/third_party/upb/upb/mini_descriptor/internal/encode.hpp +1 -1
- data/third_party/upb/upb/mini_descriptor/link.c +23 -21
- data/third_party/upb/upb/mini_table/enum.h +2 -4
- data/third_party/upb/upb/mini_table/extension.h +4 -12
- data/third_party/upb/upb/mini_table/extension_registry.c +41 -11
- data/third_party/upb/upb/mini_table/extension_registry.h +30 -6
- data/third_party/upb/upb/mini_table/field.h +12 -38
- data/third_party/upb/upb/mini_table/file.h +6 -19
- data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
- data/third_party/upb/upb/mini_table/internal/extension.h +18 -9
- data/third_party/upb/upb/mini_table/internal/field.h +23 -23
- data/third_party/upb/upb/mini_table/internal/file.h +7 -7
- data/third_party/upb/upb/mini_table/internal/message.c +21 -1
- data/third_party/upb/upb/mini_table/internal/message.h +80 -36
- data/third_party/upb/upb/mini_table/internal/sub.h +9 -4
- data/third_party/upb/upb/mini_table/message.c +21 -13
- data/third_party/upb/upb/mini_table/message.h +23 -22
- data/third_party/upb/upb/mini_table/sub.h +4 -12
- data/third_party/upb/upb/port/atomic.h +134 -7
- data/third_party/upb/upb/port/def.inc +238 -40
- data/third_party/upb/upb/port/undef.inc +18 -1
- data/third_party/upb/upb/reflection/common.h +1 -11
- data/third_party/upb/upb/reflection/def.hpp +39 -0
- data/third_party/upb/upb/reflection/def_pool.c +10 -3
- data/third_party/upb/upb/reflection/def_pool.h +2 -2
- data/third_party/upb/upb/reflection/descriptor_bootstrap.h +19 -0
- data/third_party/upb/upb/reflection/enum_def.c +5 -1
- data/third_party/upb/upb/reflection/enum_def.h +1 -0
- data/third_party/upb/upb/reflection/enum_value_def.c +3 -8
- data/third_party/upb/upb/reflection/field_def.c +72 -46
- data/third_party/upb/upb/reflection/field_def.h +4 -0
- data/third_party/upb/upb/reflection/file_def.c +42 -9
- data/third_party/upb/upb/reflection/file_def.h +3 -0
- data/third_party/upb/upb/reflection/internal/def_builder.c +1 -1
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
- data/third_party/upb/upb/reflection/message.c +45 -25
- data/third_party/upb/upb/reflection/message.h +5 -3
- data/third_party/upb/upb/reflection/message_def.c +14 -9
- data/third_party/upb/upb/reflection/method_def.h +8 -7
- data/third_party/upb/upb/reflection/service_def.h +6 -5
- data/third_party/upb/upb/text/encode.c +53 -401
- data/third_party/upb/upb/text/encode.h +1 -11
- data/third_party/upb/upb/text/internal/encode.c +199 -0
- data/third_party/upb/upb/text/internal/encode.h +244 -0
- data/third_party/upb/upb/text/options.h +22 -0
- data/third_party/upb/upb/wire/decode.c +219 -138
- data/third_party/upb/upb/wire/decode.h +19 -4
- data/third_party/upb/upb/wire/encode.c +160 -84
- data/third_party/upb/upb/wire/encode.h +14 -1
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +21 -23
- data/third_party/upb/upb/wire/internal/decode_fast.c +28 -29
- data/third_party/upb/upb/wire/internal/decoder.h +4 -11
- data/third_party/upb/upb/wire/internal/reader.h +3 -3
- data/third_party/upb/upb/wire/reader.c +1 -2
- data/third_party/upb/upb/wire/reader.h +4 -8
- data/third_party/utf8_range/utf8_range.c +15 -275
- data/third_party/utf8_range/utf8_range_neon.inc +117 -0
- data/third_party/utf8_range/utf8_range_sse.inc +272 -0
- data/third_party/zlib/deflate.c +40 -15
- data/third_party/zlib/deflate.h +33 -2
- data/third_party/zlib/gzguts.h +2 -6
- data/third_party/zlib/inflate.c +1 -1
- data/third_party/zlib/inftrees.c +3 -3
- data/third_party/zlib/inftrees.h +2 -2
- data/third_party/zlib/trees.c +18 -4
- data/third_party/zlib/zconf.h +1 -9
- data/third_party/zlib/zlib.h +12 -12
- data/third_party/zlib/zutil.h +4 -25
- metadata +872 -764
- data/include/grpc/grpc_cronet.h +0 -37
- data/src/core/client_channel/client_channel_channelz.cc +0 -93
- data/src/core/client_channel/client_channel_channelz.h +0 -85
- data/src/core/client_channel/config_selector.cc +0 -60
- data/src/core/client_channel/http_proxy_mapper.cc +0 -304
- data/src/core/client_channel/http_proxy_mapper.h +0 -53
- data/src/core/ext/filters/deadline/deadline_filter.cc +0 -407
- data/src/core/ext/filters/deadline/deadline_filter.h +0 -85
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +0 -83
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +0 -171
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +0 -33
- data/src/core/ext/gcp/metadata_query.cc +0 -136
- data/src/core/ext/gcp/metadata_query.h +0 -87
- data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
- data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -44
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
- data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +0 -419
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +0 -81
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +0 -30
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +0 -400
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +0 -106
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +0 -33
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +0 -104
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +0 -32
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +0 -66
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +0 -47
- data/src/core/ext/xds/certificate_provider_store.cc +0 -155
- data/src/core/ext/xds/certificate_provider_store.h +0 -134
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +0 -138
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +0 -82
- data/src/core/ext/xds/upb_utils.h +0 -45
- data/src/core/ext/xds/xds_api.cc +0 -572
- data/src/core/ext/xds/xds_api.h +0 -189
- data/src/core/ext/xds/xds_audit_logger_registry.cc +0 -123
- data/src/core/ext/xds/xds_audit_logger_registry.h +0 -68
- data/src/core/ext/xds/xds_bootstrap.cc +0 -38
- data/src/core/ext/xds/xds_bootstrap.h +0 -88
- data/src/core/ext/xds/xds_bootstrap_grpc.cc +0 -397
- data/src/core/ext/xds/xds_bootstrap_grpc.h +0 -197
- data/src/core/ext/xds/xds_certificate_provider.cc +0 -217
- data/src/core/ext/xds/xds_certificate_provider.h +0 -116
- data/src/core/ext/xds/xds_channel_args.h +0 -32
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +0 -107
- data/src/core/ext/xds/xds_channel_stack_modifier.h +0 -64
- data/src/core/ext/xds/xds_client.cc +0 -2303
- data/src/core/ext/xds/xds_client.h +0 -391
- data/src/core/ext/xds/xds_client_grpc.cc +0 -410
- data/src/core/ext/xds/xds_client_grpc.h +0 -110
- data/src/core/ext/xds/xds_client_stats.cc +0 -173
- data/src/core/ext/xds/xds_client_stats.h +0 -258
- data/src/core/ext/xds/xds_cluster.cc +0 -795
- data/src/core/ext/xds/xds_cluster.h +0 -145
- data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +0 -140
- data/src/core/ext/xds/xds_cluster_specifier_plugin.h +0 -97
- data/src/core/ext/xds/xds_common_types.cc +0 -509
- data/src/core/ext/xds/xds_common_types.h +0 -108
- data/src/core/ext/xds/xds_endpoint.cc +0 -517
- data/src/core/ext/xds/xds_endpoint.h +0 -150
- data/src/core/ext/xds/xds_health_status.cc +0 -75
- data/src/core/ext/xds/xds_health_status.h +0 -91
- data/src/core/ext/xds/xds_http_fault_filter.cc +0 -238
- data/src/core/ext/xds/xds_http_fault_filter.h +0 -58
- data/src/core/ext/xds/xds_http_filters.cc +0 -117
- data/src/core/ext/xds/xds_http_filters.h +0 -182
- data/src/core/ext/xds/xds_http_rbac_filter.cc +0 -588
- data/src/core/ext/xds/xds_http_rbac_filter.h +0 -58
- data/src/core/ext/xds/xds_http_stateful_session_filter.cc +0 -218
- data/src/core/ext/xds/xds_http_stateful_session_filter.h +0 -58
- data/src/core/ext/xds/xds_lb_policy_registry.cc +0 -371
- data/src/core/ext/xds/xds_lb_policy_registry.h +0 -71
- data/src/core/ext/xds/xds_listener.cc +0 -1142
- data/src/core/ext/xds/xds_listener.h +0 -236
- data/src/core/ext/xds/xds_metrics.h +0 -39
- data/src/core/ext/xds/xds_resource_type.h +0 -98
- data/src/core/ext/xds/xds_resource_type_impl.h +0 -88
- data/src/core/ext/xds/xds_route_config.cc +0 -1198
- data/src/core/ext/xds/xds_route_config.h +0 -253
- data/src/core/ext/xds/xds_routing.cc +0 -264
- data/src/core/ext/xds/xds_routing.h +0 -106
- data/src/core/ext/xds/xds_server_config_fetcher.cc +0 -1393
- data/src/core/ext/xds/xds_transport.h +0 -89
- data/src/core/ext/xds/xds_transport_grpc.cc +0 -350
- data/src/core/ext/xds/xds_transport_grpc.h +0 -139
- data/src/core/lib/avl/avl.h +0 -325
- data/src/core/lib/backoff/backoff.cc +0 -47
- data/src/core/lib/backoff/backoff.h +0 -89
- data/src/core/lib/backoff/random_early_detection.cc +0 -33
- data/src/core/lib/backoff/random_early_detection.h +0 -62
- data/src/core/lib/channel/call_finalization.h +0 -88
- data/src/core/lib/channel/call_tracer.cc +0 -364
- data/src/core/lib/channel/call_tracer.h +0 -227
- data/src/core/lib/channel/channel_stack_trace.cc +0 -19
- data/src/core/lib/channel/channel_stack_trace.h +0 -24
- data/src/core/lib/channel/channel_trace.cc +0 -187
- data/src/core/lib/channel/channel_trace.h +0 -138
- data/src/core/lib/channel/channelz.cc +0 -610
- data/src/core/lib/channel/channelz.h +0 -384
- data/src/core/lib/channel/channelz_registry.cc +0 -281
- data/src/core/lib/channel/channelz_registry.h +0 -102
- data/src/core/lib/channel/context.h +0 -77
- data/src/core/lib/channel/metrics.cc +0 -396
- data/src/core/lib/channel/metrics.h +0 -406
- data/src/core/lib/channel/server_call_tracer_filter.cc +0 -113
- data/src/core/lib/channel/server_call_tracer_filter.h +0 -28
- data/src/core/lib/channel/status_util.cc +0 -155
- data/src/core/lib/channel/status_util.h +0 -81
- data/src/core/lib/channel/tcp_tracer.h +0 -144
- data/src/core/lib/config/config_vars.cc +0 -154
- data/src/core/lib/config/config_vars.h +0 -131
- data/src/core/lib/config/config_vars_non_generated.cc +0 -49
- data/src/core/lib/config/core_configuration.cc +0 -111
- data/src/core/lib/config/core_configuration.h +0 -244
- data/src/core/lib/config/load_config.cc +0 -79
- data/src/core/lib/config/load_config.h +0 -55
- data/src/core/lib/debug/event_log.cc +0 -88
- data/src/core/lib/debug/event_log.h +0 -81
- data/src/core/lib/debug/histogram_view.cc +0 -69
- data/src/core/lib/debug/histogram_view.h +0 -37
- data/src/core/lib/debug/stats.cc +0 -68
- data/src/core/lib/debug/stats.h +0 -64
- data/src/core/lib/debug/stats_data.cc +0 -752
- data/src/core/lib/debug/stats_data.h +0 -579
- data/src/core/lib/event_engine/trace.cc +0 -25
- data/src/core/lib/event_engine/trace.h +0 -49
- data/src/core/lib/gpr/alloc.cc +0 -71
- data/src/core/lib/gpr/alloc.h +0 -28
- data/src/core/lib/gpr/android/log.cc +0 -79
- data/src/core/lib/gpr/atm.cc +0 -35
- data/src/core/lib/gpr/iphone/cpu.cc +0 -44
- data/src/core/lib/gpr/linux/cpu.cc +0 -87
- data/src/core/lib/gpr/linux/log.cc +0 -114
- data/src/core/lib/gpr/log.cc +0 -166
- data/src/core/lib/gpr/log_internal.h +0 -55
- data/src/core/lib/gpr/msys/tmpfile.cc +0 -59
- data/src/core/lib/gpr/posix/cpu.cc +0 -84
- data/src/core/lib/gpr/posix/log.cc +0 -111
- data/src/core/lib/gpr/posix/string.cc +0 -72
- data/src/core/lib/gpr/posix/sync.cc +0 -159
- data/src/core/lib/gpr/posix/time.cc +0 -122
- data/src/core/lib/gpr/posix/tmpfile.cc +0 -71
- data/src/core/lib/gpr/spinlock.h +0 -53
- data/src/core/lib/gpr/string.cc +0 -344
- data/src/core/lib/gpr/string.h +0 -112
- data/src/core/lib/gpr/sync.cc +0 -124
- data/src/core/lib/gpr/sync_abseil.cc +0 -110
- data/src/core/lib/gpr/time.cc +0 -269
- data/src/core/lib/gpr/time_precise.cc +0 -168
- data/src/core/lib/gpr/time_precise.h +0 -69
- data/src/core/lib/gpr/tmpfile.h +0 -32
- data/src/core/lib/gpr/useful.h +0 -184
- data/src/core/lib/gpr/windows/cpu.cc +0 -35
- data/src/core/lib/gpr/windows/log.cc +0 -116
- data/src/core/lib/gpr/windows/string.cc +0 -69
- data/src/core/lib/gpr/windows/string_util.cc +0 -55
- data/src/core/lib/gpr/windows/sync.cc +0 -122
- data/src/core/lib/gpr/windows/time.cc +0 -105
- data/src/core/lib/gpr/windows/tmpfile.cc +0 -68
- data/src/core/lib/gprpp/atomic_utils.h +0 -47
- data/src/core/lib/gprpp/bitset.h +0 -225
- data/src/core/lib/gprpp/chunked_vector.h +0 -257
- data/src/core/lib/gprpp/construct_destruct.h +0 -40
- data/src/core/lib/gprpp/cpp_impl_of.h +0 -49
- data/src/core/lib/gprpp/crash.cc +0 -43
- data/src/core/lib/gprpp/crash.h +0 -37
- data/src/core/lib/gprpp/debug_location.h +0 -99
- data/src/core/lib/gprpp/directory_reader.h +0 -48
- data/src/core/lib/gprpp/down_cast.h +0 -49
- data/src/core/lib/gprpp/dual_ref_counted.h +0 -364
- data/src/core/lib/gprpp/env.h +0 -53
- data/src/core/lib/gprpp/examine_stack.cc +0 -43
- data/src/core/lib/gprpp/examine_stack.h +0 -45
- data/src/core/lib/gprpp/fork.cc +0 -242
- data/src/core/lib/gprpp/fork.h +0 -98
- data/src/core/lib/gprpp/host_port.cc +0 -114
- data/src/core/lib/gprpp/host_port.h +0 -57
- data/src/core/lib/gprpp/if_list.h +0 -4530
- data/src/core/lib/gprpp/linux/env.cc +0 -62
- data/src/core/lib/gprpp/load_file.cc +0 -78
- data/src/core/lib/gprpp/load_file.h +0 -34
- data/src/core/lib/gprpp/manual_constructor.h +0 -146
- data/src/core/lib/gprpp/match.h +0 -75
- data/src/core/lib/gprpp/memory.h +0 -53
- data/src/core/lib/gprpp/mpscq.cc +0 -108
- data/src/core/lib/gprpp/mpscq.h +0 -99
- data/src/core/lib/gprpp/no_destruct.h +0 -95
- data/src/core/lib/gprpp/notification.h +0 -67
- data/src/core/lib/gprpp/orphanable.h +0 -153
- data/src/core/lib/gprpp/overload.h +0 -59
- data/src/core/lib/gprpp/packed_table.h +0 -40
- data/src/core/lib/gprpp/per_cpu.cc +0 -35
- data/src/core/lib/gprpp/per_cpu.h +0 -104
- data/src/core/lib/gprpp/posix/directory_reader.cc +0 -82
- data/src/core/lib/gprpp/posix/env.cc +0 -47
- data/src/core/lib/gprpp/posix/stat.cc +0 -54
- data/src/core/lib/gprpp/posix/thd.cc +0 -247
- data/src/core/lib/gprpp/ref_counted.h +0 -394
- data/src/core/lib/gprpp/ref_counted_ptr.h +0 -445
- data/src/core/lib/gprpp/ref_counted_string.cc +0 -44
- data/src/core/lib/gprpp/ref_counted_string.h +0 -161
- data/src/core/lib/gprpp/single_set_ptr.h +0 -87
- data/src/core/lib/gprpp/sorted_pack.h +0 -89
- data/src/core/lib/gprpp/stat.h +0 -36
- data/src/core/lib/gprpp/status_helper.cc +0 -453
- data/src/core/lib/gprpp/status_helper.h +0 -190
- data/src/core/lib/gprpp/strerror.cc +0 -41
- data/src/core/lib/gprpp/strerror.h +0 -29
- data/src/core/lib/gprpp/sync.h +0 -200
- data/src/core/lib/gprpp/table.h +0 -452
- data/src/core/lib/gprpp/tchar.cc +0 -49
- data/src/core/lib/gprpp/tchar.h +0 -33
- data/src/core/lib/gprpp/thd.h +0 -195
- data/src/core/lib/gprpp/time.cc +0 -242
- data/src/core/lib/gprpp/time.h +0 -385
- data/src/core/lib/gprpp/time_averaged_stats.cc +0 -60
- data/src/core/lib/gprpp/time_averaged_stats.h +0 -79
- data/src/core/lib/gprpp/time_util.cc +0 -81
- data/src/core/lib/gprpp/time_util.h +0 -42
- data/src/core/lib/gprpp/type_list.h +0 -32
- data/src/core/lib/gprpp/unique_type_name.h +0 -104
- data/src/core/lib/gprpp/uuid_v4.cc +0 -37
- data/src/core/lib/gprpp/uuid_v4.h +0 -36
- data/src/core/lib/gprpp/validation_errors.cc +0 -65
- data/src/core/lib/gprpp/validation_errors.h +0 -134
- data/src/core/lib/gprpp/windows/directory_reader.cc +0 -81
- data/src/core/lib/gprpp/windows/env.cc +0 -56
- data/src/core/lib/gprpp/windows/stat.cc +0 -50
- data/src/core/lib/gprpp/windows/thd.cc +0 -182
- data/src/core/lib/gprpp/work_serializer.cc +0 -558
- data/src/core/lib/gprpp/work_serializer.h +0 -107
- data/src/core/lib/gprpp/xxhash_inline.h +0 -29
- data/src/core/lib/handshaker/proxy_mapper.h +0 -53
- data/src/core/lib/handshaker/proxy_mapper_registry.cc +0 -71
- data/src/core/lib/handshaker/proxy_mapper_registry.h +0 -75
- data/src/core/lib/http/format_request.cc +0 -137
- data/src/core/lib/http/format_request.h +0 -38
- data/src/core/lib/http/httpcli.cc +0 -392
- data/src/core/lib/http/httpcli.h +0 -268
- data/src/core/lib/http/httpcli_security_connector.cc +0 -213
- data/src/core/lib/http/httpcli_ssl_credentials.h +0 -39
- data/src/core/lib/http/parser.cc +0 -451
- data/src/core/lib/http/parser.h +0 -130
- data/src/core/lib/iomgr/ev_windows.cc +0 -30
- data/src/core/lib/iomgr/gethostname.h +0 -26
- data/src/core/lib/iomgr/gethostname_fallback.cc +0 -30
- data/src/core/lib/iomgr/gethostname_host_name_max.cc +0 -40
- data/src/core/lib/iomgr/gethostname_sysconf.cc +0 -40
- data/src/core/lib/iomgr/grpc_if_nametoindex.h +0 -30
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +0 -43
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +0 -39
- data/src/core/lib/json/json.h +0 -30
- data/src/core/lib/json/json_args.h +0 -34
- data/src/core/lib/json/json_channel_args.h +0 -42
- data/src/core/lib/json/json_object_loader.cc +0 -216
- data/src/core/lib/json/json_object_loader.h +0 -645
- data/src/core/lib/json/json_reader.cc +0 -956
- data/src/core/lib/json/json_reader.h +0 -34
- data/src/core/lib/json/json_util.cc +0 -101
- data/src/core/lib/json/json_util.h +0 -164
- data/src/core/lib/json/json_writer.cc +0 -339
- data/src/core/lib/json/json_writer.h +0 -33
- data/src/core/lib/matchers/matchers.cc +0 -330
- data/src/core/lib/matchers/matchers.h +0 -163
- data/src/core/lib/promise/trace.cc +0 -20
- data/src/core/lib/promise/trace.h +0 -24
- data/src/core/lib/resource_quota/trace.cc +0 -19
- data/src/core/lib/resource_quota/trace.h +0 -24
- data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +0 -70
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +0 -50
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +0 -76
- data/src/core/lib/security/context/security_context.cc +0 -329
- data/src/core/lib/security/context/security_context.h +0 -181
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +0 -117
- data/src/core/lib/security/credentials/alts/alts_credentials.h +0 -123
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +0 -72
- data/src/core/lib/security/credentials/alts/check_gcp_environment.h +0 -57
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +0 -68
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +0 -34
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +0 -103
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +0 -125
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +0 -46
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +0 -74
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +0 -56
- data/src/core/lib/security/credentials/call_creds_util.cc +0 -97
- data/src/core/lib/security/credentials/call_creds_util.h +0 -43
- data/src/core/lib/security/credentials/channel_creds_registry.h +0 -127
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +0 -240
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +0 -171
- data/src/core/lib/security/credentials/composite/composite_credentials.h +0 -133
- data/src/core/lib/security/credentials/credentials.cc +0 -160
- data/src/core/lib/security/credentials/credentials.h +0 -299
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +0 -532
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +0 -105
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +0 -231
- data/src/core/lib/security/credentials/external/aws_request_signer.h +0 -72
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +0 -607
- data/src/core/lib/security/credentials/external/external_account_credentials.h +0 -139
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +0 -138
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +0 -59
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +0 -247
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +0 -75
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +0 -105
- data/src/core/lib/security/credentials/fake/fake_credentials.h +0 -123
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +0 -40
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +0 -447
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +0 -99
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +0 -83
- data/src/core/lib/security/credentials/iam/iam_credentials.h +0 -65
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +0 -71
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +0 -61
- data/src/core/lib/security/credentials/jwt/json_token.cc +0 -321
- data/src/core/lib/security/credentials/jwt/json_token.h +0 -80
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +0 -188
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +0 -106
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +0 -995
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +0 -124
- data/src/core/lib/security/credentials/local/local_credentials.cc +0 -69
- data/src/core/lib/security/credentials/local/local_credentials.h +0 -77
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +0 -753
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +0 -220
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +0 -215
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +0 -125
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +0 -486
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +0 -145
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +0 -338
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +0 -216
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +0 -86
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +0 -421
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +0 -205
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +0 -241
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +0 -170
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +0 -163
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +0 -144
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +0 -262
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +0 -133
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +0 -174
- data/src/core/lib/security/credentials/tls/tls_credentials.h +0 -73
- data/src/core/lib/security/credentials/tls/tls_utils.cc +0 -129
- data/src/core/lib/security/credentials/tls/tls_utils.h +0 -51
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +0 -228
- data/src/core/lib/security/credentials/xds/xds_credentials.h +0 -112
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +0 -308
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +0 -78
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +0 -314
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +0 -42
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +0 -120
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +0 -103
- data/src/core/lib/security/security_connector/load_system_roots.h +0 -36
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +0 -36
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +0 -167
- data/src/core/lib/security/security_connector/load_system_roots_supported.h +0 -45
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +0 -87
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +0 -306
- data/src/core/lib/security/security_connector/local/local_security_connector.h +0 -62
- data/src/core/lib/security/security_connector/security_connector.cc +0 -127
- data/src/core/lib/security/security_connector/security_connector.h +0 -200
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +0 -407
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +0 -82
- data/src/core/lib/security/security_connector/ssl_utils.cc +0 -628
- data/src/core/lib/security/security_connector/ssl_utils.h +0 -191
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +0 -829
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +0 -286
- data/src/core/lib/security/transport/auth_filters.h +0 -140
- data/src/core/lib/security/transport/client_auth_filter.cc +0 -227
- data/src/core/lib/security/transport/secure_endpoint.cc +0 -565
- data/src/core/lib/security/transport/secure_endpoint.h +0 -43
- data/src/core/lib/security/transport/security_handshaker.cc +0 -682
- data/src/core/lib/security/transport/security_handshaker.h +0 -47
- data/src/core/lib/security/transport/server_auth_filter.cc +0 -224
- data/src/core/lib/security/transport/tsi_error.cc +0 -31
- data/src/core/lib/security/transport/tsi_error.h +0 -30
- data/src/core/lib/security/util/json_util.cc +0 -71
- data/src/core/lib/security/util/json_util.h +0 -43
- data/src/core/lib/slice/slice_refcount.cc +0 -20
- data/src/core/lib/surface/api_trace.cc +0 -25
- data/src/core/lib/surface/api_trace.h +0 -53
- data/src/core/lib/surface/call_trace.h +0 -24
- data/src/core/lib/surface/server.cc +0 -2030
- data/src/core/lib/surface/server.h +0 -555
- data/src/core/lib/surface/server_interface.h +0 -43
- data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
- data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
- data/src/core/lib/transport/batch_builder.cc +0 -170
- data/src/core/lib/transport/batch_builder.h +0 -476
- data/src/core/lib/transport/call_filters.cc +0 -471
- data/src/core/lib/transport/call_filters.h +0 -1799
- data/src/core/lib/transport/call_size_estimator.cc +0 -41
- data/src/core/lib/transport/call_size_estimator.h +0 -52
- data/src/core/lib/transport/call_spine.cc +0 -107
- data/src/core/lib/transport/call_spine.h +0 -434
- data/src/core/lib/transport/custom_metadata.h +0 -30
- data/src/core/lib/transport/endpoint_info_handshaker.cc +0 -80
- data/src/core/lib/transport/endpoint_info_handshaker.h +0 -37
- data/src/core/lib/transport/handshaker.cc +0 -229
- data/src/core/lib/transport/handshaker.h +0 -165
- data/src/core/lib/transport/handshaker_factory.h +0 -73
- data/src/core/lib/transport/handshaker_registry.cc +0 -61
- data/src/core/lib/transport/handshaker_registry.h +0 -69
- data/src/core/lib/transport/http2_errors.h +0 -41
- data/src/core/lib/transport/http_connect_handshaker.cc +0 -400
- data/src/core/lib/transport/http_connect_handshaker.h +0 -42
- data/src/core/lib/transport/message.cc +0 -45
- data/src/core/lib/transport/message.h +0 -61
- data/src/core/lib/transport/metadata.cc +0 -37
- data/src/core/lib/transport/metadata.h +0 -78
- data/src/core/lib/transport/metadata_batch.cc +0 -376
- data/src/core/lib/transport/metadata_batch.h +0 -1518
- data/src/core/lib/transport/metadata_compression_traits.h +0 -67
- data/src/core/lib/transport/metadata_info.cc +0 -55
- data/src/core/lib/transport/metadata_info.h +0 -85
- data/src/core/lib/transport/parsed_metadata.cc +0 -35
- data/src/core/lib/transport/parsed_metadata.h +0 -432
- data/src/core/lib/transport/simple_slice_based_metadata.h +0 -54
- data/src/core/lib/transport/tcp_connect_handshaker.cc +0 -244
- data/src/core/lib/transport/tcp_connect_handshaker.h +0 -39
- data/src/core/lib/uri/uri_parser.cc +0 -372
- data/src/core/lib/uri/uri_parser.h +0 -101
- data/src/core/resolver/binder/binder_resolver.cc +0 -154
- data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
- data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
- data/third_party/boringssl-with-bazel/err_data.c +0 -1512
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +0 -284
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +0 -95
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +0 -89
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +0 -84
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +0 -151
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +0 -85
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +0 -465
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +0 -279
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +0 -235
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +0 -74
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +0 -457
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +0 -245
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +0 -259
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +0 -214
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +0 -183
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +0 -397
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +0 -103
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +0 -98
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +0 -105
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +0 -94
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +0 -241
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +0 -973
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +0 -708
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +0 -212
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +0 -317
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +0 -126
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +0 -268
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +0 -475
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +0 -731
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +0 -309
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +0 -544
- data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +0 -92
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +0 -235
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +0 -319
- data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c +0 -192
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +0 -480
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +0 -102
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +0 -189
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +0 -133
- data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +0 -169
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +0 -57
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +0 -465
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +0 -158
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +0 -53
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +0 -266
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +0 -718
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +0 -926
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +0 -155
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +0 -224
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +0 -127
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +0 -152
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +0 -284
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +0 -841
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +0 -341
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +0 -246
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +0 -86
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +0 -463
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +0 -89
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +0 -598
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +0 -237
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +0 -514
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +0 -647
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +0 -75
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -55
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -62
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +0 -61
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +0 -93
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +0 -41
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -54
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -148
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +0 -292
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +0 -242
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +0 -2157
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +0 -18
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +0 -523
- data/third_party/boringssl-with-bazel/src/crypto/des/des.c +0 -871
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +0 -165
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +0 -480
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +0 -265
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +0 -981
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +0 -420
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +0 -572
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +0 -96
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +0 -508
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +0 -78
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +0 -124
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +0 -265
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +0 -91
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +0 -882
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +0 -509
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +0 -547
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +0 -483
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +0 -308
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +0 -275
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +0 -302
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +0 -103
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +0 -224
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +0 -232
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +0 -646
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +0 -211
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +0 -109
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +0 -236
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +0 -146
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +0 -381
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +0 -209
- data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +0 -156
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +0 -237
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -106
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +0 -1281
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +0 -242
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +0 -124
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +0 -275
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c +0 -310
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c +0 -541
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +0 -428
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +0 -267
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c +0 -201
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +0 -234
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +0 -909
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +0 -1276
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +0 -397
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +0 -328
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +0 -624
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.c +0 -146
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +0 -532
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +0 -222
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +0 -744
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +0 -1070
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +0 -355
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +0 -137
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +0 -363
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +0 -499
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +0 -287
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +0 -717
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +0 -1463
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.c +0 -446
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.c +0 -322
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +0 -245
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +0 -489
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +0 -288
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +0 -304
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.c +0 -267
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +0 -1043
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +0 -553
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +0 -491
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +0 -104
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +0 -359
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +0 -1163
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +0 -637
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +0 -749
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +0 -169
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +0 -336
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +0 -269
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +0 -255
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +0 -264
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +0 -130
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +0 -372
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +0 -32
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c +0 -112
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +0 -256
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +0 -240
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h +0 -37
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +0 -284
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +0 -164
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +0 -200
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +0 -196
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +0 -743
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +0 -302
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +0 -428
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +0 -90
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +0 -220
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +0 -197
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +0 -67
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +0 -64
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +0 -493
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +0 -328
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +0 -241
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +0 -423
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +0 -1038
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +0 -1337
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +0 -119
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +0 -1064
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +0 -331
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +0 -439
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +0 -359
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +0 -537
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +0 -211
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +0 -799
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +0 -2234
- data/third_party/boringssl-with-bazel/src/crypto/keccak/internal.h +0 -70
- data/third_party/boringssl-with-bazel/src/crypto/keccak/keccak.c +0 -279
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +0 -844
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +0 -350
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +0 -600
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +0 -564
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +0 -243
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +0 -294
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +0 -789
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +0 -248
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +0 -182
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +0 -64
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +0 -64
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +0 -193
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +0 -523
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +0 -316
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +0 -527
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +0 -1352
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +0 -314
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +0 -308
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +0 -847
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +0 -261
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +0 -57
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +0 -44
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +0 -52
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +0 -34
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +0 -158
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +0 -74
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +0 -38
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +0 -95
- data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c +0 -98
- data/third_party/boringssl-with-bazel/src/crypto/refcount.c +0 -59
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +0 -77
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +0 -324
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +0 -570
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c +0 -22
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.c +0 -101
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.h +0 -50
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.c +0 -133
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.h +0 -54
- data/third_party/boringssl-with-bazel/src/crypto/spx/internal.h +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.c +0 -150
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.h +0 -61
- data/third_party/boringssl-with-bazel/src/crypto/spx/params.h +0 -71
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +0 -139
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.c +0 -53
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.h +0 -44
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.c +0 -136
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.h +0 -70
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.c +0 -135
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.h +0 -45
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +0 -534
- data/third_party/boringssl-with-bazel/src/crypto/thread.c +0 -110
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -51
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +0 -150
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +0 -236
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +0 -1668
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +0 -687
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +0 -1267
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +0 -94
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +0 -136
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +0 -116
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +0 -178
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +0 -585
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +0 -407
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -269
- data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +0 -227
- data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +0 -786
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +0 -397
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +0 -145
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +0 -245
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +0 -329
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +0 -121
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.c +0 -221
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.c +0 -73
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.c +0 -634
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.c +0 -135
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.c +0 -141
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.c +0 -416
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +0 -477
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +0 -598
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.c +0 -112
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.c +0 -154
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.c +0 -270
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.c +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +0 -211
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.c +0 -121
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +0 -342
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.c +0 -555
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.c +0 -81
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.c +0 -142
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.c +0 -150
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.c +0 -224
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +0 -624
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.c +0 -170
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +0 -1357
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -89
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +0 -227
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +0 -280
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +0 -108
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +0 -86
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +0 -181
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +0 -609
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +0 -206
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +0 -299
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +0 -240
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +0 -164
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +0 -189
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +0 -291
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +0 -1655
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +0 -440
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +0 -277
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +0 -407
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +0 -109
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +0 -133
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +0 -149
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +0 -356
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +0 -97
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +0 -384
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +0 -78
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +0 -527
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -210
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +0 -116
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +0 -93
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +0 -70
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +0 -549
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +0 -209
- data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +0 -136
- data/third_party/boringssl-with-bazel/src/include/openssl/pki/certificate.h +0 -83
- data/third_party/boringssl-with-bazel/src/include/openssl/pki/signature_verify_cache.h +0 -41
@@ -3,10 +3,11 @@
|
|
3
3
|
* validate/validate.proto
|
4
4
|
*
|
5
5
|
* Do not edit -- your changes will be discarded when the file is
|
6
|
-
* regenerated.
|
6
|
+
* regenerated.
|
7
|
+
* NO CHECKED-IN PROTOBUF GENCODE */
|
7
8
|
|
8
|
-
#ifndef
|
9
|
-
#define
|
9
|
+
#ifndef VALIDATE_VALIDATE_PROTO_UPB_H__UPB_H_
|
10
|
+
#define VALIDATE_VALIDATE_PROTO_UPB_H__UPB_H_
|
10
11
|
|
11
12
|
#include "upb/generated_code_support.h"
|
12
13
|
|
@@ -133,6 +134,7 @@ UPB_INLINE const validate_FloatRules* validate_FieldRules_float(const validate_F
|
|
133
134
|
const validate_FloatRules* default_val = NULL;
|
134
135
|
const validate_FloatRules* ret;
|
135
136
|
const upb_MiniTableField field = {1, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
137
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FloatRules_msg_init);
|
136
138
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
137
139
|
&default_val, &ret);
|
138
140
|
return ret;
|
@@ -149,6 +151,7 @@ UPB_INLINE const validate_DoubleRules* validate_FieldRules_double(const validate
|
|
149
151
|
const validate_DoubleRules* default_val = NULL;
|
150
152
|
const validate_DoubleRules* ret;
|
151
153
|
const upb_MiniTableField field = {2, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
154
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__DoubleRules_msg_init);
|
152
155
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
153
156
|
&default_val, &ret);
|
154
157
|
return ret;
|
@@ -165,6 +168,7 @@ UPB_INLINE const validate_Int32Rules* validate_FieldRules_int32(const validate_F
|
|
165
168
|
const validate_Int32Rules* default_val = NULL;
|
166
169
|
const validate_Int32Rules* ret;
|
167
170
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
171
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Int32Rules_msg_init);
|
168
172
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
169
173
|
&default_val, &ret);
|
170
174
|
return ret;
|
@@ -181,6 +185,7 @@ UPB_INLINE const validate_Int64Rules* validate_FieldRules_int64(const validate_F
|
|
181
185
|
const validate_Int64Rules* default_val = NULL;
|
182
186
|
const validate_Int64Rules* ret;
|
183
187
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
188
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Int64Rules_msg_init);
|
184
189
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
185
190
|
&default_val, &ret);
|
186
191
|
return ret;
|
@@ -197,6 +202,7 @@ UPB_INLINE const validate_UInt32Rules* validate_FieldRules_uint32(const validate
|
|
197
202
|
const validate_UInt32Rules* default_val = NULL;
|
198
203
|
const validate_UInt32Rules* ret;
|
199
204
|
const upb_MiniTableField field = {5, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
205
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__UInt32Rules_msg_init);
|
200
206
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
201
207
|
&default_val, &ret);
|
202
208
|
return ret;
|
@@ -213,6 +219,7 @@ UPB_INLINE const validate_UInt64Rules* validate_FieldRules_uint64(const validate
|
|
213
219
|
const validate_UInt64Rules* default_val = NULL;
|
214
220
|
const validate_UInt64Rules* ret;
|
215
221
|
const upb_MiniTableField field = {6, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
222
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__UInt64Rules_msg_init);
|
216
223
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
217
224
|
&default_val, &ret);
|
218
225
|
return ret;
|
@@ -229,6 +236,7 @@ UPB_INLINE const validate_SInt32Rules* validate_FieldRules_sint32(const validate
|
|
229
236
|
const validate_SInt32Rules* default_val = NULL;
|
230
237
|
const validate_SInt32Rules* ret;
|
231
238
|
const upb_MiniTableField field = {7, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
239
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SInt32Rules_msg_init);
|
232
240
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
233
241
|
&default_val, &ret);
|
234
242
|
return ret;
|
@@ -245,6 +253,7 @@ UPB_INLINE const validate_SInt64Rules* validate_FieldRules_sint64(const validate
|
|
245
253
|
const validate_SInt64Rules* default_val = NULL;
|
246
254
|
const validate_SInt64Rules* ret;
|
247
255
|
const upb_MiniTableField field = {8, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
256
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SInt64Rules_msg_init);
|
248
257
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
249
258
|
&default_val, &ret);
|
250
259
|
return ret;
|
@@ -261,6 +270,7 @@ UPB_INLINE const validate_Fixed32Rules* validate_FieldRules_fixed32(const valida
|
|
261
270
|
const validate_Fixed32Rules* default_val = NULL;
|
262
271
|
const validate_Fixed32Rules* ret;
|
263
272
|
const upb_MiniTableField field = {9, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
273
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Fixed32Rules_msg_init);
|
264
274
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
265
275
|
&default_val, &ret);
|
266
276
|
return ret;
|
@@ -277,6 +287,7 @@ UPB_INLINE const validate_Fixed64Rules* validate_FieldRules_fixed64(const valida
|
|
277
287
|
const validate_Fixed64Rules* default_val = NULL;
|
278
288
|
const validate_Fixed64Rules* ret;
|
279
289
|
const upb_MiniTableField field = {10, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
290
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Fixed64Rules_msg_init);
|
280
291
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
281
292
|
&default_val, &ret);
|
282
293
|
return ret;
|
@@ -293,6 +304,7 @@ UPB_INLINE const validate_SFixed32Rules* validate_FieldRules_sfixed32(const vali
|
|
293
304
|
const validate_SFixed32Rules* default_val = NULL;
|
294
305
|
const validate_SFixed32Rules* ret;
|
295
306
|
const upb_MiniTableField field = {11, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
307
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SFixed32Rules_msg_init);
|
296
308
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
297
309
|
&default_val, &ret);
|
298
310
|
return ret;
|
@@ -309,6 +321,7 @@ UPB_INLINE const validate_SFixed64Rules* validate_FieldRules_sfixed64(const vali
|
|
309
321
|
const validate_SFixed64Rules* default_val = NULL;
|
310
322
|
const validate_SFixed64Rules* ret;
|
311
323
|
const upb_MiniTableField field = {12, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
324
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SFixed64Rules_msg_init);
|
312
325
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
313
326
|
&default_val, &ret);
|
314
327
|
return ret;
|
@@ -325,6 +338,7 @@ UPB_INLINE const validate_BoolRules* validate_FieldRules_bool(const validate_Fie
|
|
325
338
|
const validate_BoolRules* default_val = NULL;
|
326
339
|
const validate_BoolRules* ret;
|
327
340
|
const upb_MiniTableField field = {13, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
341
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__BoolRules_msg_init);
|
328
342
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
329
343
|
&default_val, &ret);
|
330
344
|
return ret;
|
@@ -341,6 +355,7 @@ UPB_INLINE const validate_StringRules* validate_FieldRules_string(const validate
|
|
341
355
|
const validate_StringRules* default_val = NULL;
|
342
356
|
const validate_StringRules* ret;
|
343
357
|
const upb_MiniTableField field = {14, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
358
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__StringRules_msg_init);
|
344
359
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
345
360
|
&default_val, &ret);
|
346
361
|
return ret;
|
@@ -357,6 +372,7 @@ UPB_INLINE const validate_BytesRules* validate_FieldRules_bytes(const validate_F
|
|
357
372
|
const validate_BytesRules* default_val = NULL;
|
358
373
|
const validate_BytesRules* ret;
|
359
374
|
const upb_MiniTableField field = {15, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
375
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__BytesRules_msg_init);
|
360
376
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
361
377
|
&default_val, &ret);
|
362
378
|
return ret;
|
@@ -373,6 +389,7 @@ UPB_INLINE const validate_EnumRules* validate_FieldRules_enum(const validate_Fie
|
|
373
389
|
const validate_EnumRules* default_val = NULL;
|
374
390
|
const validate_EnumRules* ret;
|
375
391
|
const upb_MiniTableField field = {16, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
392
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__EnumRules_msg_init);
|
376
393
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
377
394
|
&default_val, &ret);
|
378
395
|
return ret;
|
@@ -389,6 +406,7 @@ UPB_INLINE const validate_MessageRules* validate_FieldRules_message(const valida
|
|
389
406
|
const validate_MessageRules* default_val = NULL;
|
390
407
|
const validate_MessageRules* ret;
|
391
408
|
const upb_MiniTableField field = {17, UPB_SIZE(12, 16), 64, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
409
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__MessageRules_msg_init);
|
392
410
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
393
411
|
&default_val, &ret);
|
394
412
|
return ret;
|
@@ -405,6 +423,7 @@ UPB_INLINE const validate_RepeatedRules* validate_FieldRules_repeated(const vali
|
|
405
423
|
const validate_RepeatedRules* default_val = NULL;
|
406
424
|
const validate_RepeatedRules* ret;
|
407
425
|
const upb_MiniTableField field = {18, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
426
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__RepeatedRules_msg_init);
|
408
427
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
409
428
|
&default_val, &ret);
|
410
429
|
return ret;
|
@@ -421,6 +440,7 @@ UPB_INLINE const validate_MapRules* validate_FieldRules_map(const validate_Field
|
|
421
440
|
const validate_MapRules* default_val = NULL;
|
422
441
|
const validate_MapRules* ret;
|
423
442
|
const upb_MiniTableField field = {19, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
443
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__MapRules_msg_init);
|
424
444
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
425
445
|
&default_val, &ret);
|
426
446
|
return ret;
|
@@ -437,6 +457,7 @@ UPB_INLINE const validate_AnyRules* validate_FieldRules_any(const validate_Field
|
|
437
457
|
const validate_AnyRules* default_val = NULL;
|
438
458
|
const validate_AnyRules* ret;
|
439
459
|
const upb_MiniTableField field = {20, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
460
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__AnyRules_msg_init);
|
440
461
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
441
462
|
&default_val, &ret);
|
442
463
|
return ret;
|
@@ -453,6 +474,7 @@ UPB_INLINE const validate_DurationRules* validate_FieldRules_duration(const vali
|
|
453
474
|
const validate_DurationRules* default_val = NULL;
|
454
475
|
const validate_DurationRules* ret;
|
455
476
|
const upb_MiniTableField field = {21, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
477
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__DurationRules_msg_init);
|
456
478
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
457
479
|
&default_val, &ret);
|
458
480
|
return ret;
|
@@ -469,6 +491,7 @@ UPB_INLINE const validate_TimestampRules* validate_FieldRules_timestamp(const va
|
|
469
491
|
const validate_TimestampRules* default_val = NULL;
|
470
492
|
const validate_TimestampRules* ret;
|
471
493
|
const upb_MiniTableField field = {22, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
494
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__TimestampRules_msg_init);
|
472
495
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
473
496
|
&default_val, &ret);
|
474
497
|
return ret;
|
@@ -480,7 +503,8 @@ UPB_INLINE bool validate_FieldRules_has_timestamp(const validate_FieldRules* msg
|
|
480
503
|
|
481
504
|
UPB_INLINE void validate_FieldRules_set_float(validate_FieldRules *msg, validate_FloatRules* value) {
|
482
505
|
const upb_MiniTableField field = {1, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
483
|
-
|
506
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FloatRules_msg_init);
|
507
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
484
508
|
}
|
485
509
|
UPB_INLINE struct validate_FloatRules* validate_FieldRules_mutable_float(validate_FieldRules* msg, upb_Arena* arena) {
|
486
510
|
struct validate_FloatRules* sub = (struct validate_FloatRules*)validate_FieldRules_float(msg);
|
@@ -492,7 +516,8 @@ UPB_INLINE struct validate_FloatRules* validate_FieldRules_mutable_float(validat
|
|
492
516
|
}
|
493
517
|
UPB_INLINE void validate_FieldRules_set_double(validate_FieldRules *msg, validate_DoubleRules* value) {
|
494
518
|
const upb_MiniTableField field = {2, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
495
|
-
|
519
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__DoubleRules_msg_init);
|
520
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
496
521
|
}
|
497
522
|
UPB_INLINE struct validate_DoubleRules* validate_FieldRules_mutable_double(validate_FieldRules* msg, upb_Arena* arena) {
|
498
523
|
struct validate_DoubleRules* sub = (struct validate_DoubleRules*)validate_FieldRules_double(msg);
|
@@ -504,7 +529,8 @@ UPB_INLINE struct validate_DoubleRules* validate_FieldRules_mutable_double(valid
|
|
504
529
|
}
|
505
530
|
UPB_INLINE void validate_FieldRules_set_int32(validate_FieldRules *msg, validate_Int32Rules* value) {
|
506
531
|
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
507
|
-
|
532
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Int32Rules_msg_init);
|
533
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
508
534
|
}
|
509
535
|
UPB_INLINE struct validate_Int32Rules* validate_FieldRules_mutable_int32(validate_FieldRules* msg, upb_Arena* arena) {
|
510
536
|
struct validate_Int32Rules* sub = (struct validate_Int32Rules*)validate_FieldRules_int32(msg);
|
@@ -516,7 +542,8 @@ UPB_INLINE struct validate_Int32Rules* validate_FieldRules_mutable_int32(validat
|
|
516
542
|
}
|
517
543
|
UPB_INLINE void validate_FieldRules_set_int64(validate_FieldRules *msg, validate_Int64Rules* value) {
|
518
544
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
519
|
-
|
545
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Int64Rules_msg_init);
|
546
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
520
547
|
}
|
521
548
|
UPB_INLINE struct validate_Int64Rules* validate_FieldRules_mutable_int64(validate_FieldRules* msg, upb_Arena* arena) {
|
522
549
|
struct validate_Int64Rules* sub = (struct validate_Int64Rules*)validate_FieldRules_int64(msg);
|
@@ -528,7 +555,8 @@ UPB_INLINE struct validate_Int64Rules* validate_FieldRules_mutable_int64(validat
|
|
528
555
|
}
|
529
556
|
UPB_INLINE void validate_FieldRules_set_uint32(validate_FieldRules *msg, validate_UInt32Rules* value) {
|
530
557
|
const upb_MiniTableField field = {5, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
531
|
-
|
558
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__UInt32Rules_msg_init);
|
559
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
532
560
|
}
|
533
561
|
UPB_INLINE struct validate_UInt32Rules* validate_FieldRules_mutable_uint32(validate_FieldRules* msg, upb_Arena* arena) {
|
534
562
|
struct validate_UInt32Rules* sub = (struct validate_UInt32Rules*)validate_FieldRules_uint32(msg);
|
@@ -540,7 +568,8 @@ UPB_INLINE struct validate_UInt32Rules* validate_FieldRules_mutable_uint32(valid
|
|
540
568
|
}
|
541
569
|
UPB_INLINE void validate_FieldRules_set_uint64(validate_FieldRules *msg, validate_UInt64Rules* value) {
|
542
570
|
const upb_MiniTableField field = {6, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
543
|
-
|
571
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__UInt64Rules_msg_init);
|
572
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
544
573
|
}
|
545
574
|
UPB_INLINE struct validate_UInt64Rules* validate_FieldRules_mutable_uint64(validate_FieldRules* msg, upb_Arena* arena) {
|
546
575
|
struct validate_UInt64Rules* sub = (struct validate_UInt64Rules*)validate_FieldRules_uint64(msg);
|
@@ -552,7 +581,8 @@ UPB_INLINE struct validate_UInt64Rules* validate_FieldRules_mutable_uint64(valid
|
|
552
581
|
}
|
553
582
|
UPB_INLINE void validate_FieldRules_set_sint32(validate_FieldRules *msg, validate_SInt32Rules* value) {
|
554
583
|
const upb_MiniTableField field = {7, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
555
|
-
|
584
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SInt32Rules_msg_init);
|
585
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
556
586
|
}
|
557
587
|
UPB_INLINE struct validate_SInt32Rules* validate_FieldRules_mutable_sint32(validate_FieldRules* msg, upb_Arena* arena) {
|
558
588
|
struct validate_SInt32Rules* sub = (struct validate_SInt32Rules*)validate_FieldRules_sint32(msg);
|
@@ -564,7 +594,8 @@ UPB_INLINE struct validate_SInt32Rules* validate_FieldRules_mutable_sint32(valid
|
|
564
594
|
}
|
565
595
|
UPB_INLINE void validate_FieldRules_set_sint64(validate_FieldRules *msg, validate_SInt64Rules* value) {
|
566
596
|
const upb_MiniTableField field = {8, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
567
|
-
|
597
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SInt64Rules_msg_init);
|
598
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
568
599
|
}
|
569
600
|
UPB_INLINE struct validate_SInt64Rules* validate_FieldRules_mutable_sint64(validate_FieldRules* msg, upb_Arena* arena) {
|
570
601
|
struct validate_SInt64Rules* sub = (struct validate_SInt64Rules*)validate_FieldRules_sint64(msg);
|
@@ -576,7 +607,8 @@ UPB_INLINE struct validate_SInt64Rules* validate_FieldRules_mutable_sint64(valid
|
|
576
607
|
}
|
577
608
|
UPB_INLINE void validate_FieldRules_set_fixed32(validate_FieldRules *msg, validate_Fixed32Rules* value) {
|
578
609
|
const upb_MiniTableField field = {9, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
579
|
-
|
610
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Fixed32Rules_msg_init);
|
611
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
580
612
|
}
|
581
613
|
UPB_INLINE struct validate_Fixed32Rules* validate_FieldRules_mutable_fixed32(validate_FieldRules* msg, upb_Arena* arena) {
|
582
614
|
struct validate_Fixed32Rules* sub = (struct validate_Fixed32Rules*)validate_FieldRules_fixed32(msg);
|
@@ -588,7 +620,8 @@ UPB_INLINE struct validate_Fixed32Rules* validate_FieldRules_mutable_fixed32(val
|
|
588
620
|
}
|
589
621
|
UPB_INLINE void validate_FieldRules_set_fixed64(validate_FieldRules *msg, validate_Fixed64Rules* value) {
|
590
622
|
const upb_MiniTableField field = {10, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
591
|
-
|
623
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__Fixed64Rules_msg_init);
|
624
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
592
625
|
}
|
593
626
|
UPB_INLINE struct validate_Fixed64Rules* validate_FieldRules_mutable_fixed64(validate_FieldRules* msg, upb_Arena* arena) {
|
594
627
|
struct validate_Fixed64Rules* sub = (struct validate_Fixed64Rules*)validate_FieldRules_fixed64(msg);
|
@@ -600,7 +633,8 @@ UPB_INLINE struct validate_Fixed64Rules* validate_FieldRules_mutable_fixed64(val
|
|
600
633
|
}
|
601
634
|
UPB_INLINE void validate_FieldRules_set_sfixed32(validate_FieldRules *msg, validate_SFixed32Rules* value) {
|
602
635
|
const upb_MiniTableField field = {11, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
603
|
-
|
636
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SFixed32Rules_msg_init);
|
637
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
604
638
|
}
|
605
639
|
UPB_INLINE struct validate_SFixed32Rules* validate_FieldRules_mutable_sfixed32(validate_FieldRules* msg, upb_Arena* arena) {
|
606
640
|
struct validate_SFixed32Rules* sub = (struct validate_SFixed32Rules*)validate_FieldRules_sfixed32(msg);
|
@@ -612,7 +646,8 @@ UPB_INLINE struct validate_SFixed32Rules* validate_FieldRules_mutable_sfixed32(v
|
|
612
646
|
}
|
613
647
|
UPB_INLINE void validate_FieldRules_set_sfixed64(validate_FieldRules *msg, validate_SFixed64Rules* value) {
|
614
648
|
const upb_MiniTableField field = {12, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
615
|
-
|
649
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__SFixed64Rules_msg_init);
|
650
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
616
651
|
}
|
617
652
|
UPB_INLINE struct validate_SFixed64Rules* validate_FieldRules_mutable_sfixed64(validate_FieldRules* msg, upb_Arena* arena) {
|
618
653
|
struct validate_SFixed64Rules* sub = (struct validate_SFixed64Rules*)validate_FieldRules_sfixed64(msg);
|
@@ -624,7 +659,8 @@ UPB_INLINE struct validate_SFixed64Rules* validate_FieldRules_mutable_sfixed64(v
|
|
624
659
|
}
|
625
660
|
UPB_INLINE void validate_FieldRules_set_bool(validate_FieldRules *msg, validate_BoolRules* value) {
|
626
661
|
const upb_MiniTableField field = {13, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
627
|
-
|
662
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__BoolRules_msg_init);
|
663
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
628
664
|
}
|
629
665
|
UPB_INLINE struct validate_BoolRules* validate_FieldRules_mutable_bool(validate_FieldRules* msg, upb_Arena* arena) {
|
630
666
|
struct validate_BoolRules* sub = (struct validate_BoolRules*)validate_FieldRules_bool(msg);
|
@@ -636,7 +672,8 @@ UPB_INLINE struct validate_BoolRules* validate_FieldRules_mutable_bool(validate_
|
|
636
672
|
}
|
637
673
|
UPB_INLINE void validate_FieldRules_set_string(validate_FieldRules *msg, validate_StringRules* value) {
|
638
674
|
const upb_MiniTableField field = {14, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
639
|
-
|
675
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__StringRules_msg_init);
|
676
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
640
677
|
}
|
641
678
|
UPB_INLINE struct validate_StringRules* validate_FieldRules_mutable_string(validate_FieldRules* msg, upb_Arena* arena) {
|
642
679
|
struct validate_StringRules* sub = (struct validate_StringRules*)validate_FieldRules_string(msg);
|
@@ -648,7 +685,8 @@ UPB_INLINE struct validate_StringRules* validate_FieldRules_mutable_string(valid
|
|
648
685
|
}
|
649
686
|
UPB_INLINE void validate_FieldRules_set_bytes(validate_FieldRules *msg, validate_BytesRules* value) {
|
650
687
|
const upb_MiniTableField field = {15, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
651
|
-
|
688
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__BytesRules_msg_init);
|
689
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
652
690
|
}
|
653
691
|
UPB_INLINE struct validate_BytesRules* validate_FieldRules_mutable_bytes(validate_FieldRules* msg, upb_Arena* arena) {
|
654
692
|
struct validate_BytesRules* sub = (struct validate_BytesRules*)validate_FieldRules_bytes(msg);
|
@@ -660,7 +698,8 @@ UPB_INLINE struct validate_BytesRules* validate_FieldRules_mutable_bytes(validat
|
|
660
698
|
}
|
661
699
|
UPB_INLINE void validate_FieldRules_set_enum(validate_FieldRules *msg, validate_EnumRules* value) {
|
662
700
|
const upb_MiniTableField field = {16, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
663
|
-
|
701
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__EnumRules_msg_init);
|
702
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
664
703
|
}
|
665
704
|
UPB_INLINE struct validate_EnumRules* validate_FieldRules_mutable_enum(validate_FieldRules* msg, upb_Arena* arena) {
|
666
705
|
struct validate_EnumRules* sub = (struct validate_EnumRules*)validate_FieldRules_enum(msg);
|
@@ -672,7 +711,8 @@ UPB_INLINE struct validate_EnumRules* validate_FieldRules_mutable_enum(validate_
|
|
672
711
|
}
|
673
712
|
UPB_INLINE void validate_FieldRules_set_message(validate_FieldRules *msg, validate_MessageRules* value) {
|
674
713
|
const upb_MiniTableField field = {17, UPB_SIZE(12, 16), 64, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
675
|
-
|
714
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__MessageRules_msg_init);
|
715
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
676
716
|
}
|
677
717
|
UPB_INLINE struct validate_MessageRules* validate_FieldRules_mutable_message(validate_FieldRules* msg, upb_Arena* arena) {
|
678
718
|
struct validate_MessageRules* sub = (struct validate_MessageRules*)validate_FieldRules_message(msg);
|
@@ -684,7 +724,8 @@ UPB_INLINE struct validate_MessageRules* validate_FieldRules_mutable_message(val
|
|
684
724
|
}
|
685
725
|
UPB_INLINE void validate_FieldRules_set_repeated(validate_FieldRules *msg, validate_RepeatedRules* value) {
|
686
726
|
const upb_MiniTableField field = {18, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
687
|
-
|
727
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__RepeatedRules_msg_init);
|
728
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
688
729
|
}
|
689
730
|
UPB_INLINE struct validate_RepeatedRules* validate_FieldRules_mutable_repeated(validate_FieldRules* msg, upb_Arena* arena) {
|
690
731
|
struct validate_RepeatedRules* sub = (struct validate_RepeatedRules*)validate_FieldRules_repeated(msg);
|
@@ -696,7 +737,8 @@ UPB_INLINE struct validate_RepeatedRules* validate_FieldRules_mutable_repeated(v
|
|
696
737
|
}
|
697
738
|
UPB_INLINE void validate_FieldRules_set_map(validate_FieldRules *msg, validate_MapRules* value) {
|
698
739
|
const upb_MiniTableField field = {19, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
699
|
-
|
740
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__MapRules_msg_init);
|
741
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
700
742
|
}
|
701
743
|
UPB_INLINE struct validate_MapRules* validate_FieldRules_mutable_map(validate_FieldRules* msg, upb_Arena* arena) {
|
702
744
|
struct validate_MapRules* sub = (struct validate_MapRules*)validate_FieldRules_map(msg);
|
@@ -708,7 +750,8 @@ UPB_INLINE struct validate_MapRules* validate_FieldRules_mutable_map(validate_Fi
|
|
708
750
|
}
|
709
751
|
UPB_INLINE void validate_FieldRules_set_any(validate_FieldRules *msg, validate_AnyRules* value) {
|
710
752
|
const upb_MiniTableField field = {20, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
711
|
-
|
753
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__AnyRules_msg_init);
|
754
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
712
755
|
}
|
713
756
|
UPB_INLINE struct validate_AnyRules* validate_FieldRules_mutable_any(validate_FieldRules* msg, upb_Arena* arena) {
|
714
757
|
struct validate_AnyRules* sub = (struct validate_AnyRules*)validate_FieldRules_any(msg);
|
@@ -720,7 +763,8 @@ UPB_INLINE struct validate_AnyRules* validate_FieldRules_mutable_any(validate_Fi
|
|
720
763
|
}
|
721
764
|
UPB_INLINE void validate_FieldRules_set_duration(validate_FieldRules *msg, validate_DurationRules* value) {
|
722
765
|
const upb_MiniTableField field = {21, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
723
|
-
|
766
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__DurationRules_msg_init);
|
767
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
724
768
|
}
|
725
769
|
UPB_INLINE struct validate_DurationRules* validate_FieldRules_mutable_duration(validate_FieldRules* msg, upb_Arena* arena) {
|
726
770
|
struct validate_DurationRules* sub = (struct validate_DurationRules*)validate_FieldRules_duration(msg);
|
@@ -732,7 +776,8 @@ UPB_INLINE struct validate_DurationRules* validate_FieldRules_mutable_duration(v
|
|
732
776
|
}
|
733
777
|
UPB_INLINE void validate_FieldRules_set_timestamp(validate_FieldRules *msg, validate_TimestampRules* value) {
|
734
778
|
const upb_MiniTableField field = {22, UPB_SIZE(20, 24), UPB_SIZE(-17, -13), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
735
|
-
|
779
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__TimestampRules_msg_init);
|
780
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
736
781
|
}
|
737
782
|
UPB_INLINE struct validate_TimestampRules* validate_FieldRules_mutable_timestamp(validate_FieldRules* msg, upb_Arena* arena) {
|
738
783
|
struct validate_TimestampRules* sub = (struct validate_TimestampRules*)validate_FieldRules_timestamp(msg);
|
@@ -860,11 +905,11 @@ UPB_INLINE bool validate_FloatRules_has_gte(const validate_FloatRules* msg) {
|
|
860
905
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
861
906
|
}
|
862
907
|
UPB_INLINE void validate_FloatRules_clear_in(validate_FloatRules* msg) {
|
863
|
-
const upb_MiniTableField field = {6,
|
908
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
864
909
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
865
910
|
}
|
866
911
|
UPB_INLINE float const* validate_FloatRules_in(const validate_FloatRules* msg, size_t* size) {
|
867
|
-
const upb_MiniTableField field = {6,
|
912
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
868
913
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
869
914
|
if (arr) {
|
870
915
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -875,7 +920,7 @@ UPB_INLINE float const* validate_FloatRules_in(const validate_FloatRules* msg, s
|
|
875
920
|
}
|
876
921
|
}
|
877
922
|
UPB_INLINE const upb_Array* _validate_FloatRules_in_upb_array(const validate_FloatRules* msg, size_t* size) {
|
878
|
-
const upb_MiniTableField field = {6,
|
923
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
879
924
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
880
925
|
if (size) {
|
881
926
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -883,7 +928,7 @@ UPB_INLINE const upb_Array* _validate_FloatRules_in_upb_array(const validate_Flo
|
|
883
928
|
return arr;
|
884
929
|
}
|
885
930
|
UPB_INLINE upb_Array* _validate_FloatRules_in_mutable_upb_array(validate_FloatRules* msg, size_t* size, upb_Arena* arena) {
|
886
|
-
const upb_MiniTableField field = {6,
|
931
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
887
932
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
888
933
|
&field, arena);
|
889
934
|
if (size) {
|
@@ -892,11 +937,11 @@ UPB_INLINE upb_Array* _validate_FloatRules_in_mutable_upb_array(validate_FloatRu
|
|
892
937
|
return arr;
|
893
938
|
}
|
894
939
|
UPB_INLINE void validate_FloatRules_clear_not_in(validate_FloatRules* msg) {
|
895
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
940
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
896
941
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
897
942
|
}
|
898
943
|
UPB_INLINE float const* validate_FloatRules_not_in(const validate_FloatRules* msg, size_t* size) {
|
899
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
944
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
900
945
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
901
946
|
if (arr) {
|
902
947
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -907,7 +952,7 @@ UPB_INLINE float const* validate_FloatRules_not_in(const validate_FloatRules* ms
|
|
907
952
|
}
|
908
953
|
}
|
909
954
|
UPB_INLINE const upb_Array* _validate_FloatRules_not_in_upb_array(const validate_FloatRules* msg, size_t* size) {
|
910
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
955
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
911
956
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
912
957
|
if (size) {
|
913
958
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -915,7 +960,7 @@ UPB_INLINE const upb_Array* _validate_FloatRules_not_in_upb_array(const validate
|
|
915
960
|
return arr;
|
916
961
|
}
|
917
962
|
UPB_INLINE upb_Array* _validate_FloatRules_not_in_mutable_upb_array(validate_FloatRules* msg, size_t* size, upb_Arena* arena) {
|
918
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
963
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
919
964
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
920
965
|
&field, arena);
|
921
966
|
if (size) {
|
@@ -924,44 +969,44 @@ UPB_INLINE upb_Array* _validate_FloatRules_not_in_mutable_upb_array(validate_Flo
|
|
924
969
|
return arr;
|
925
970
|
}
|
926
971
|
UPB_INLINE void validate_FloatRules_clear_ignore_empty(validate_FloatRules* msg) {
|
927
|
-
const upb_MiniTableField field = {8,
|
972
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
928
973
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
929
974
|
}
|
930
975
|
UPB_INLINE bool validate_FloatRules_ignore_empty(const validate_FloatRules* msg) {
|
931
976
|
bool default_val = false;
|
932
977
|
bool ret;
|
933
|
-
const upb_MiniTableField field = {8,
|
978
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
934
979
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
935
980
|
&default_val, &ret);
|
936
981
|
return ret;
|
937
982
|
}
|
938
983
|
UPB_INLINE bool validate_FloatRules_has_ignore_empty(const validate_FloatRules* msg) {
|
939
|
-
const upb_MiniTableField field = {8,
|
984
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
940
985
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
941
986
|
}
|
942
987
|
|
943
988
|
UPB_INLINE void validate_FloatRules_set_const(validate_FloatRules *msg, float value) {
|
944
989
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 2, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
945
|
-
|
990
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
946
991
|
}
|
947
992
|
UPB_INLINE void validate_FloatRules_set_lt(validate_FloatRules *msg, float value) {
|
948
993
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 2, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
949
|
-
|
994
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
950
995
|
}
|
951
996
|
UPB_INLINE void validate_FloatRules_set_lte(validate_FloatRules *msg, float value) {
|
952
997
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 2, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
953
|
-
|
998
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
954
999
|
}
|
955
1000
|
UPB_INLINE void validate_FloatRules_set_gt(validate_FloatRules *msg, float value) {
|
956
1001
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 2, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
957
|
-
|
1002
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
958
1003
|
}
|
959
1004
|
UPB_INLINE void validate_FloatRules_set_gte(validate_FloatRules *msg, float value) {
|
960
1005
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 2, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
961
|
-
|
1006
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
962
1007
|
}
|
963
1008
|
UPB_INLINE float* validate_FloatRules_mutable_in(validate_FloatRules* msg, size_t* size) {
|
964
|
-
upb_MiniTableField field = {6,
|
1009
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
965
1010
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
966
1011
|
if (arr) {
|
967
1012
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -972,12 +1017,12 @@ UPB_INLINE float* validate_FloatRules_mutable_in(validate_FloatRules* msg, size_
|
|
972
1017
|
}
|
973
1018
|
}
|
974
1019
|
UPB_INLINE float* validate_FloatRules_resize_in(validate_FloatRules* msg, size_t size, upb_Arena* arena) {
|
975
|
-
upb_MiniTableField field = {6,
|
1020
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
976
1021
|
return (float*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
977
1022
|
&field, size, arena);
|
978
1023
|
}
|
979
1024
|
UPB_INLINE bool validate_FloatRules_add_in(validate_FloatRules* msg, float val, upb_Arena* arena) {
|
980
|
-
upb_MiniTableField field = {6,
|
1025
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
981
1026
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
982
1027
|
UPB_UPCAST(msg), &field, arena);
|
983
1028
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -989,7 +1034,7 @@ UPB_INLINE bool validate_FloatRules_add_in(validate_FloatRules* msg, float val,
|
|
989
1034
|
return true;
|
990
1035
|
}
|
991
1036
|
UPB_INLINE float* validate_FloatRules_mutable_not_in(validate_FloatRules* msg, size_t* size) {
|
992
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
1037
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
993
1038
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
994
1039
|
if (arr) {
|
995
1040
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -1000,12 +1045,12 @@ UPB_INLINE float* validate_FloatRules_mutable_not_in(validate_FloatRules* msg, s
|
|
1000
1045
|
}
|
1001
1046
|
}
|
1002
1047
|
UPB_INLINE float* validate_FloatRules_resize_not_in(validate_FloatRules* msg, size_t size, upb_Arena* arena) {
|
1003
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
1048
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1004
1049
|
return (float*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
1005
1050
|
&field, size, arena);
|
1006
1051
|
}
|
1007
1052
|
UPB_INLINE bool validate_FloatRules_add_not_in(validate_FloatRules* msg, float val, upb_Arena* arena) {
|
1008
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
1053
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 2, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1009
1054
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
1010
1055
|
UPB_UPCAST(msg), &field, arena);
|
1011
1056
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -1017,8 +1062,8 @@ UPB_INLINE bool validate_FloatRules_add_not_in(validate_FloatRules* msg, float v
|
|
1017
1062
|
return true;
|
1018
1063
|
}
|
1019
1064
|
UPB_INLINE void validate_FloatRules_set_ignore_empty(validate_FloatRules *msg, bool value) {
|
1020
|
-
const upb_MiniTableField field = {8,
|
1021
|
-
|
1065
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1066
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1022
1067
|
}
|
1023
1068
|
|
1024
1069
|
/* validate.DoubleRules */
|
@@ -1202,41 +1247,41 @@ UPB_INLINE upb_Array* _validate_DoubleRules_not_in_mutable_upb_array(validate_Do
|
|
1202
1247
|
return arr;
|
1203
1248
|
}
|
1204
1249
|
UPB_INLINE void validate_DoubleRules_clear_ignore_empty(validate_DoubleRules* msg) {
|
1205
|
-
const upb_MiniTableField field = {8,
|
1250
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1206
1251
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1207
1252
|
}
|
1208
1253
|
UPB_INLINE bool validate_DoubleRules_ignore_empty(const validate_DoubleRules* msg) {
|
1209
1254
|
bool default_val = false;
|
1210
1255
|
bool ret;
|
1211
|
-
const upb_MiniTableField field = {8,
|
1256
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1212
1257
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1213
1258
|
&default_val, &ret);
|
1214
1259
|
return ret;
|
1215
1260
|
}
|
1216
1261
|
UPB_INLINE bool validate_DoubleRules_has_ignore_empty(const validate_DoubleRules* msg) {
|
1217
|
-
const upb_MiniTableField field = {8,
|
1262
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1218
1263
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1219
1264
|
}
|
1220
1265
|
|
1221
1266
|
UPB_INLINE void validate_DoubleRules_set_const(validate_DoubleRules *msg, double value) {
|
1222
1267
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1223
|
-
|
1268
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1224
1269
|
}
|
1225
1270
|
UPB_INLINE void validate_DoubleRules_set_lt(validate_DoubleRules *msg, double value) {
|
1226
1271
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1227
|
-
|
1272
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1228
1273
|
}
|
1229
1274
|
UPB_INLINE void validate_DoubleRules_set_lte(validate_DoubleRules *msg, double value) {
|
1230
1275
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1231
|
-
|
1276
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1232
1277
|
}
|
1233
1278
|
UPB_INLINE void validate_DoubleRules_set_gt(validate_DoubleRules *msg, double value) {
|
1234
1279
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1235
|
-
|
1280
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1236
1281
|
}
|
1237
1282
|
UPB_INLINE void validate_DoubleRules_set_gte(validate_DoubleRules *msg, double value) {
|
1238
1283
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1239
|
-
|
1284
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1240
1285
|
}
|
1241
1286
|
UPB_INLINE double* validate_DoubleRules_mutable_in(validate_DoubleRules* msg, size_t* size) {
|
1242
1287
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 1, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -1295,8 +1340,8 @@ UPB_INLINE bool validate_DoubleRules_add_not_in(validate_DoubleRules* msg, doubl
|
|
1295
1340
|
return true;
|
1296
1341
|
}
|
1297
1342
|
UPB_INLINE void validate_DoubleRules_set_ignore_empty(validate_DoubleRules *msg, bool value) {
|
1298
|
-
const upb_MiniTableField field = {8,
|
1299
|
-
|
1343
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1344
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1300
1345
|
}
|
1301
1346
|
|
1302
1347
|
/* validate.Int32Rules */
|
@@ -1416,11 +1461,11 @@ UPB_INLINE bool validate_Int32Rules_has_gte(const validate_Int32Rules* msg) {
|
|
1416
1461
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1417
1462
|
}
|
1418
1463
|
UPB_INLINE void validate_Int32Rules_clear_in(validate_Int32Rules* msg) {
|
1419
|
-
const upb_MiniTableField field = {6,
|
1464
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1420
1465
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1421
1466
|
}
|
1422
1467
|
UPB_INLINE int32_t const* validate_Int32Rules_in(const validate_Int32Rules* msg, size_t* size) {
|
1423
|
-
const upb_MiniTableField field = {6,
|
1468
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1424
1469
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1425
1470
|
if (arr) {
|
1426
1471
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -1431,7 +1476,7 @@ UPB_INLINE int32_t const* validate_Int32Rules_in(const validate_Int32Rules* msg,
|
|
1431
1476
|
}
|
1432
1477
|
}
|
1433
1478
|
UPB_INLINE const upb_Array* _validate_Int32Rules_in_upb_array(const validate_Int32Rules* msg, size_t* size) {
|
1434
|
-
const upb_MiniTableField field = {6,
|
1479
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1435
1480
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1436
1481
|
if (size) {
|
1437
1482
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -1439,7 +1484,7 @@ UPB_INLINE const upb_Array* _validate_Int32Rules_in_upb_array(const validate_Int
|
|
1439
1484
|
return arr;
|
1440
1485
|
}
|
1441
1486
|
UPB_INLINE upb_Array* _validate_Int32Rules_in_mutable_upb_array(validate_Int32Rules* msg, size_t* size, upb_Arena* arena) {
|
1442
|
-
const upb_MiniTableField field = {6,
|
1487
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1443
1488
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
1444
1489
|
&field, arena);
|
1445
1490
|
if (size) {
|
@@ -1448,11 +1493,11 @@ UPB_INLINE upb_Array* _validate_Int32Rules_in_mutable_upb_array(validate_Int32Ru
|
|
1448
1493
|
return arr;
|
1449
1494
|
}
|
1450
1495
|
UPB_INLINE void validate_Int32Rules_clear_not_in(validate_Int32Rules* msg) {
|
1451
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
1496
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1452
1497
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1453
1498
|
}
|
1454
1499
|
UPB_INLINE int32_t const* validate_Int32Rules_not_in(const validate_Int32Rules* msg, size_t* size) {
|
1455
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
1500
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1456
1501
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1457
1502
|
if (arr) {
|
1458
1503
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -1463,7 +1508,7 @@ UPB_INLINE int32_t const* validate_Int32Rules_not_in(const validate_Int32Rules*
|
|
1463
1508
|
}
|
1464
1509
|
}
|
1465
1510
|
UPB_INLINE const upb_Array* _validate_Int32Rules_not_in_upb_array(const validate_Int32Rules* msg, size_t* size) {
|
1466
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
1511
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1467
1512
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1468
1513
|
if (size) {
|
1469
1514
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -1471,7 +1516,7 @@ UPB_INLINE const upb_Array* _validate_Int32Rules_not_in_upb_array(const validate
|
|
1471
1516
|
return arr;
|
1472
1517
|
}
|
1473
1518
|
UPB_INLINE upb_Array* _validate_Int32Rules_not_in_mutable_upb_array(validate_Int32Rules* msg, size_t* size, upb_Arena* arena) {
|
1474
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
1519
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1475
1520
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
1476
1521
|
&field, arena);
|
1477
1522
|
if (size) {
|
@@ -1480,44 +1525,44 @@ UPB_INLINE upb_Array* _validate_Int32Rules_not_in_mutable_upb_array(validate_Int
|
|
1480
1525
|
return arr;
|
1481
1526
|
}
|
1482
1527
|
UPB_INLINE void validate_Int32Rules_clear_ignore_empty(validate_Int32Rules* msg) {
|
1483
|
-
const upb_MiniTableField field = {8,
|
1528
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1484
1529
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1485
1530
|
}
|
1486
1531
|
UPB_INLINE bool validate_Int32Rules_ignore_empty(const validate_Int32Rules* msg) {
|
1487
1532
|
bool default_val = false;
|
1488
1533
|
bool ret;
|
1489
|
-
const upb_MiniTableField field = {8,
|
1534
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1490
1535
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1491
1536
|
&default_val, &ret);
|
1492
1537
|
return ret;
|
1493
1538
|
}
|
1494
1539
|
UPB_INLINE bool validate_Int32Rules_has_ignore_empty(const validate_Int32Rules* msg) {
|
1495
|
-
const upb_MiniTableField field = {8,
|
1540
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1496
1541
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1497
1542
|
}
|
1498
1543
|
|
1499
1544
|
UPB_INLINE void validate_Int32Rules_set_const(validate_Int32Rules *msg, int32_t value) {
|
1500
1545
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1501
|
-
|
1546
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1502
1547
|
}
|
1503
1548
|
UPB_INLINE void validate_Int32Rules_set_lt(validate_Int32Rules *msg, int32_t value) {
|
1504
1549
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1505
|
-
|
1550
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1506
1551
|
}
|
1507
1552
|
UPB_INLINE void validate_Int32Rules_set_lte(validate_Int32Rules *msg, int32_t value) {
|
1508
1553
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1509
|
-
|
1554
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1510
1555
|
}
|
1511
1556
|
UPB_INLINE void validate_Int32Rules_set_gt(validate_Int32Rules *msg, int32_t value) {
|
1512
1557
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1513
|
-
|
1558
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1514
1559
|
}
|
1515
1560
|
UPB_INLINE void validate_Int32Rules_set_gte(validate_Int32Rules *msg, int32_t value) {
|
1516
1561
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
1517
|
-
|
1562
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1518
1563
|
}
|
1519
1564
|
UPB_INLINE int32_t* validate_Int32Rules_mutable_in(validate_Int32Rules* msg, size_t* size) {
|
1520
|
-
upb_MiniTableField field = {6,
|
1565
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1521
1566
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
1522
1567
|
if (arr) {
|
1523
1568
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -1528,12 +1573,12 @@ UPB_INLINE int32_t* validate_Int32Rules_mutable_in(validate_Int32Rules* msg, siz
|
|
1528
1573
|
}
|
1529
1574
|
}
|
1530
1575
|
UPB_INLINE int32_t* validate_Int32Rules_resize_in(validate_Int32Rules* msg, size_t size, upb_Arena* arena) {
|
1531
|
-
upb_MiniTableField field = {6,
|
1576
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1532
1577
|
return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
1533
1578
|
&field, size, arena);
|
1534
1579
|
}
|
1535
1580
|
UPB_INLINE bool validate_Int32Rules_add_in(validate_Int32Rules* msg, int32_t val, upb_Arena* arena) {
|
1536
|
-
upb_MiniTableField field = {6,
|
1581
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1537
1582
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
1538
1583
|
UPB_UPCAST(msg), &field, arena);
|
1539
1584
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -1545,7 +1590,7 @@ UPB_INLINE bool validate_Int32Rules_add_in(validate_Int32Rules* msg, int32_t val
|
|
1545
1590
|
return true;
|
1546
1591
|
}
|
1547
1592
|
UPB_INLINE int32_t* validate_Int32Rules_mutable_not_in(validate_Int32Rules* msg, size_t* size) {
|
1548
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
1593
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1549
1594
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
1550
1595
|
if (arr) {
|
1551
1596
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -1556,12 +1601,12 @@ UPB_INLINE int32_t* validate_Int32Rules_mutable_not_in(validate_Int32Rules* msg,
|
|
1556
1601
|
}
|
1557
1602
|
}
|
1558
1603
|
UPB_INLINE int32_t* validate_Int32Rules_resize_not_in(validate_Int32Rules* msg, size_t size, upb_Arena* arena) {
|
1559
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
1604
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1560
1605
|
return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
1561
1606
|
&field, size, arena);
|
1562
1607
|
}
|
1563
1608
|
UPB_INLINE bool validate_Int32Rules_add_not_in(validate_Int32Rules* msg, int32_t val, upb_Arena* arena) {
|
1564
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
1609
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1565
1610
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
1566
1611
|
UPB_UPCAST(msg), &field, arena);
|
1567
1612
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -1573,8 +1618,8 @@ UPB_INLINE bool validate_Int32Rules_add_not_in(validate_Int32Rules* msg, int32_t
|
|
1573
1618
|
return true;
|
1574
1619
|
}
|
1575
1620
|
UPB_INLINE void validate_Int32Rules_set_ignore_empty(validate_Int32Rules *msg, bool value) {
|
1576
|
-
const upb_MiniTableField field = {8,
|
1577
|
-
|
1621
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1622
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1578
1623
|
}
|
1579
1624
|
|
1580
1625
|
/* validate.Int64Rules */
|
@@ -1758,41 +1803,41 @@ UPB_INLINE upb_Array* _validate_Int64Rules_not_in_mutable_upb_array(validate_Int
|
|
1758
1803
|
return arr;
|
1759
1804
|
}
|
1760
1805
|
UPB_INLINE void validate_Int64Rules_clear_ignore_empty(validate_Int64Rules* msg) {
|
1761
|
-
const upb_MiniTableField field = {8,
|
1806
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1762
1807
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1763
1808
|
}
|
1764
1809
|
UPB_INLINE bool validate_Int64Rules_ignore_empty(const validate_Int64Rules* msg) {
|
1765
1810
|
bool default_val = false;
|
1766
1811
|
bool ret;
|
1767
|
-
const upb_MiniTableField field = {8,
|
1812
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1768
1813
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
1769
1814
|
&default_val, &ret);
|
1770
1815
|
return ret;
|
1771
1816
|
}
|
1772
1817
|
UPB_INLINE bool validate_Int64Rules_has_ignore_empty(const validate_Int64Rules* msg) {
|
1773
|
-
const upb_MiniTableField field = {8,
|
1818
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1774
1819
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1775
1820
|
}
|
1776
1821
|
|
1777
1822
|
UPB_INLINE void validate_Int64Rules_set_const(validate_Int64Rules *msg, int64_t value) {
|
1778
1823
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1779
|
-
|
1824
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1780
1825
|
}
|
1781
1826
|
UPB_INLINE void validate_Int64Rules_set_lt(validate_Int64Rules *msg, int64_t value) {
|
1782
1827
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1783
|
-
|
1828
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1784
1829
|
}
|
1785
1830
|
UPB_INLINE void validate_Int64Rules_set_lte(validate_Int64Rules *msg, int64_t value) {
|
1786
1831
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1787
|
-
|
1832
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1788
1833
|
}
|
1789
1834
|
UPB_INLINE void validate_Int64Rules_set_gt(validate_Int64Rules *msg, int64_t value) {
|
1790
1835
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1791
|
-
|
1836
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1792
1837
|
}
|
1793
1838
|
UPB_INLINE void validate_Int64Rules_set_gte(validate_Int64Rules *msg, int64_t value) {
|
1794
1839
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
1795
|
-
|
1840
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1796
1841
|
}
|
1797
1842
|
UPB_INLINE int64_t* validate_Int64Rules_mutable_in(validate_Int64Rules* msg, size_t* size) {
|
1798
1843
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 3, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -1851,8 +1896,8 @@ UPB_INLINE bool validate_Int64Rules_add_not_in(validate_Int64Rules* msg, int64_t
|
|
1851
1896
|
return true;
|
1852
1897
|
}
|
1853
1898
|
UPB_INLINE void validate_Int64Rules_set_ignore_empty(validate_Int64Rules *msg, bool value) {
|
1854
|
-
const upb_MiniTableField field = {8,
|
1855
|
-
|
1899
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
1900
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
1856
1901
|
}
|
1857
1902
|
|
1858
1903
|
/* validate.UInt32Rules */
|
@@ -1972,11 +2017,11 @@ UPB_INLINE bool validate_UInt32Rules_has_gte(const validate_UInt32Rules* msg) {
|
|
1972
2017
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
1973
2018
|
}
|
1974
2019
|
UPB_INLINE void validate_UInt32Rules_clear_in(validate_UInt32Rules* msg) {
|
1975
|
-
const upb_MiniTableField field = {6,
|
2020
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1976
2021
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
1977
2022
|
}
|
1978
2023
|
UPB_INLINE uint32_t const* validate_UInt32Rules_in(const validate_UInt32Rules* msg, size_t* size) {
|
1979
|
-
const upb_MiniTableField field = {6,
|
2024
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1980
2025
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1981
2026
|
if (arr) {
|
1982
2027
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -1987,7 +2032,7 @@ UPB_INLINE uint32_t const* validate_UInt32Rules_in(const validate_UInt32Rules* m
|
|
1987
2032
|
}
|
1988
2033
|
}
|
1989
2034
|
UPB_INLINE const upb_Array* _validate_UInt32Rules_in_upb_array(const validate_UInt32Rules* msg, size_t* size) {
|
1990
|
-
const upb_MiniTableField field = {6,
|
2035
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1991
2036
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
1992
2037
|
if (size) {
|
1993
2038
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -1995,7 +2040,7 @@ UPB_INLINE const upb_Array* _validate_UInt32Rules_in_upb_array(const validate_UI
|
|
1995
2040
|
return arr;
|
1996
2041
|
}
|
1997
2042
|
UPB_INLINE upb_Array* _validate_UInt32Rules_in_mutable_upb_array(validate_UInt32Rules* msg, size_t* size, upb_Arena* arena) {
|
1998
|
-
const upb_MiniTableField field = {6,
|
2043
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
1999
2044
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
2000
2045
|
&field, arena);
|
2001
2046
|
if (size) {
|
@@ -2004,11 +2049,11 @@ UPB_INLINE upb_Array* _validate_UInt32Rules_in_mutable_upb_array(validate_UInt32
|
|
2004
2049
|
return arr;
|
2005
2050
|
}
|
2006
2051
|
UPB_INLINE void validate_UInt32Rules_clear_not_in(validate_UInt32Rules* msg) {
|
2007
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
2052
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2008
2053
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2009
2054
|
}
|
2010
2055
|
UPB_INLINE uint32_t const* validate_UInt32Rules_not_in(const validate_UInt32Rules* msg, size_t* size) {
|
2011
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
2056
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2012
2057
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2013
2058
|
if (arr) {
|
2014
2059
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -2019,7 +2064,7 @@ UPB_INLINE uint32_t const* validate_UInt32Rules_not_in(const validate_UInt32Rule
|
|
2019
2064
|
}
|
2020
2065
|
}
|
2021
2066
|
UPB_INLINE const upb_Array* _validate_UInt32Rules_not_in_upb_array(const validate_UInt32Rules* msg, size_t* size) {
|
2022
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
2067
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2023
2068
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2024
2069
|
if (size) {
|
2025
2070
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -2027,7 +2072,7 @@ UPB_INLINE const upb_Array* _validate_UInt32Rules_not_in_upb_array(const validat
|
|
2027
2072
|
return arr;
|
2028
2073
|
}
|
2029
2074
|
UPB_INLINE upb_Array* _validate_UInt32Rules_not_in_mutable_upb_array(validate_UInt32Rules* msg, size_t* size, upb_Arena* arena) {
|
2030
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
2075
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2031
2076
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
2032
2077
|
&field, arena);
|
2033
2078
|
if (size) {
|
@@ -2036,44 +2081,44 @@ UPB_INLINE upb_Array* _validate_UInt32Rules_not_in_mutable_upb_array(validate_UI
|
|
2036
2081
|
return arr;
|
2037
2082
|
}
|
2038
2083
|
UPB_INLINE void validate_UInt32Rules_clear_ignore_empty(validate_UInt32Rules* msg) {
|
2039
|
-
const upb_MiniTableField field = {8,
|
2084
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2040
2085
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2041
2086
|
}
|
2042
2087
|
UPB_INLINE bool validate_UInt32Rules_ignore_empty(const validate_UInt32Rules* msg) {
|
2043
2088
|
bool default_val = false;
|
2044
2089
|
bool ret;
|
2045
|
-
const upb_MiniTableField field = {8,
|
2090
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2046
2091
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2047
2092
|
&default_val, &ret);
|
2048
2093
|
return ret;
|
2049
2094
|
}
|
2050
2095
|
UPB_INLINE bool validate_UInt32Rules_has_ignore_empty(const validate_UInt32Rules* msg) {
|
2051
|
-
const upb_MiniTableField field = {8,
|
2096
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2052
2097
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2053
2098
|
}
|
2054
2099
|
|
2055
2100
|
UPB_INLINE void validate_UInt32Rules_set_const(validate_UInt32Rules *msg, uint32_t value) {
|
2056
2101
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2057
|
-
|
2102
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2058
2103
|
}
|
2059
2104
|
UPB_INLINE void validate_UInt32Rules_set_lt(validate_UInt32Rules *msg, uint32_t value) {
|
2060
2105
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2061
|
-
|
2106
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2062
2107
|
}
|
2063
2108
|
UPB_INLINE void validate_UInt32Rules_set_lte(validate_UInt32Rules *msg, uint32_t value) {
|
2064
2109
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2065
|
-
|
2110
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2066
2111
|
}
|
2067
2112
|
UPB_INLINE void validate_UInt32Rules_set_gt(validate_UInt32Rules *msg, uint32_t value) {
|
2068
2113
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2069
|
-
|
2114
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2070
2115
|
}
|
2071
2116
|
UPB_INLINE void validate_UInt32Rules_set_gte(validate_UInt32Rules *msg, uint32_t value) {
|
2072
2117
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2073
|
-
|
2118
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2074
2119
|
}
|
2075
2120
|
UPB_INLINE uint32_t* validate_UInt32Rules_mutable_in(validate_UInt32Rules* msg, size_t* size) {
|
2076
|
-
upb_MiniTableField field = {6,
|
2121
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2077
2122
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
2078
2123
|
if (arr) {
|
2079
2124
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -2084,12 +2129,12 @@ UPB_INLINE uint32_t* validate_UInt32Rules_mutable_in(validate_UInt32Rules* msg,
|
|
2084
2129
|
}
|
2085
2130
|
}
|
2086
2131
|
UPB_INLINE uint32_t* validate_UInt32Rules_resize_in(validate_UInt32Rules* msg, size_t size, upb_Arena* arena) {
|
2087
|
-
upb_MiniTableField field = {6,
|
2132
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2088
2133
|
return (uint32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
2089
2134
|
&field, size, arena);
|
2090
2135
|
}
|
2091
2136
|
UPB_INLINE bool validate_UInt32Rules_add_in(validate_UInt32Rules* msg, uint32_t val, upb_Arena* arena) {
|
2092
|
-
upb_MiniTableField field = {6,
|
2137
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2093
2138
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2094
2139
|
UPB_UPCAST(msg), &field, arena);
|
2095
2140
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -2101,7 +2146,7 @@ UPB_INLINE bool validate_UInt32Rules_add_in(validate_UInt32Rules* msg, uint32_t
|
|
2101
2146
|
return true;
|
2102
2147
|
}
|
2103
2148
|
UPB_INLINE uint32_t* validate_UInt32Rules_mutable_not_in(validate_UInt32Rules* msg, size_t* size) {
|
2104
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
2149
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2105
2150
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
2106
2151
|
if (arr) {
|
2107
2152
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -2112,12 +2157,12 @@ UPB_INLINE uint32_t* validate_UInt32Rules_mutable_not_in(validate_UInt32Rules* m
|
|
2112
2157
|
}
|
2113
2158
|
}
|
2114
2159
|
UPB_INLINE uint32_t* validate_UInt32Rules_resize_not_in(validate_UInt32Rules* msg, size_t size, upb_Arena* arena) {
|
2115
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
2160
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2116
2161
|
return (uint32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
2117
2162
|
&field, size, arena);
|
2118
2163
|
}
|
2119
2164
|
UPB_INLINE bool validate_UInt32Rules_add_not_in(validate_UInt32Rules* msg, uint32_t val, upb_Arena* arena) {
|
2120
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
2165
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2121
2166
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2122
2167
|
UPB_UPCAST(msg), &field, arena);
|
2123
2168
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -2129,8 +2174,8 @@ UPB_INLINE bool validate_UInt32Rules_add_not_in(validate_UInt32Rules* msg, uint3
|
|
2129
2174
|
return true;
|
2130
2175
|
}
|
2131
2176
|
UPB_INLINE void validate_UInt32Rules_set_ignore_empty(validate_UInt32Rules *msg, bool value) {
|
2132
|
-
const upb_MiniTableField field = {8,
|
2133
|
-
|
2177
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2178
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2134
2179
|
}
|
2135
2180
|
|
2136
2181
|
/* validate.UInt64Rules */
|
@@ -2314,41 +2359,41 @@ UPB_INLINE upb_Array* _validate_UInt64Rules_not_in_mutable_upb_array(validate_UI
|
|
2314
2359
|
return arr;
|
2315
2360
|
}
|
2316
2361
|
UPB_INLINE void validate_UInt64Rules_clear_ignore_empty(validate_UInt64Rules* msg) {
|
2317
|
-
const upb_MiniTableField field = {8,
|
2362
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2318
2363
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2319
2364
|
}
|
2320
2365
|
UPB_INLINE bool validate_UInt64Rules_ignore_empty(const validate_UInt64Rules* msg) {
|
2321
2366
|
bool default_val = false;
|
2322
2367
|
bool ret;
|
2323
|
-
const upb_MiniTableField field = {8,
|
2368
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2324
2369
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2325
2370
|
&default_val, &ret);
|
2326
2371
|
return ret;
|
2327
2372
|
}
|
2328
2373
|
UPB_INLINE bool validate_UInt64Rules_has_ignore_empty(const validate_UInt64Rules* msg) {
|
2329
|
-
const upb_MiniTableField field = {8,
|
2374
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2330
2375
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2331
2376
|
}
|
2332
2377
|
|
2333
2378
|
UPB_INLINE void validate_UInt64Rules_set_const(validate_UInt64Rules *msg, uint64_t value) {
|
2334
2379
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2335
|
-
|
2380
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2336
2381
|
}
|
2337
2382
|
UPB_INLINE void validate_UInt64Rules_set_lt(validate_UInt64Rules *msg, uint64_t value) {
|
2338
2383
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2339
|
-
|
2384
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2340
2385
|
}
|
2341
2386
|
UPB_INLINE void validate_UInt64Rules_set_lte(validate_UInt64Rules *msg, uint64_t value) {
|
2342
2387
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2343
|
-
|
2388
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2344
2389
|
}
|
2345
2390
|
UPB_INLINE void validate_UInt64Rules_set_gt(validate_UInt64Rules *msg, uint64_t value) {
|
2346
2391
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2347
|
-
|
2392
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2348
2393
|
}
|
2349
2394
|
UPB_INLINE void validate_UInt64Rules_set_gte(validate_UInt64Rules *msg, uint64_t value) {
|
2350
2395
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2351
|
-
|
2396
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2352
2397
|
}
|
2353
2398
|
UPB_INLINE uint64_t* validate_UInt64Rules_mutable_in(validate_UInt64Rules* msg, size_t* size) {
|
2354
2399
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 4, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -2407,8 +2452,8 @@ UPB_INLINE bool validate_UInt64Rules_add_not_in(validate_UInt64Rules* msg, uint6
|
|
2407
2452
|
return true;
|
2408
2453
|
}
|
2409
2454
|
UPB_INLINE void validate_UInt64Rules_set_ignore_empty(validate_UInt64Rules *msg, bool value) {
|
2410
|
-
const upb_MiniTableField field = {8,
|
2411
|
-
|
2455
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2456
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2412
2457
|
}
|
2413
2458
|
|
2414
2459
|
/* validate.SInt32Rules */
|
@@ -2528,11 +2573,11 @@ UPB_INLINE bool validate_SInt32Rules_has_gte(const validate_SInt32Rules* msg) {
|
|
2528
2573
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2529
2574
|
}
|
2530
2575
|
UPB_INLINE void validate_SInt32Rules_clear_in(validate_SInt32Rules* msg) {
|
2531
|
-
const upb_MiniTableField field = {6,
|
2576
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2532
2577
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2533
2578
|
}
|
2534
2579
|
UPB_INLINE int32_t const* validate_SInt32Rules_in(const validate_SInt32Rules* msg, size_t* size) {
|
2535
|
-
const upb_MiniTableField field = {6,
|
2580
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2536
2581
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2537
2582
|
if (arr) {
|
2538
2583
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -2543,7 +2588,7 @@ UPB_INLINE int32_t const* validate_SInt32Rules_in(const validate_SInt32Rules* ms
|
|
2543
2588
|
}
|
2544
2589
|
}
|
2545
2590
|
UPB_INLINE const upb_Array* _validate_SInt32Rules_in_upb_array(const validate_SInt32Rules* msg, size_t* size) {
|
2546
|
-
const upb_MiniTableField field = {6,
|
2591
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2547
2592
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2548
2593
|
if (size) {
|
2549
2594
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -2551,7 +2596,7 @@ UPB_INLINE const upb_Array* _validate_SInt32Rules_in_upb_array(const validate_SI
|
|
2551
2596
|
return arr;
|
2552
2597
|
}
|
2553
2598
|
UPB_INLINE upb_Array* _validate_SInt32Rules_in_mutable_upb_array(validate_SInt32Rules* msg, size_t* size, upb_Arena* arena) {
|
2554
|
-
const upb_MiniTableField field = {6,
|
2599
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2555
2600
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
2556
2601
|
&field, arena);
|
2557
2602
|
if (size) {
|
@@ -2560,11 +2605,11 @@ UPB_INLINE upb_Array* _validate_SInt32Rules_in_mutable_upb_array(validate_SInt32
|
|
2560
2605
|
return arr;
|
2561
2606
|
}
|
2562
2607
|
UPB_INLINE void validate_SInt32Rules_clear_not_in(validate_SInt32Rules* msg) {
|
2563
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
2608
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2564
2609
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2565
2610
|
}
|
2566
2611
|
UPB_INLINE int32_t const* validate_SInt32Rules_not_in(const validate_SInt32Rules* msg, size_t* size) {
|
2567
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
2612
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2568
2613
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2569
2614
|
if (arr) {
|
2570
2615
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -2575,7 +2620,7 @@ UPB_INLINE int32_t const* validate_SInt32Rules_not_in(const validate_SInt32Rules
|
|
2575
2620
|
}
|
2576
2621
|
}
|
2577
2622
|
UPB_INLINE const upb_Array* _validate_SInt32Rules_not_in_upb_array(const validate_SInt32Rules* msg, size_t* size) {
|
2578
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
2623
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2579
2624
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
2580
2625
|
if (size) {
|
2581
2626
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -2583,7 +2628,7 @@ UPB_INLINE const upb_Array* _validate_SInt32Rules_not_in_upb_array(const validat
|
|
2583
2628
|
return arr;
|
2584
2629
|
}
|
2585
2630
|
UPB_INLINE upb_Array* _validate_SInt32Rules_not_in_mutable_upb_array(validate_SInt32Rules* msg, size_t* size, upb_Arena* arena) {
|
2586
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
2631
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2587
2632
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
2588
2633
|
&field, arena);
|
2589
2634
|
if (size) {
|
@@ -2592,44 +2637,44 @@ UPB_INLINE upb_Array* _validate_SInt32Rules_not_in_mutable_upb_array(validate_SI
|
|
2592
2637
|
return arr;
|
2593
2638
|
}
|
2594
2639
|
UPB_INLINE void validate_SInt32Rules_clear_ignore_empty(validate_SInt32Rules* msg) {
|
2595
|
-
const upb_MiniTableField field = {8,
|
2640
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2596
2641
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2597
2642
|
}
|
2598
2643
|
UPB_INLINE bool validate_SInt32Rules_ignore_empty(const validate_SInt32Rules* msg) {
|
2599
2644
|
bool default_val = false;
|
2600
2645
|
bool ret;
|
2601
|
-
const upb_MiniTableField field = {8,
|
2646
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2602
2647
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2603
2648
|
&default_val, &ret);
|
2604
2649
|
return ret;
|
2605
2650
|
}
|
2606
2651
|
UPB_INLINE bool validate_SInt32Rules_has_ignore_empty(const validate_SInt32Rules* msg) {
|
2607
|
-
const upb_MiniTableField field = {8,
|
2652
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2608
2653
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2609
2654
|
}
|
2610
2655
|
|
2611
2656
|
UPB_INLINE void validate_SInt32Rules_set_const(validate_SInt32Rules *msg, int32_t value) {
|
2612
2657
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 17, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2613
|
-
|
2658
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2614
2659
|
}
|
2615
2660
|
UPB_INLINE void validate_SInt32Rules_set_lt(validate_SInt32Rules *msg, int32_t value) {
|
2616
2661
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 17, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2617
|
-
|
2662
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2618
2663
|
}
|
2619
2664
|
UPB_INLINE void validate_SInt32Rules_set_lte(validate_SInt32Rules *msg, int32_t value) {
|
2620
2665
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 17, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2621
|
-
|
2666
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2622
2667
|
}
|
2623
2668
|
UPB_INLINE void validate_SInt32Rules_set_gt(validate_SInt32Rules *msg, int32_t value) {
|
2624
2669
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 17, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2625
|
-
|
2670
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2626
2671
|
}
|
2627
2672
|
UPB_INLINE void validate_SInt32Rules_set_gte(validate_SInt32Rules *msg, int32_t value) {
|
2628
2673
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 17, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
2629
|
-
|
2674
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2630
2675
|
}
|
2631
2676
|
UPB_INLINE int32_t* validate_SInt32Rules_mutable_in(validate_SInt32Rules* msg, size_t* size) {
|
2632
|
-
upb_MiniTableField field = {6,
|
2677
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2633
2678
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
2634
2679
|
if (arr) {
|
2635
2680
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -2640,12 +2685,12 @@ UPB_INLINE int32_t* validate_SInt32Rules_mutable_in(validate_SInt32Rules* msg, s
|
|
2640
2685
|
}
|
2641
2686
|
}
|
2642
2687
|
UPB_INLINE int32_t* validate_SInt32Rules_resize_in(validate_SInt32Rules* msg, size_t size, upb_Arena* arena) {
|
2643
|
-
upb_MiniTableField field = {6,
|
2688
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2644
2689
|
return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
2645
2690
|
&field, size, arena);
|
2646
2691
|
}
|
2647
2692
|
UPB_INLINE bool validate_SInt32Rules_add_in(validate_SInt32Rules* msg, int32_t val, upb_Arena* arena) {
|
2648
|
-
upb_MiniTableField field = {6,
|
2693
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2649
2694
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2650
2695
|
UPB_UPCAST(msg), &field, arena);
|
2651
2696
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -2657,7 +2702,7 @@ UPB_INLINE bool validate_SInt32Rules_add_in(validate_SInt32Rules* msg, int32_t v
|
|
2657
2702
|
return true;
|
2658
2703
|
}
|
2659
2704
|
UPB_INLINE int32_t* validate_SInt32Rules_mutable_not_in(validate_SInt32Rules* msg, size_t* size) {
|
2660
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
2705
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2661
2706
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
2662
2707
|
if (arr) {
|
2663
2708
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -2668,12 +2713,12 @@ UPB_INLINE int32_t* validate_SInt32Rules_mutable_not_in(validate_SInt32Rules* ms
|
|
2668
2713
|
}
|
2669
2714
|
}
|
2670
2715
|
UPB_INLINE int32_t* validate_SInt32Rules_resize_not_in(validate_SInt32Rules* msg, size_t size, upb_Arena* arena) {
|
2671
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
2716
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2672
2717
|
return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
2673
2718
|
&field, size, arena);
|
2674
2719
|
}
|
2675
2720
|
UPB_INLINE bool validate_SInt32Rules_add_not_in(validate_SInt32Rules* msg, int32_t val, upb_Arena* arena) {
|
2676
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
2721
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 17, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
2677
2722
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
2678
2723
|
UPB_UPCAST(msg), &field, arena);
|
2679
2724
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -2685,8 +2730,8 @@ UPB_INLINE bool validate_SInt32Rules_add_not_in(validate_SInt32Rules* msg, int32
|
|
2685
2730
|
return true;
|
2686
2731
|
}
|
2687
2732
|
UPB_INLINE void validate_SInt32Rules_set_ignore_empty(validate_SInt32Rules *msg, bool value) {
|
2688
|
-
const upb_MiniTableField field = {8,
|
2689
|
-
|
2733
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2734
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2690
2735
|
}
|
2691
2736
|
|
2692
2737
|
/* validate.SInt64Rules */
|
@@ -2870,41 +2915,41 @@ UPB_INLINE upb_Array* _validate_SInt64Rules_not_in_mutable_upb_array(validate_SI
|
|
2870
2915
|
return arr;
|
2871
2916
|
}
|
2872
2917
|
UPB_INLINE void validate_SInt64Rules_clear_ignore_empty(validate_SInt64Rules* msg) {
|
2873
|
-
const upb_MiniTableField field = {8,
|
2918
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2874
2919
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
2875
2920
|
}
|
2876
2921
|
UPB_INLINE bool validate_SInt64Rules_ignore_empty(const validate_SInt64Rules* msg) {
|
2877
2922
|
bool default_val = false;
|
2878
2923
|
bool ret;
|
2879
|
-
const upb_MiniTableField field = {8,
|
2924
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2880
2925
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
2881
2926
|
&default_val, &ret);
|
2882
2927
|
return ret;
|
2883
2928
|
}
|
2884
2929
|
UPB_INLINE bool validate_SInt64Rules_has_ignore_empty(const validate_SInt64Rules* msg) {
|
2885
|
-
const upb_MiniTableField field = {8,
|
2930
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
2886
2931
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
2887
2932
|
}
|
2888
2933
|
|
2889
2934
|
UPB_INLINE void validate_SInt64Rules_set_const(validate_SInt64Rules *msg, int64_t value) {
|
2890
2935
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 18, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2891
|
-
|
2936
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2892
2937
|
}
|
2893
2938
|
UPB_INLINE void validate_SInt64Rules_set_lt(validate_SInt64Rules *msg, int64_t value) {
|
2894
2939
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 18, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2895
|
-
|
2940
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2896
2941
|
}
|
2897
2942
|
UPB_INLINE void validate_SInt64Rules_set_lte(validate_SInt64Rules *msg, int64_t value) {
|
2898
2943
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 18, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2899
|
-
|
2944
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2900
2945
|
}
|
2901
2946
|
UPB_INLINE void validate_SInt64Rules_set_gt(validate_SInt64Rules *msg, int64_t value) {
|
2902
2947
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 18, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2903
|
-
|
2948
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2904
2949
|
}
|
2905
2950
|
UPB_INLINE void validate_SInt64Rules_set_gte(validate_SInt64Rules *msg, int64_t value) {
|
2906
2951
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 18, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
2907
|
-
|
2952
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2908
2953
|
}
|
2909
2954
|
UPB_INLINE int64_t* validate_SInt64Rules_mutable_in(validate_SInt64Rules* msg, size_t* size) {
|
2910
2955
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 18, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -2963,8 +3008,8 @@ UPB_INLINE bool validate_SInt64Rules_add_not_in(validate_SInt64Rules* msg, int64
|
|
2963
3008
|
return true;
|
2964
3009
|
}
|
2965
3010
|
UPB_INLINE void validate_SInt64Rules_set_ignore_empty(validate_SInt64Rules *msg, bool value) {
|
2966
|
-
const upb_MiniTableField field = {8,
|
2967
|
-
|
3011
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3012
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
2968
3013
|
}
|
2969
3014
|
|
2970
3015
|
/* validate.Fixed32Rules */
|
@@ -3084,11 +3129,11 @@ UPB_INLINE bool validate_Fixed32Rules_has_gte(const validate_Fixed32Rules* msg)
|
|
3084
3129
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
3085
3130
|
}
|
3086
3131
|
UPB_INLINE void validate_Fixed32Rules_clear_in(validate_Fixed32Rules* msg) {
|
3087
|
-
const upb_MiniTableField field = {6,
|
3132
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3088
3133
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
3089
3134
|
}
|
3090
3135
|
UPB_INLINE uint32_t const* validate_Fixed32Rules_in(const validate_Fixed32Rules* msg, size_t* size) {
|
3091
|
-
const upb_MiniTableField field = {6,
|
3136
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3092
3137
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
3093
3138
|
if (arr) {
|
3094
3139
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -3099,7 +3144,7 @@ UPB_INLINE uint32_t const* validate_Fixed32Rules_in(const validate_Fixed32Rules*
|
|
3099
3144
|
}
|
3100
3145
|
}
|
3101
3146
|
UPB_INLINE const upb_Array* _validate_Fixed32Rules_in_upb_array(const validate_Fixed32Rules* msg, size_t* size) {
|
3102
|
-
const upb_MiniTableField field = {6,
|
3147
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3103
3148
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
3104
3149
|
if (size) {
|
3105
3150
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -3107,7 +3152,7 @@ UPB_INLINE const upb_Array* _validate_Fixed32Rules_in_upb_array(const validate_F
|
|
3107
3152
|
return arr;
|
3108
3153
|
}
|
3109
3154
|
UPB_INLINE upb_Array* _validate_Fixed32Rules_in_mutable_upb_array(validate_Fixed32Rules* msg, size_t* size, upb_Arena* arena) {
|
3110
|
-
const upb_MiniTableField field = {6,
|
3155
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3111
3156
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
3112
3157
|
&field, arena);
|
3113
3158
|
if (size) {
|
@@ -3116,11 +3161,11 @@ UPB_INLINE upb_Array* _validate_Fixed32Rules_in_mutable_upb_array(validate_Fixed
|
|
3116
3161
|
return arr;
|
3117
3162
|
}
|
3118
3163
|
UPB_INLINE void validate_Fixed32Rules_clear_not_in(validate_Fixed32Rules* msg) {
|
3119
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
3164
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3120
3165
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
3121
3166
|
}
|
3122
3167
|
UPB_INLINE uint32_t const* validate_Fixed32Rules_not_in(const validate_Fixed32Rules* msg, size_t* size) {
|
3123
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
3168
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3124
3169
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
3125
3170
|
if (arr) {
|
3126
3171
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -3131,7 +3176,7 @@ UPB_INLINE uint32_t const* validate_Fixed32Rules_not_in(const validate_Fixed32Ru
|
|
3131
3176
|
}
|
3132
3177
|
}
|
3133
3178
|
UPB_INLINE const upb_Array* _validate_Fixed32Rules_not_in_upb_array(const validate_Fixed32Rules* msg, size_t* size) {
|
3134
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
3179
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3135
3180
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
3136
3181
|
if (size) {
|
3137
3182
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -3139,7 +3184,7 @@ UPB_INLINE const upb_Array* _validate_Fixed32Rules_not_in_upb_array(const valida
|
|
3139
3184
|
return arr;
|
3140
3185
|
}
|
3141
3186
|
UPB_INLINE upb_Array* _validate_Fixed32Rules_not_in_mutable_upb_array(validate_Fixed32Rules* msg, size_t* size, upb_Arena* arena) {
|
3142
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
3187
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3143
3188
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
3144
3189
|
&field, arena);
|
3145
3190
|
if (size) {
|
@@ -3148,44 +3193,44 @@ UPB_INLINE upb_Array* _validate_Fixed32Rules_not_in_mutable_upb_array(validate_F
|
|
3148
3193
|
return arr;
|
3149
3194
|
}
|
3150
3195
|
UPB_INLINE void validate_Fixed32Rules_clear_ignore_empty(validate_Fixed32Rules* msg) {
|
3151
|
-
const upb_MiniTableField field = {8,
|
3196
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3152
3197
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
3153
3198
|
}
|
3154
3199
|
UPB_INLINE bool validate_Fixed32Rules_ignore_empty(const validate_Fixed32Rules* msg) {
|
3155
3200
|
bool default_val = false;
|
3156
3201
|
bool ret;
|
3157
|
-
const upb_MiniTableField field = {8,
|
3202
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3158
3203
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
3159
3204
|
&default_val, &ret);
|
3160
3205
|
return ret;
|
3161
3206
|
}
|
3162
3207
|
UPB_INLINE bool validate_Fixed32Rules_has_ignore_empty(const validate_Fixed32Rules* msg) {
|
3163
|
-
const upb_MiniTableField field = {8,
|
3208
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3164
3209
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
3165
3210
|
}
|
3166
3211
|
|
3167
3212
|
UPB_INLINE void validate_Fixed32Rules_set_const(validate_Fixed32Rules *msg, uint32_t value) {
|
3168
3213
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 7, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3169
|
-
|
3214
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3170
3215
|
}
|
3171
3216
|
UPB_INLINE void validate_Fixed32Rules_set_lt(validate_Fixed32Rules *msg, uint32_t value) {
|
3172
3217
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 7, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3173
|
-
|
3218
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3174
3219
|
}
|
3175
3220
|
UPB_INLINE void validate_Fixed32Rules_set_lte(validate_Fixed32Rules *msg, uint32_t value) {
|
3176
3221
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 7, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3177
|
-
|
3222
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3178
3223
|
}
|
3179
3224
|
UPB_INLINE void validate_Fixed32Rules_set_gt(validate_Fixed32Rules *msg, uint32_t value) {
|
3180
3225
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 7, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3181
|
-
|
3226
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3182
3227
|
}
|
3183
3228
|
UPB_INLINE void validate_Fixed32Rules_set_gte(validate_Fixed32Rules *msg, uint32_t value) {
|
3184
3229
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 7, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3185
|
-
|
3230
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3186
3231
|
}
|
3187
3232
|
UPB_INLINE uint32_t* validate_Fixed32Rules_mutable_in(validate_Fixed32Rules* msg, size_t* size) {
|
3188
|
-
upb_MiniTableField field = {6,
|
3233
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3189
3234
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
3190
3235
|
if (arr) {
|
3191
3236
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -3196,12 +3241,12 @@ UPB_INLINE uint32_t* validate_Fixed32Rules_mutable_in(validate_Fixed32Rules* msg
|
|
3196
3241
|
}
|
3197
3242
|
}
|
3198
3243
|
UPB_INLINE uint32_t* validate_Fixed32Rules_resize_in(validate_Fixed32Rules* msg, size_t size, upb_Arena* arena) {
|
3199
|
-
upb_MiniTableField field = {6,
|
3244
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3200
3245
|
return (uint32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
3201
3246
|
&field, size, arena);
|
3202
3247
|
}
|
3203
3248
|
UPB_INLINE bool validate_Fixed32Rules_add_in(validate_Fixed32Rules* msg, uint32_t val, upb_Arena* arena) {
|
3204
|
-
upb_MiniTableField field = {6,
|
3249
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3205
3250
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
3206
3251
|
UPB_UPCAST(msg), &field, arena);
|
3207
3252
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -3213,7 +3258,7 @@ UPB_INLINE bool validate_Fixed32Rules_add_in(validate_Fixed32Rules* msg, uint32_
|
|
3213
3258
|
return true;
|
3214
3259
|
}
|
3215
3260
|
UPB_INLINE uint32_t* validate_Fixed32Rules_mutable_not_in(validate_Fixed32Rules* msg, size_t* size) {
|
3216
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
3261
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3217
3262
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
3218
3263
|
if (arr) {
|
3219
3264
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -3224,12 +3269,12 @@ UPB_INLINE uint32_t* validate_Fixed32Rules_mutable_not_in(validate_Fixed32Rules*
|
|
3224
3269
|
}
|
3225
3270
|
}
|
3226
3271
|
UPB_INLINE uint32_t* validate_Fixed32Rules_resize_not_in(validate_Fixed32Rules* msg, size_t size, upb_Arena* arena) {
|
3227
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
3272
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3228
3273
|
return (uint32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
3229
3274
|
&field, size, arena);
|
3230
3275
|
}
|
3231
3276
|
UPB_INLINE bool validate_Fixed32Rules_add_not_in(validate_Fixed32Rules* msg, uint32_t val, upb_Arena* arena) {
|
3232
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
3277
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 7, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3233
3278
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
3234
3279
|
UPB_UPCAST(msg), &field, arena);
|
3235
3280
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -3241,8 +3286,8 @@ UPB_INLINE bool validate_Fixed32Rules_add_not_in(validate_Fixed32Rules* msg, uin
|
|
3241
3286
|
return true;
|
3242
3287
|
}
|
3243
3288
|
UPB_INLINE void validate_Fixed32Rules_set_ignore_empty(validate_Fixed32Rules *msg, bool value) {
|
3244
|
-
const upb_MiniTableField field = {8,
|
3245
|
-
|
3289
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3290
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3246
3291
|
}
|
3247
3292
|
|
3248
3293
|
/* validate.Fixed64Rules */
|
@@ -3426,41 +3471,41 @@ UPB_INLINE upb_Array* _validate_Fixed64Rules_not_in_mutable_upb_array(validate_F
|
|
3426
3471
|
return arr;
|
3427
3472
|
}
|
3428
3473
|
UPB_INLINE void validate_Fixed64Rules_clear_ignore_empty(validate_Fixed64Rules* msg) {
|
3429
|
-
const upb_MiniTableField field = {8,
|
3474
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3430
3475
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
3431
3476
|
}
|
3432
3477
|
UPB_INLINE bool validate_Fixed64Rules_ignore_empty(const validate_Fixed64Rules* msg) {
|
3433
3478
|
bool default_val = false;
|
3434
3479
|
bool ret;
|
3435
|
-
const upb_MiniTableField field = {8,
|
3480
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3436
3481
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
3437
3482
|
&default_val, &ret);
|
3438
3483
|
return ret;
|
3439
3484
|
}
|
3440
3485
|
UPB_INLINE bool validate_Fixed64Rules_has_ignore_empty(const validate_Fixed64Rules* msg) {
|
3441
|
-
const upb_MiniTableField field = {8,
|
3486
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3442
3487
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
3443
3488
|
}
|
3444
3489
|
|
3445
3490
|
UPB_INLINE void validate_Fixed64Rules_set_const(validate_Fixed64Rules *msg, uint64_t value) {
|
3446
3491
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 6, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
3447
|
-
|
3492
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3448
3493
|
}
|
3449
3494
|
UPB_INLINE void validate_Fixed64Rules_set_lt(validate_Fixed64Rules *msg, uint64_t value) {
|
3450
3495
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 6, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
3451
|
-
|
3496
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3452
3497
|
}
|
3453
3498
|
UPB_INLINE void validate_Fixed64Rules_set_lte(validate_Fixed64Rules *msg, uint64_t value) {
|
3454
3499
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 6, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
3455
|
-
|
3500
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3456
3501
|
}
|
3457
3502
|
UPB_INLINE void validate_Fixed64Rules_set_gt(validate_Fixed64Rules *msg, uint64_t value) {
|
3458
3503
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 6, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
3459
|
-
|
3504
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3460
3505
|
}
|
3461
3506
|
UPB_INLINE void validate_Fixed64Rules_set_gte(validate_Fixed64Rules *msg, uint64_t value) {
|
3462
3507
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 6, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
3463
|
-
|
3508
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3464
3509
|
}
|
3465
3510
|
UPB_INLINE uint64_t* validate_Fixed64Rules_mutable_in(validate_Fixed64Rules* msg, size_t* size) {
|
3466
3511
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 6, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -3519,8 +3564,8 @@ UPB_INLINE bool validate_Fixed64Rules_add_not_in(validate_Fixed64Rules* msg, uin
|
|
3519
3564
|
return true;
|
3520
3565
|
}
|
3521
3566
|
UPB_INLINE void validate_Fixed64Rules_set_ignore_empty(validate_Fixed64Rules *msg, bool value) {
|
3522
|
-
const upb_MiniTableField field = {8,
|
3523
|
-
|
3567
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3568
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3524
3569
|
}
|
3525
3570
|
|
3526
3571
|
/* validate.SFixed32Rules */
|
@@ -3640,11 +3685,11 @@ UPB_INLINE bool validate_SFixed32Rules_has_gte(const validate_SFixed32Rules* msg
|
|
3640
3685
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
3641
3686
|
}
|
3642
3687
|
UPB_INLINE void validate_SFixed32Rules_clear_in(validate_SFixed32Rules* msg) {
|
3643
|
-
const upb_MiniTableField field = {6,
|
3688
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3644
3689
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
3645
3690
|
}
|
3646
3691
|
UPB_INLINE int32_t const* validate_SFixed32Rules_in(const validate_SFixed32Rules* msg, size_t* size) {
|
3647
|
-
const upb_MiniTableField field = {6,
|
3692
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3648
3693
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
3649
3694
|
if (arr) {
|
3650
3695
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -3655,7 +3700,7 @@ UPB_INLINE int32_t const* validate_SFixed32Rules_in(const validate_SFixed32Rules
|
|
3655
3700
|
}
|
3656
3701
|
}
|
3657
3702
|
UPB_INLINE const upb_Array* _validate_SFixed32Rules_in_upb_array(const validate_SFixed32Rules* msg, size_t* size) {
|
3658
|
-
const upb_MiniTableField field = {6,
|
3703
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3659
3704
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
3660
3705
|
if (size) {
|
3661
3706
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -3663,7 +3708,7 @@ UPB_INLINE const upb_Array* _validate_SFixed32Rules_in_upb_array(const validate_
|
|
3663
3708
|
return arr;
|
3664
3709
|
}
|
3665
3710
|
UPB_INLINE upb_Array* _validate_SFixed32Rules_in_mutable_upb_array(validate_SFixed32Rules* msg, size_t* size, upb_Arena* arena) {
|
3666
|
-
const upb_MiniTableField field = {6,
|
3711
|
+
const upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3667
3712
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
3668
3713
|
&field, arena);
|
3669
3714
|
if (size) {
|
@@ -3672,11 +3717,11 @@ UPB_INLINE upb_Array* _validate_SFixed32Rules_in_mutable_upb_array(validate_SFix
|
|
3672
3717
|
return arr;
|
3673
3718
|
}
|
3674
3719
|
UPB_INLINE void validate_SFixed32Rules_clear_not_in(validate_SFixed32Rules* msg) {
|
3675
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
3720
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3676
3721
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
3677
3722
|
}
|
3678
3723
|
UPB_INLINE int32_t const* validate_SFixed32Rules_not_in(const validate_SFixed32Rules* msg, size_t* size) {
|
3679
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
3724
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3680
3725
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
3681
3726
|
if (arr) {
|
3682
3727
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -3687,7 +3732,7 @@ UPB_INLINE int32_t const* validate_SFixed32Rules_not_in(const validate_SFixed32R
|
|
3687
3732
|
}
|
3688
3733
|
}
|
3689
3734
|
UPB_INLINE const upb_Array* _validate_SFixed32Rules_not_in_upb_array(const validate_SFixed32Rules* msg, size_t* size) {
|
3690
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
3735
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3691
3736
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
3692
3737
|
if (size) {
|
3693
3738
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -3695,7 +3740,7 @@ UPB_INLINE const upb_Array* _validate_SFixed32Rules_not_in_upb_array(const valid
|
|
3695
3740
|
return arr;
|
3696
3741
|
}
|
3697
3742
|
UPB_INLINE upb_Array* _validate_SFixed32Rules_not_in_mutable_upb_array(validate_SFixed32Rules* msg, size_t* size, upb_Arena* arena) {
|
3698
|
-
const upb_MiniTableField field = {7, UPB_SIZE(36,
|
3743
|
+
const upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3699
3744
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
3700
3745
|
&field, arena);
|
3701
3746
|
if (size) {
|
@@ -3704,44 +3749,44 @@ UPB_INLINE upb_Array* _validate_SFixed32Rules_not_in_mutable_upb_array(validate_
|
|
3704
3749
|
return arr;
|
3705
3750
|
}
|
3706
3751
|
UPB_INLINE void validate_SFixed32Rules_clear_ignore_empty(validate_SFixed32Rules* msg) {
|
3707
|
-
const upb_MiniTableField field = {8,
|
3752
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3708
3753
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
3709
3754
|
}
|
3710
3755
|
UPB_INLINE bool validate_SFixed32Rules_ignore_empty(const validate_SFixed32Rules* msg) {
|
3711
3756
|
bool default_val = false;
|
3712
3757
|
bool ret;
|
3713
|
-
const upb_MiniTableField field = {8,
|
3758
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3714
3759
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
3715
3760
|
&default_val, &ret);
|
3716
3761
|
return ret;
|
3717
3762
|
}
|
3718
3763
|
UPB_INLINE bool validate_SFixed32Rules_has_ignore_empty(const validate_SFixed32Rules* msg) {
|
3719
|
-
const upb_MiniTableField field = {8,
|
3764
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3720
3765
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
3721
3766
|
}
|
3722
3767
|
|
3723
3768
|
UPB_INLINE void validate_SFixed32Rules_set_const(validate_SFixed32Rules *msg, int32_t value) {
|
3724
3769
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 15, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3725
|
-
|
3770
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3726
3771
|
}
|
3727
3772
|
UPB_INLINE void validate_SFixed32Rules_set_lt(validate_SFixed32Rules *msg, int32_t value) {
|
3728
3773
|
const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 15, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3729
|
-
|
3774
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3730
3775
|
}
|
3731
3776
|
UPB_INLINE void validate_SFixed32Rules_set_lte(validate_SFixed32Rules *msg, int32_t value) {
|
3732
3777
|
const upb_MiniTableField field = {3, 20, 66, kUpb_NoSub, 15, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3733
|
-
|
3778
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3734
3779
|
}
|
3735
3780
|
UPB_INLINE void validate_SFixed32Rules_set_gt(validate_SFixed32Rules *msg, int32_t value) {
|
3736
3781
|
const upb_MiniTableField field = {4, 24, 67, kUpb_NoSub, 15, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3737
|
-
|
3782
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3738
3783
|
}
|
3739
3784
|
UPB_INLINE void validate_SFixed32Rules_set_gte(validate_SFixed32Rules *msg, int32_t value) {
|
3740
3785
|
const upb_MiniTableField field = {5, 28, 68, kUpb_NoSub, 15, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
3741
|
-
|
3786
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3742
3787
|
}
|
3743
3788
|
UPB_INLINE int32_t* validate_SFixed32Rules_mutable_in(validate_SFixed32Rules* msg, size_t* size) {
|
3744
|
-
upb_MiniTableField field = {6,
|
3789
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3745
3790
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
3746
3791
|
if (arr) {
|
3747
3792
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -3752,12 +3797,12 @@ UPB_INLINE int32_t* validate_SFixed32Rules_mutable_in(validate_SFixed32Rules* ms
|
|
3752
3797
|
}
|
3753
3798
|
}
|
3754
3799
|
UPB_INLINE int32_t* validate_SFixed32Rules_resize_in(validate_SFixed32Rules* msg, size_t size, upb_Arena* arena) {
|
3755
|
-
upb_MiniTableField field = {6,
|
3800
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3756
3801
|
return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
3757
3802
|
&field, size, arena);
|
3758
3803
|
}
|
3759
3804
|
UPB_INLINE bool validate_SFixed32Rules_add_in(validate_SFixed32Rules* msg, int32_t val, upb_Arena* arena) {
|
3760
|
-
upb_MiniTableField field = {6,
|
3805
|
+
upb_MiniTableField field = {6, 32, 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3761
3806
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
3762
3807
|
UPB_UPCAST(msg), &field, arena);
|
3763
3808
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -3769,7 +3814,7 @@ UPB_INLINE bool validate_SFixed32Rules_add_in(validate_SFixed32Rules* msg, int32
|
|
3769
3814
|
return true;
|
3770
3815
|
}
|
3771
3816
|
UPB_INLINE int32_t* validate_SFixed32Rules_mutable_not_in(validate_SFixed32Rules* msg, size_t* size) {
|
3772
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
3817
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3773
3818
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
3774
3819
|
if (arr) {
|
3775
3820
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -3780,12 +3825,12 @@ UPB_INLINE int32_t* validate_SFixed32Rules_mutable_not_in(validate_SFixed32Rules
|
|
3780
3825
|
}
|
3781
3826
|
}
|
3782
3827
|
UPB_INLINE int32_t* validate_SFixed32Rules_resize_not_in(validate_SFixed32Rules* msg, size_t size, upb_Arena* arena) {
|
3783
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
3828
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3784
3829
|
return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
3785
3830
|
&field, size, arena);
|
3786
3831
|
}
|
3787
3832
|
UPB_INLINE bool validate_SFixed32Rules_add_not_in(validate_SFixed32Rules* msg, int32_t val, upb_Arena* arena) {
|
3788
|
-
upb_MiniTableField field = {7, UPB_SIZE(36,
|
3833
|
+
upb_MiniTableField field = {7, UPB_SIZE(36, 40), 0, kUpb_NoSub, 15, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
3789
3834
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
3790
3835
|
UPB_UPCAST(msg), &field, arena);
|
3791
3836
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -3797,8 +3842,8 @@ UPB_INLINE bool validate_SFixed32Rules_add_not_in(validate_SFixed32Rules* msg, i
|
|
3797
3842
|
return true;
|
3798
3843
|
}
|
3799
3844
|
UPB_INLINE void validate_SFixed32Rules_set_ignore_empty(validate_SFixed32Rules *msg, bool value) {
|
3800
|
-
const upb_MiniTableField field = {8,
|
3801
|
-
|
3845
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3846
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
3802
3847
|
}
|
3803
3848
|
|
3804
3849
|
/* validate.SFixed64Rules */
|
@@ -3982,41 +4027,41 @@ UPB_INLINE upb_Array* _validate_SFixed64Rules_not_in_mutable_upb_array(validate_
|
|
3982
4027
|
return arr;
|
3983
4028
|
}
|
3984
4029
|
UPB_INLINE void validate_SFixed64Rules_clear_ignore_empty(validate_SFixed64Rules* msg) {
|
3985
|
-
const upb_MiniTableField field = {8,
|
4030
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3986
4031
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
3987
4032
|
}
|
3988
4033
|
UPB_INLINE bool validate_SFixed64Rules_ignore_empty(const validate_SFixed64Rules* msg) {
|
3989
4034
|
bool default_val = false;
|
3990
4035
|
bool ret;
|
3991
|
-
const upb_MiniTableField field = {8,
|
4036
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3992
4037
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
3993
4038
|
&default_val, &ret);
|
3994
4039
|
return ret;
|
3995
4040
|
}
|
3996
4041
|
UPB_INLINE bool validate_SFixed64Rules_has_ignore_empty(const validate_SFixed64Rules* msg) {
|
3997
|
-
const upb_MiniTableField field = {8,
|
4042
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
3998
4043
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
3999
4044
|
}
|
4000
4045
|
|
4001
4046
|
UPB_INLINE void validate_SFixed64Rules_set_const(validate_SFixed64Rules *msg, int64_t value) {
|
4002
4047
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 16, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4003
|
-
|
4048
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4004
4049
|
}
|
4005
4050
|
UPB_INLINE void validate_SFixed64Rules_set_lt(validate_SFixed64Rules *msg, int64_t value) {
|
4006
4051
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 16, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4007
|
-
|
4052
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4008
4053
|
}
|
4009
4054
|
UPB_INLINE void validate_SFixed64Rules_set_lte(validate_SFixed64Rules *msg, int64_t value) {
|
4010
4055
|
const upb_MiniTableField field = {3, UPB_SIZE(40, 32), 66, kUpb_NoSub, 16, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4011
|
-
|
4056
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4012
4057
|
}
|
4013
4058
|
UPB_INLINE void validate_SFixed64Rules_set_gt(validate_SFixed64Rules *msg, int64_t value) {
|
4014
4059
|
const upb_MiniTableField field = {4, UPB_SIZE(48, 40), 67, kUpb_NoSub, 16, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4015
|
-
|
4060
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4016
4061
|
}
|
4017
4062
|
UPB_INLINE void validate_SFixed64Rules_set_gte(validate_SFixed64Rules *msg, int64_t value) {
|
4018
4063
|
const upb_MiniTableField field = {5, UPB_SIZE(56, 48), 68, kUpb_NoSub, 16, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4019
|
-
|
4064
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4020
4065
|
}
|
4021
4066
|
UPB_INLINE int64_t* validate_SFixed64Rules_mutable_in(validate_SFixed64Rules* msg, size_t* size) {
|
4022
4067
|
upb_MiniTableField field = {6, UPB_SIZE(12, 56), 0, kUpb_NoSub, 16, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -4075,8 +4120,8 @@ UPB_INLINE bool validate_SFixed64Rules_add_not_in(validate_SFixed64Rules* msg, i
|
|
4075
4120
|
return true;
|
4076
4121
|
}
|
4077
4122
|
UPB_INLINE void validate_SFixed64Rules_set_ignore_empty(validate_SFixed64Rules *msg, bool value) {
|
4078
|
-
const upb_MiniTableField field = {8,
|
4079
|
-
|
4123
|
+
const upb_MiniTableField field = {8, 9, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4124
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4080
4125
|
}
|
4081
4126
|
|
4082
4127
|
/* validate.BoolRules */
|
@@ -4134,7 +4179,7 @@ UPB_INLINE bool validate_BoolRules_has_const(const validate_BoolRules* msg) {
|
|
4134
4179
|
|
4135
4180
|
UPB_INLINE void validate_BoolRules_set_const(validate_BoolRules *msg, bool value) {
|
4136
4181
|
const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4137
|
-
|
4182
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4138
4183
|
}
|
4139
4184
|
|
4140
4185
|
/* validate.StringRules */
|
@@ -4187,160 +4232,160 @@ typedef enum {
|
|
4187
4232
|
validate_StringRules_well_known_NOT_SET = 0
|
4188
4233
|
} validate_StringRules_well_known_oneofcases;
|
4189
4234
|
UPB_INLINE validate_StringRules_well_known_oneofcases validate_StringRules_well_known_case(const validate_StringRules* msg) {
|
4190
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
4235
|
+
const upb_MiniTableField field = {12, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4191
4236
|
return (validate_StringRules_well_known_oneofcases)upb_Message_WhichOneofFieldNumber(
|
4192
4237
|
UPB_UPCAST(msg), &field);
|
4193
4238
|
}
|
4194
4239
|
UPB_INLINE void validate_StringRules_clear_const(validate_StringRules* msg) {
|
4195
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
4240
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4196
4241
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4197
4242
|
}
|
4198
4243
|
UPB_INLINE upb_StringView validate_StringRules_const(const validate_StringRules* msg) {
|
4199
4244
|
upb_StringView default_val = upb_StringView_FromString("");
|
4200
4245
|
upb_StringView ret;
|
4201
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
4246
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4202
4247
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4203
4248
|
&default_val, &ret);
|
4204
4249
|
return ret;
|
4205
4250
|
}
|
4206
4251
|
UPB_INLINE bool validate_StringRules_has_const(const validate_StringRules* msg) {
|
4207
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
4252
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4208
4253
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4209
4254
|
}
|
4210
4255
|
UPB_INLINE void validate_StringRules_clear_min_len(validate_StringRules* msg) {
|
4211
|
-
const upb_MiniTableField field = {2,
|
4256
|
+
const upb_MiniTableField field = {2, UPB_SIZE(80, 120), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4212
4257
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4213
4258
|
}
|
4214
4259
|
UPB_INLINE uint64_t validate_StringRules_min_len(const validate_StringRules* msg) {
|
4215
4260
|
uint64_t default_val = (uint64_t)0ull;
|
4216
4261
|
uint64_t ret;
|
4217
|
-
const upb_MiniTableField field = {2,
|
4262
|
+
const upb_MiniTableField field = {2, UPB_SIZE(80, 120), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4218
4263
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4219
4264
|
&default_val, &ret);
|
4220
4265
|
return ret;
|
4221
4266
|
}
|
4222
4267
|
UPB_INLINE bool validate_StringRules_has_min_len(const validate_StringRules* msg) {
|
4223
|
-
const upb_MiniTableField field = {2,
|
4268
|
+
const upb_MiniTableField field = {2, UPB_SIZE(80, 120), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4224
4269
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4225
4270
|
}
|
4226
4271
|
UPB_INLINE void validate_StringRules_clear_max_len(validate_StringRules* msg) {
|
4227
|
-
const upb_MiniTableField field = {3,
|
4272
|
+
const upb_MiniTableField field = {3, UPB_SIZE(88, 128), 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4228
4273
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4229
4274
|
}
|
4230
4275
|
UPB_INLINE uint64_t validate_StringRules_max_len(const validate_StringRules* msg) {
|
4231
4276
|
uint64_t default_val = (uint64_t)0ull;
|
4232
4277
|
uint64_t ret;
|
4233
|
-
const upb_MiniTableField field = {3,
|
4278
|
+
const upb_MiniTableField field = {3, UPB_SIZE(88, 128), 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4234
4279
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4235
4280
|
&default_val, &ret);
|
4236
4281
|
return ret;
|
4237
4282
|
}
|
4238
4283
|
UPB_INLINE bool validate_StringRules_has_max_len(const validate_StringRules* msg) {
|
4239
|
-
const upb_MiniTableField field = {3,
|
4284
|
+
const upb_MiniTableField field = {3, UPB_SIZE(88, 128), 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4240
4285
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4241
4286
|
}
|
4242
4287
|
UPB_INLINE void validate_StringRules_clear_min_bytes(validate_StringRules* msg) {
|
4243
|
-
const upb_MiniTableField field = {4,
|
4288
|
+
const upb_MiniTableField field = {4, UPB_SIZE(96, 136), 67, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4244
4289
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4245
4290
|
}
|
4246
4291
|
UPB_INLINE uint64_t validate_StringRules_min_bytes(const validate_StringRules* msg) {
|
4247
4292
|
uint64_t default_val = (uint64_t)0ull;
|
4248
4293
|
uint64_t ret;
|
4249
|
-
const upb_MiniTableField field = {4,
|
4294
|
+
const upb_MiniTableField field = {4, UPB_SIZE(96, 136), 67, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4250
4295
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4251
4296
|
&default_val, &ret);
|
4252
4297
|
return ret;
|
4253
4298
|
}
|
4254
4299
|
UPB_INLINE bool validate_StringRules_has_min_bytes(const validate_StringRules* msg) {
|
4255
|
-
const upb_MiniTableField field = {4,
|
4300
|
+
const upb_MiniTableField field = {4, UPB_SIZE(96, 136), 67, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4256
4301
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4257
4302
|
}
|
4258
4303
|
UPB_INLINE void validate_StringRules_clear_max_bytes(validate_StringRules* msg) {
|
4259
|
-
const upb_MiniTableField field = {5,
|
4304
|
+
const upb_MiniTableField field = {5, UPB_SIZE(104, 144), 68, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4260
4305
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4261
4306
|
}
|
4262
4307
|
UPB_INLINE uint64_t validate_StringRules_max_bytes(const validate_StringRules* msg) {
|
4263
4308
|
uint64_t default_val = (uint64_t)0ull;
|
4264
4309
|
uint64_t ret;
|
4265
|
-
const upb_MiniTableField field = {5,
|
4310
|
+
const upb_MiniTableField field = {5, UPB_SIZE(104, 144), 68, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4266
4311
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4267
4312
|
&default_val, &ret);
|
4268
4313
|
return ret;
|
4269
4314
|
}
|
4270
4315
|
UPB_INLINE bool validate_StringRules_has_max_bytes(const validate_StringRules* msg) {
|
4271
|
-
const upb_MiniTableField field = {5,
|
4316
|
+
const upb_MiniTableField field = {5, UPB_SIZE(104, 144), 68, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4272
4317
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4273
4318
|
}
|
4274
4319
|
UPB_INLINE void validate_StringRules_clear_pattern(validate_StringRules* msg) {
|
4275
|
-
const upb_MiniTableField field = {6,
|
4320
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 40), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4276
4321
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4277
4322
|
}
|
4278
4323
|
UPB_INLINE upb_StringView validate_StringRules_pattern(const validate_StringRules* msg) {
|
4279
4324
|
upb_StringView default_val = upb_StringView_FromString("");
|
4280
4325
|
upb_StringView ret;
|
4281
|
-
const upb_MiniTableField field = {6,
|
4326
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 40), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4282
4327
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4283
4328
|
&default_val, &ret);
|
4284
4329
|
return ret;
|
4285
4330
|
}
|
4286
4331
|
UPB_INLINE bool validate_StringRules_has_pattern(const validate_StringRules* msg) {
|
4287
|
-
const upb_MiniTableField field = {6,
|
4332
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 40), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4288
4333
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4289
4334
|
}
|
4290
4335
|
UPB_INLINE void validate_StringRules_clear_prefix(validate_StringRules* msg) {
|
4291
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
4336
|
+
const upb_MiniTableField field = {7, UPB_SIZE(44, 56), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4292
4337
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4293
4338
|
}
|
4294
4339
|
UPB_INLINE upb_StringView validate_StringRules_prefix(const validate_StringRules* msg) {
|
4295
4340
|
upb_StringView default_val = upb_StringView_FromString("");
|
4296
4341
|
upb_StringView ret;
|
4297
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
4342
|
+
const upb_MiniTableField field = {7, UPB_SIZE(44, 56), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4298
4343
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4299
4344
|
&default_val, &ret);
|
4300
4345
|
return ret;
|
4301
4346
|
}
|
4302
4347
|
UPB_INLINE bool validate_StringRules_has_prefix(const validate_StringRules* msg) {
|
4303
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
4348
|
+
const upb_MiniTableField field = {7, UPB_SIZE(44, 56), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4304
4349
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4305
4350
|
}
|
4306
4351
|
UPB_INLINE void validate_StringRules_clear_suffix(validate_StringRules* msg) {
|
4307
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
4352
|
+
const upb_MiniTableField field = {8, UPB_SIZE(52, 72), 71, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4308
4353
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4309
4354
|
}
|
4310
4355
|
UPB_INLINE upb_StringView validate_StringRules_suffix(const validate_StringRules* msg) {
|
4311
4356
|
upb_StringView default_val = upb_StringView_FromString("");
|
4312
4357
|
upb_StringView ret;
|
4313
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
4358
|
+
const upb_MiniTableField field = {8, UPB_SIZE(52, 72), 71, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4314
4359
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4315
4360
|
&default_val, &ret);
|
4316
4361
|
return ret;
|
4317
4362
|
}
|
4318
4363
|
UPB_INLINE bool validate_StringRules_has_suffix(const validate_StringRules* msg) {
|
4319
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
4364
|
+
const upb_MiniTableField field = {8, UPB_SIZE(52, 72), 71, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4320
4365
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4321
4366
|
}
|
4322
4367
|
UPB_INLINE void validate_StringRules_clear_contains(validate_StringRules* msg) {
|
4323
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
4368
|
+
const upb_MiniTableField field = {9, UPB_SIZE(60, 88), 72, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4324
4369
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4325
4370
|
}
|
4326
4371
|
UPB_INLINE upb_StringView validate_StringRules_contains(const validate_StringRules* msg) {
|
4327
4372
|
upb_StringView default_val = upb_StringView_FromString("");
|
4328
4373
|
upb_StringView ret;
|
4329
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
4374
|
+
const upb_MiniTableField field = {9, UPB_SIZE(60, 88), 72, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4330
4375
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4331
4376
|
&default_val, &ret);
|
4332
4377
|
return ret;
|
4333
4378
|
}
|
4334
4379
|
UPB_INLINE bool validate_StringRules_has_contains(const validate_StringRules* msg) {
|
4335
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
4380
|
+
const upb_MiniTableField field = {9, UPB_SIZE(60, 88), 72, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4336
4381
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4337
4382
|
}
|
4338
4383
|
UPB_INLINE void validate_StringRules_clear_in(validate_StringRules* msg) {
|
4339
|
-
const upb_MiniTableField field = {10, UPB_SIZE(12,
|
4384
|
+
const upb_MiniTableField field = {10, UPB_SIZE(12, 152), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4340
4385
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4341
4386
|
}
|
4342
4387
|
UPB_INLINE upb_StringView const* validate_StringRules_in(const validate_StringRules* msg, size_t* size) {
|
4343
|
-
const upb_MiniTableField field = {10, UPB_SIZE(12,
|
4388
|
+
const upb_MiniTableField field = {10, UPB_SIZE(12, 152), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4344
4389
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
4345
4390
|
if (arr) {
|
4346
4391
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -4351,7 +4396,7 @@ UPB_INLINE upb_StringView const* validate_StringRules_in(const validate_StringRu
|
|
4351
4396
|
}
|
4352
4397
|
}
|
4353
4398
|
UPB_INLINE const upb_Array* _validate_StringRules_in_upb_array(const validate_StringRules* msg, size_t* size) {
|
4354
|
-
const upb_MiniTableField field = {10, UPB_SIZE(12,
|
4399
|
+
const upb_MiniTableField field = {10, UPB_SIZE(12, 152), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4355
4400
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
4356
4401
|
if (size) {
|
4357
4402
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -4359,7 +4404,7 @@ UPB_INLINE const upb_Array* _validate_StringRules_in_upb_array(const validate_St
|
|
4359
4404
|
return arr;
|
4360
4405
|
}
|
4361
4406
|
UPB_INLINE upb_Array* _validate_StringRules_in_mutable_upb_array(validate_StringRules* msg, size_t* size, upb_Arena* arena) {
|
4362
|
-
const upb_MiniTableField field = {10, UPB_SIZE(12,
|
4407
|
+
const upb_MiniTableField field = {10, UPB_SIZE(12, 152), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4363
4408
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
4364
4409
|
&field, arena);
|
4365
4410
|
if (size) {
|
@@ -4368,11 +4413,11 @@ UPB_INLINE upb_Array* _validate_StringRules_in_mutable_upb_array(validate_String
|
|
4368
4413
|
return arr;
|
4369
4414
|
}
|
4370
4415
|
UPB_INLINE void validate_StringRules_clear_not_in(validate_StringRules* msg) {
|
4371
|
-
const upb_MiniTableField field = {11, UPB_SIZE(16,
|
4416
|
+
const upb_MiniTableField field = {11, UPB_SIZE(16, 160), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4372
4417
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4373
4418
|
}
|
4374
4419
|
UPB_INLINE upb_StringView const* validate_StringRules_not_in(const validate_StringRules* msg, size_t* size) {
|
4375
|
-
const upb_MiniTableField field = {11, UPB_SIZE(16,
|
4420
|
+
const upb_MiniTableField field = {11, UPB_SIZE(16, 160), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4376
4421
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
4377
4422
|
if (arr) {
|
4378
4423
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -4383,7 +4428,7 @@ UPB_INLINE upb_StringView const* validate_StringRules_not_in(const validate_Stri
|
|
4383
4428
|
}
|
4384
4429
|
}
|
4385
4430
|
UPB_INLINE const upb_Array* _validate_StringRules_not_in_upb_array(const validate_StringRules* msg, size_t* size) {
|
4386
|
-
const upb_MiniTableField field = {11, UPB_SIZE(16,
|
4431
|
+
const upb_MiniTableField field = {11, UPB_SIZE(16, 160), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4387
4432
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
4388
4433
|
if (size) {
|
4389
4434
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -4391,7 +4436,7 @@ UPB_INLINE const upb_Array* _validate_StringRules_not_in_upb_array(const validat
|
|
4391
4436
|
return arr;
|
4392
4437
|
}
|
4393
4438
|
UPB_INLINE upb_Array* _validate_StringRules_not_in_mutable_upb_array(validate_StringRules* msg, size_t* size, upb_Arena* arena) {
|
4394
|
-
const upb_MiniTableField field = {11, UPB_SIZE(16,
|
4439
|
+
const upb_MiniTableField field = {11, UPB_SIZE(16, 160), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4395
4440
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
4396
4441
|
&field, arena);
|
4397
4442
|
if (size) {
|
@@ -4400,284 +4445,284 @@ UPB_INLINE upb_Array* _validate_StringRules_not_in_mutable_upb_array(validate_St
|
|
4400
4445
|
return arr;
|
4401
4446
|
}
|
4402
4447
|
UPB_INLINE void validate_StringRules_clear_email(validate_StringRules* msg) {
|
4403
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
4448
|
+
const upb_MiniTableField field = {12, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4404
4449
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4405
4450
|
}
|
4406
4451
|
UPB_INLINE bool validate_StringRules_email(const validate_StringRules* msg) {
|
4407
4452
|
bool default_val = false;
|
4408
4453
|
bool ret;
|
4409
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
4454
|
+
const upb_MiniTableField field = {12, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4410
4455
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4411
4456
|
&default_val, &ret);
|
4412
4457
|
return ret;
|
4413
4458
|
}
|
4414
4459
|
UPB_INLINE bool validate_StringRules_has_email(const validate_StringRules* msg) {
|
4415
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
4460
|
+
const upb_MiniTableField field = {12, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4416
4461
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4417
4462
|
}
|
4418
4463
|
UPB_INLINE void validate_StringRules_clear_hostname(validate_StringRules* msg) {
|
4419
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
4464
|
+
const upb_MiniTableField field = {13, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4420
4465
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4421
4466
|
}
|
4422
4467
|
UPB_INLINE bool validate_StringRules_hostname(const validate_StringRules* msg) {
|
4423
4468
|
bool default_val = false;
|
4424
4469
|
bool ret;
|
4425
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
4470
|
+
const upb_MiniTableField field = {13, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4426
4471
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4427
4472
|
&default_val, &ret);
|
4428
4473
|
return ret;
|
4429
4474
|
}
|
4430
4475
|
UPB_INLINE bool validate_StringRules_has_hostname(const validate_StringRules* msg) {
|
4431
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
4476
|
+
const upb_MiniTableField field = {13, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4432
4477
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4433
4478
|
}
|
4434
4479
|
UPB_INLINE void validate_StringRules_clear_ip(validate_StringRules* msg) {
|
4435
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
4480
|
+
const upb_MiniTableField field = {14, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4436
4481
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4437
4482
|
}
|
4438
4483
|
UPB_INLINE bool validate_StringRules_ip(const validate_StringRules* msg) {
|
4439
4484
|
bool default_val = false;
|
4440
4485
|
bool ret;
|
4441
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
4486
|
+
const upb_MiniTableField field = {14, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4442
4487
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4443
4488
|
&default_val, &ret);
|
4444
4489
|
return ret;
|
4445
4490
|
}
|
4446
4491
|
UPB_INLINE bool validate_StringRules_has_ip(const validate_StringRules* msg) {
|
4447
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
4492
|
+
const upb_MiniTableField field = {14, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4448
4493
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4449
4494
|
}
|
4450
4495
|
UPB_INLINE void validate_StringRules_clear_ipv4(validate_StringRules* msg) {
|
4451
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
4496
|
+
const upb_MiniTableField field = {15, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4452
4497
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4453
4498
|
}
|
4454
4499
|
UPB_INLINE bool validate_StringRules_ipv4(const validate_StringRules* msg) {
|
4455
4500
|
bool default_val = false;
|
4456
4501
|
bool ret;
|
4457
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
4502
|
+
const upb_MiniTableField field = {15, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4458
4503
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4459
4504
|
&default_val, &ret);
|
4460
4505
|
return ret;
|
4461
4506
|
}
|
4462
4507
|
UPB_INLINE bool validate_StringRules_has_ipv4(const validate_StringRules* msg) {
|
4463
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
4508
|
+
const upb_MiniTableField field = {15, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4464
4509
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4465
4510
|
}
|
4466
4511
|
UPB_INLINE void validate_StringRules_clear_ipv6(validate_StringRules* msg) {
|
4467
|
-
const upb_MiniTableField field = {16, UPB_SIZE(
|
4512
|
+
const upb_MiniTableField field = {16, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4468
4513
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4469
4514
|
}
|
4470
4515
|
UPB_INLINE bool validate_StringRules_ipv6(const validate_StringRules* msg) {
|
4471
4516
|
bool default_val = false;
|
4472
4517
|
bool ret;
|
4473
|
-
const upb_MiniTableField field = {16, UPB_SIZE(
|
4518
|
+
const upb_MiniTableField field = {16, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4474
4519
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4475
4520
|
&default_val, &ret);
|
4476
4521
|
return ret;
|
4477
4522
|
}
|
4478
4523
|
UPB_INLINE bool validate_StringRules_has_ipv6(const validate_StringRules* msg) {
|
4479
|
-
const upb_MiniTableField field = {16, UPB_SIZE(
|
4524
|
+
const upb_MiniTableField field = {16, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4480
4525
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4481
4526
|
}
|
4482
4527
|
UPB_INLINE void validate_StringRules_clear_uri(validate_StringRules* msg) {
|
4483
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
4528
|
+
const upb_MiniTableField field = {17, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4484
4529
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4485
4530
|
}
|
4486
4531
|
UPB_INLINE bool validate_StringRules_uri(const validate_StringRules* msg) {
|
4487
4532
|
bool default_val = false;
|
4488
4533
|
bool ret;
|
4489
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
4534
|
+
const upb_MiniTableField field = {17, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4490
4535
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4491
4536
|
&default_val, &ret);
|
4492
4537
|
return ret;
|
4493
4538
|
}
|
4494
4539
|
UPB_INLINE bool validate_StringRules_has_uri(const validate_StringRules* msg) {
|
4495
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
4540
|
+
const upb_MiniTableField field = {17, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4496
4541
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4497
4542
|
}
|
4498
4543
|
UPB_INLINE void validate_StringRules_clear_uri_ref(validate_StringRules* msg) {
|
4499
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
4544
|
+
const upb_MiniTableField field = {18, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4500
4545
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4501
4546
|
}
|
4502
4547
|
UPB_INLINE bool validate_StringRules_uri_ref(const validate_StringRules* msg) {
|
4503
4548
|
bool default_val = false;
|
4504
4549
|
bool ret;
|
4505
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
4550
|
+
const upb_MiniTableField field = {18, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4506
4551
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4507
4552
|
&default_val, &ret);
|
4508
4553
|
return ret;
|
4509
4554
|
}
|
4510
4555
|
UPB_INLINE bool validate_StringRules_has_uri_ref(const validate_StringRules* msg) {
|
4511
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
4556
|
+
const upb_MiniTableField field = {18, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4512
4557
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4513
4558
|
}
|
4514
4559
|
UPB_INLINE void validate_StringRules_clear_len(validate_StringRules* msg) {
|
4515
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
4560
|
+
const upb_MiniTableField field = {19, UPB_SIZE(112, 168), 73, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4516
4561
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4517
4562
|
}
|
4518
4563
|
UPB_INLINE uint64_t validate_StringRules_len(const validate_StringRules* msg) {
|
4519
4564
|
uint64_t default_val = (uint64_t)0ull;
|
4520
4565
|
uint64_t ret;
|
4521
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
4566
|
+
const upb_MiniTableField field = {19, UPB_SIZE(112, 168), 73, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4522
4567
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4523
4568
|
&default_val, &ret);
|
4524
4569
|
return ret;
|
4525
4570
|
}
|
4526
4571
|
UPB_INLINE bool validate_StringRules_has_len(const validate_StringRules* msg) {
|
4527
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
4572
|
+
const upb_MiniTableField field = {19, UPB_SIZE(112, 168), 73, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4528
4573
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4529
4574
|
}
|
4530
4575
|
UPB_INLINE void validate_StringRules_clear_len_bytes(validate_StringRules* msg) {
|
4531
|
-
const upb_MiniTableField field = {20, UPB_SIZE(
|
4576
|
+
const upb_MiniTableField field = {20, UPB_SIZE(120, 176), 74, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4532
4577
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4533
4578
|
}
|
4534
4579
|
UPB_INLINE uint64_t validate_StringRules_len_bytes(const validate_StringRules* msg) {
|
4535
4580
|
uint64_t default_val = (uint64_t)0ull;
|
4536
4581
|
uint64_t ret;
|
4537
|
-
const upb_MiniTableField field = {20, UPB_SIZE(
|
4582
|
+
const upb_MiniTableField field = {20, UPB_SIZE(120, 176), 74, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4538
4583
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4539
4584
|
&default_val, &ret);
|
4540
4585
|
return ret;
|
4541
4586
|
}
|
4542
4587
|
UPB_INLINE bool validate_StringRules_has_len_bytes(const validate_StringRules* msg) {
|
4543
|
-
const upb_MiniTableField field = {20, UPB_SIZE(
|
4588
|
+
const upb_MiniTableField field = {20, UPB_SIZE(120, 176), 74, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4544
4589
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4545
4590
|
}
|
4546
4591
|
UPB_INLINE void validate_StringRules_clear_address(validate_StringRules* msg) {
|
4547
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
4592
|
+
const upb_MiniTableField field = {21, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4548
4593
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4549
4594
|
}
|
4550
4595
|
UPB_INLINE bool validate_StringRules_address(const validate_StringRules* msg) {
|
4551
4596
|
bool default_val = false;
|
4552
4597
|
bool ret;
|
4553
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
4598
|
+
const upb_MiniTableField field = {21, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4554
4599
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4555
4600
|
&default_val, &ret);
|
4556
4601
|
return ret;
|
4557
4602
|
}
|
4558
4603
|
UPB_INLINE bool validate_StringRules_has_address(const validate_StringRules* msg) {
|
4559
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
4604
|
+
const upb_MiniTableField field = {21, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4560
4605
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4561
4606
|
}
|
4562
4607
|
UPB_INLINE void validate_StringRules_clear_uuid(validate_StringRules* msg) {
|
4563
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
4608
|
+
const upb_MiniTableField field = {22, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4564
4609
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4565
4610
|
}
|
4566
4611
|
UPB_INLINE bool validate_StringRules_uuid(const validate_StringRules* msg) {
|
4567
4612
|
bool default_val = false;
|
4568
4613
|
bool ret;
|
4569
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
4614
|
+
const upb_MiniTableField field = {22, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4570
4615
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4571
4616
|
&default_val, &ret);
|
4572
4617
|
return ret;
|
4573
4618
|
}
|
4574
4619
|
UPB_INLINE bool validate_StringRules_has_uuid(const validate_StringRules* msg) {
|
4575
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
4620
|
+
const upb_MiniTableField field = {22, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4576
4621
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4577
4622
|
}
|
4578
4623
|
UPB_INLINE void validate_StringRules_clear_not_contains(validate_StringRules* msg) {
|
4579
|
-
const upb_MiniTableField field = {23, UPB_SIZE(
|
4624
|
+
const upb_MiniTableField field = {23, UPB_SIZE(68, 104), 75, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4580
4625
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4581
4626
|
}
|
4582
4627
|
UPB_INLINE upb_StringView validate_StringRules_not_contains(const validate_StringRules* msg) {
|
4583
4628
|
upb_StringView default_val = upb_StringView_FromString("");
|
4584
4629
|
upb_StringView ret;
|
4585
|
-
const upb_MiniTableField field = {23, UPB_SIZE(
|
4630
|
+
const upb_MiniTableField field = {23, UPB_SIZE(68, 104), 75, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4586
4631
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4587
4632
|
&default_val, &ret);
|
4588
4633
|
return ret;
|
4589
4634
|
}
|
4590
4635
|
UPB_INLINE bool validate_StringRules_has_not_contains(const validate_StringRules* msg) {
|
4591
|
-
const upb_MiniTableField field = {23, UPB_SIZE(
|
4636
|
+
const upb_MiniTableField field = {23, UPB_SIZE(68, 104), 75, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4592
4637
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4593
4638
|
}
|
4594
4639
|
UPB_INLINE void validate_StringRules_clear_well_known_regex(validate_StringRules* msg) {
|
4595
|
-
const upb_MiniTableField field = {24, UPB_SIZE(
|
4640
|
+
const upb_MiniTableField field = {24, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
4596
4641
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4597
4642
|
}
|
4598
4643
|
UPB_INLINE int32_t validate_StringRules_well_known_regex(const validate_StringRules* msg) {
|
4599
4644
|
int32_t default_val = 0;
|
4600
4645
|
int32_t ret;
|
4601
|
-
const upb_MiniTableField field = {24, UPB_SIZE(
|
4646
|
+
const upb_MiniTableField field = {24, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
4602
4647
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4603
4648
|
&default_val, &ret);
|
4604
4649
|
return ret;
|
4605
4650
|
}
|
4606
4651
|
UPB_INLINE bool validate_StringRules_has_well_known_regex(const validate_StringRules* msg) {
|
4607
|
-
const upb_MiniTableField field = {24, UPB_SIZE(
|
4652
|
+
const upb_MiniTableField field = {24, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
4608
4653
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4609
4654
|
}
|
4610
4655
|
UPB_INLINE void validate_StringRules_clear_strict(validate_StringRules* msg) {
|
4611
|
-
const upb_MiniTableField field = {25,
|
4656
|
+
const upb_MiniTableField field = {25, 10, 76, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4612
4657
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4613
4658
|
}
|
4614
4659
|
UPB_INLINE bool validate_StringRules_strict(const validate_StringRules* msg) {
|
4615
4660
|
bool default_val = true;
|
4616
4661
|
bool ret;
|
4617
|
-
const upb_MiniTableField field = {25,
|
4662
|
+
const upb_MiniTableField field = {25, 10, 76, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4618
4663
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4619
4664
|
&default_val, &ret);
|
4620
4665
|
return ret;
|
4621
4666
|
}
|
4622
4667
|
UPB_INLINE bool validate_StringRules_has_strict(const validate_StringRules* msg) {
|
4623
|
-
const upb_MiniTableField field = {25,
|
4668
|
+
const upb_MiniTableField field = {25, 10, 76, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4624
4669
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4625
4670
|
}
|
4626
4671
|
UPB_INLINE void validate_StringRules_clear_ignore_empty(validate_StringRules* msg) {
|
4627
|
-
const upb_MiniTableField field = {26,
|
4672
|
+
const upb_MiniTableField field = {26, 11, 77, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4628
4673
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4629
4674
|
}
|
4630
4675
|
UPB_INLINE bool validate_StringRules_ignore_empty(const validate_StringRules* msg) {
|
4631
4676
|
bool default_val = false;
|
4632
4677
|
bool ret;
|
4633
|
-
const upb_MiniTableField field = {26,
|
4678
|
+
const upb_MiniTableField field = {26, 11, 77, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4634
4679
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4635
4680
|
&default_val, &ret);
|
4636
4681
|
return ret;
|
4637
4682
|
}
|
4638
4683
|
UPB_INLINE bool validate_StringRules_has_ignore_empty(const validate_StringRules* msg) {
|
4639
|
-
const upb_MiniTableField field = {26,
|
4684
|
+
const upb_MiniTableField field = {26, 11, 77, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4640
4685
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4641
4686
|
}
|
4642
4687
|
|
4643
4688
|
UPB_INLINE void validate_StringRules_set_const(validate_StringRules *msg, upb_StringView value) {
|
4644
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
4645
|
-
|
4689
|
+
const upb_MiniTableField field = {1, UPB_SIZE(28, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4690
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4646
4691
|
}
|
4647
4692
|
UPB_INLINE void validate_StringRules_set_min_len(validate_StringRules *msg, uint64_t value) {
|
4648
|
-
const upb_MiniTableField field = {2,
|
4649
|
-
|
4693
|
+
const upb_MiniTableField field = {2, UPB_SIZE(80, 120), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4694
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4650
4695
|
}
|
4651
4696
|
UPB_INLINE void validate_StringRules_set_max_len(validate_StringRules *msg, uint64_t value) {
|
4652
|
-
const upb_MiniTableField field = {3,
|
4653
|
-
|
4697
|
+
const upb_MiniTableField field = {3, UPB_SIZE(88, 128), 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4698
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4654
4699
|
}
|
4655
4700
|
UPB_INLINE void validate_StringRules_set_min_bytes(validate_StringRules *msg, uint64_t value) {
|
4656
|
-
const upb_MiniTableField field = {4,
|
4657
|
-
|
4701
|
+
const upb_MiniTableField field = {4, UPB_SIZE(96, 136), 67, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4702
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4658
4703
|
}
|
4659
4704
|
UPB_INLINE void validate_StringRules_set_max_bytes(validate_StringRules *msg, uint64_t value) {
|
4660
|
-
const upb_MiniTableField field = {5,
|
4661
|
-
|
4705
|
+
const upb_MiniTableField field = {5, UPB_SIZE(104, 144), 68, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4706
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4662
4707
|
}
|
4663
4708
|
UPB_INLINE void validate_StringRules_set_pattern(validate_StringRules *msg, upb_StringView value) {
|
4664
|
-
const upb_MiniTableField field = {6,
|
4665
|
-
|
4709
|
+
const upb_MiniTableField field = {6, UPB_SIZE(36, 40), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4710
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4666
4711
|
}
|
4667
4712
|
UPB_INLINE void validate_StringRules_set_prefix(validate_StringRules *msg, upb_StringView value) {
|
4668
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
4669
|
-
|
4713
|
+
const upb_MiniTableField field = {7, UPB_SIZE(44, 56), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4714
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4670
4715
|
}
|
4671
4716
|
UPB_INLINE void validate_StringRules_set_suffix(validate_StringRules *msg, upb_StringView value) {
|
4672
|
-
const upb_MiniTableField field = {8, UPB_SIZE(
|
4673
|
-
|
4717
|
+
const upb_MiniTableField field = {8, UPB_SIZE(52, 72), 71, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4718
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4674
4719
|
}
|
4675
4720
|
UPB_INLINE void validate_StringRules_set_contains(validate_StringRules *msg, upb_StringView value) {
|
4676
|
-
const upb_MiniTableField field = {9, UPB_SIZE(
|
4677
|
-
|
4721
|
+
const upb_MiniTableField field = {9, UPB_SIZE(60, 88), 72, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4722
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4678
4723
|
}
|
4679
4724
|
UPB_INLINE upb_StringView* validate_StringRules_mutable_in(validate_StringRules* msg, size_t* size) {
|
4680
|
-
upb_MiniTableField field = {10, UPB_SIZE(12,
|
4725
|
+
upb_MiniTableField field = {10, UPB_SIZE(12, 152), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4681
4726
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
4682
4727
|
if (arr) {
|
4683
4728
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -4688,12 +4733,12 @@ UPB_INLINE upb_StringView* validate_StringRules_mutable_in(validate_StringRules*
|
|
4688
4733
|
}
|
4689
4734
|
}
|
4690
4735
|
UPB_INLINE upb_StringView* validate_StringRules_resize_in(validate_StringRules* msg, size_t size, upb_Arena* arena) {
|
4691
|
-
upb_MiniTableField field = {10, UPB_SIZE(12,
|
4736
|
+
upb_MiniTableField field = {10, UPB_SIZE(12, 152), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4692
4737
|
return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
4693
4738
|
&field, size, arena);
|
4694
4739
|
}
|
4695
4740
|
UPB_INLINE bool validate_StringRules_add_in(validate_StringRules* msg, upb_StringView val, upb_Arena* arena) {
|
4696
|
-
upb_MiniTableField field = {10, UPB_SIZE(12,
|
4741
|
+
upb_MiniTableField field = {10, UPB_SIZE(12, 152), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4697
4742
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
4698
4743
|
UPB_UPCAST(msg), &field, arena);
|
4699
4744
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -4705,7 +4750,7 @@ UPB_INLINE bool validate_StringRules_add_in(validate_StringRules* msg, upb_Strin
|
|
4705
4750
|
return true;
|
4706
4751
|
}
|
4707
4752
|
UPB_INLINE upb_StringView* validate_StringRules_mutable_not_in(validate_StringRules* msg, size_t* size) {
|
4708
|
-
upb_MiniTableField field = {11, UPB_SIZE(16,
|
4753
|
+
upb_MiniTableField field = {11, UPB_SIZE(16, 160), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4709
4754
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
4710
4755
|
if (arr) {
|
4711
4756
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -4716,12 +4761,12 @@ UPB_INLINE upb_StringView* validate_StringRules_mutable_not_in(validate_StringRu
|
|
4716
4761
|
}
|
4717
4762
|
}
|
4718
4763
|
UPB_INLINE upb_StringView* validate_StringRules_resize_not_in(validate_StringRules* msg, size_t size, upb_Arena* arena) {
|
4719
|
-
upb_MiniTableField field = {11, UPB_SIZE(16,
|
4764
|
+
upb_MiniTableField field = {11, UPB_SIZE(16, 160), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4720
4765
|
return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
4721
4766
|
&field, size, arena);
|
4722
4767
|
}
|
4723
4768
|
UPB_INLINE bool validate_StringRules_add_not_in(validate_StringRules* msg, upb_StringView val, upb_Arena* arena) {
|
4724
|
-
upb_MiniTableField field = {11, UPB_SIZE(16,
|
4769
|
+
upb_MiniTableField field = {11, UPB_SIZE(16, 160), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4725
4770
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
4726
4771
|
UPB_UPCAST(msg), &field, arena);
|
4727
4772
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -4733,64 +4778,64 @@ UPB_INLINE bool validate_StringRules_add_not_in(validate_StringRules* msg, upb_S
|
|
4733
4778
|
return true;
|
4734
4779
|
}
|
4735
4780
|
UPB_INLINE void validate_StringRules_set_email(validate_StringRules *msg, bool value) {
|
4736
|
-
const upb_MiniTableField field = {12, UPB_SIZE(
|
4737
|
-
|
4781
|
+
const upb_MiniTableField field = {12, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4782
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4738
4783
|
}
|
4739
4784
|
UPB_INLINE void validate_StringRules_set_hostname(validate_StringRules *msg, bool value) {
|
4740
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
4741
|
-
|
4785
|
+
const upb_MiniTableField field = {13, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4786
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4742
4787
|
}
|
4743
4788
|
UPB_INLINE void validate_StringRules_set_ip(validate_StringRules *msg, bool value) {
|
4744
|
-
const upb_MiniTableField field = {14, UPB_SIZE(
|
4745
|
-
|
4789
|
+
const upb_MiniTableField field = {14, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4790
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4746
4791
|
}
|
4747
4792
|
UPB_INLINE void validate_StringRules_set_ipv4(validate_StringRules *msg, bool value) {
|
4748
|
-
const upb_MiniTableField field = {15, UPB_SIZE(
|
4749
|
-
|
4793
|
+
const upb_MiniTableField field = {15, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4794
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4750
4795
|
}
|
4751
4796
|
UPB_INLINE void validate_StringRules_set_ipv6(validate_StringRules *msg, bool value) {
|
4752
|
-
const upb_MiniTableField field = {16, UPB_SIZE(
|
4753
|
-
|
4797
|
+
const upb_MiniTableField field = {16, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4798
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4754
4799
|
}
|
4755
4800
|
UPB_INLINE void validate_StringRules_set_uri(validate_StringRules *msg, bool value) {
|
4756
|
-
const upb_MiniTableField field = {17, UPB_SIZE(
|
4757
|
-
|
4801
|
+
const upb_MiniTableField field = {17, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4802
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4758
4803
|
}
|
4759
4804
|
UPB_INLINE void validate_StringRules_set_uri_ref(validate_StringRules *msg, bool value) {
|
4760
|
-
const upb_MiniTableField field = {18, UPB_SIZE(
|
4761
|
-
|
4805
|
+
const upb_MiniTableField field = {18, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4806
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4762
4807
|
}
|
4763
4808
|
UPB_INLINE void validate_StringRules_set_len(validate_StringRules *msg, uint64_t value) {
|
4764
|
-
const upb_MiniTableField field = {19, UPB_SIZE(
|
4765
|
-
|
4809
|
+
const upb_MiniTableField field = {19, UPB_SIZE(112, 168), 73, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4810
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4766
4811
|
}
|
4767
4812
|
UPB_INLINE void validate_StringRules_set_len_bytes(validate_StringRules *msg, uint64_t value) {
|
4768
|
-
const upb_MiniTableField field = {20, UPB_SIZE(
|
4769
|
-
|
4813
|
+
const upb_MiniTableField field = {20, UPB_SIZE(120, 176), 74, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4814
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4770
4815
|
}
|
4771
4816
|
UPB_INLINE void validate_StringRules_set_address(validate_StringRules *msg, bool value) {
|
4772
|
-
const upb_MiniTableField field = {21, UPB_SIZE(
|
4773
|
-
|
4817
|
+
const upb_MiniTableField field = {21, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4818
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4774
4819
|
}
|
4775
4820
|
UPB_INLINE void validate_StringRules_set_uuid(validate_StringRules *msg, bool value) {
|
4776
|
-
const upb_MiniTableField field = {22, UPB_SIZE(
|
4777
|
-
|
4821
|
+
const upb_MiniTableField field = {22, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4822
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4778
4823
|
}
|
4779
4824
|
UPB_INLINE void validate_StringRules_set_not_contains(validate_StringRules *msg, upb_StringView value) {
|
4780
|
-
const upb_MiniTableField field = {23, UPB_SIZE(
|
4781
|
-
|
4825
|
+
const upb_MiniTableField field = {23, UPB_SIZE(68, 104), 75, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4826
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4782
4827
|
}
|
4783
4828
|
UPB_INLINE void validate_StringRules_set_well_known_regex(validate_StringRules *msg, int32_t value) {
|
4784
|
-
const upb_MiniTableField field = {24, UPB_SIZE(
|
4785
|
-
|
4829
|
+
const upb_MiniTableField field = {24, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
4830
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4786
4831
|
}
|
4787
4832
|
UPB_INLINE void validate_StringRules_set_strict(validate_StringRules *msg, bool value) {
|
4788
|
-
const upb_MiniTableField field = {25,
|
4789
|
-
|
4833
|
+
const upb_MiniTableField field = {25, 10, 76, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4834
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4790
4835
|
}
|
4791
4836
|
UPB_INLINE void validate_StringRules_set_ignore_empty(validate_StringRules *msg, bool value) {
|
4792
|
-
const upb_MiniTableField field = {26,
|
4793
|
-
|
4837
|
+
const upb_MiniTableField field = {26, 11, 77, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4838
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
4794
4839
|
}
|
4795
4840
|
|
4796
4841
|
/* validate.BytesRules */
|
@@ -4836,128 +4881,128 @@ typedef enum {
|
|
4836
4881
|
validate_BytesRules_well_known_NOT_SET = 0
|
4837
4882
|
} validate_BytesRules_well_known_oneofcases;
|
4838
4883
|
UPB_INLINE validate_BytesRules_well_known_oneofcases validate_BytesRules_well_known_case(const validate_BytesRules* msg) {
|
4839
|
-
const upb_MiniTableField field = {10,
|
4884
|
+
const upb_MiniTableField field = {10, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
4840
4885
|
return (validate_BytesRules_well_known_oneofcases)upb_Message_WhichOneofFieldNumber(
|
4841
4886
|
UPB_UPCAST(msg), &field);
|
4842
4887
|
}
|
4843
4888
|
UPB_INLINE void validate_BytesRules_clear_const(validate_BytesRules* msg) {
|
4844
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
4889
|
+
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4845
4890
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4846
4891
|
}
|
4847
4892
|
UPB_INLINE upb_StringView validate_BytesRules_const(const validate_BytesRules* msg) {
|
4848
4893
|
upb_StringView default_val = upb_StringView_FromString("");
|
4849
4894
|
upb_StringView ret;
|
4850
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
4895
|
+
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4851
4896
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4852
4897
|
&default_val, &ret);
|
4853
4898
|
return ret;
|
4854
4899
|
}
|
4855
4900
|
UPB_INLINE bool validate_BytesRules_has_const(const validate_BytesRules* msg) {
|
4856
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
4901
|
+
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4857
4902
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4858
4903
|
}
|
4859
4904
|
UPB_INLINE void validate_BytesRules_clear_min_len(validate_BytesRules* msg) {
|
4860
|
-
const upb_MiniTableField field = {2,
|
4905
|
+
const upb_MiniTableField field = {2, UPB_SIZE(64, 96), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4861
4906
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4862
4907
|
}
|
4863
4908
|
UPB_INLINE uint64_t validate_BytesRules_min_len(const validate_BytesRules* msg) {
|
4864
4909
|
uint64_t default_val = (uint64_t)0ull;
|
4865
4910
|
uint64_t ret;
|
4866
|
-
const upb_MiniTableField field = {2,
|
4911
|
+
const upb_MiniTableField field = {2, UPB_SIZE(64, 96), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4867
4912
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4868
4913
|
&default_val, &ret);
|
4869
4914
|
return ret;
|
4870
4915
|
}
|
4871
4916
|
UPB_INLINE bool validate_BytesRules_has_min_len(const validate_BytesRules* msg) {
|
4872
|
-
const upb_MiniTableField field = {2,
|
4917
|
+
const upb_MiniTableField field = {2, UPB_SIZE(64, 96), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4873
4918
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4874
4919
|
}
|
4875
4920
|
UPB_INLINE void validate_BytesRules_clear_max_len(validate_BytesRules* msg) {
|
4876
|
-
const upb_MiniTableField field = {3,
|
4921
|
+
const upb_MiniTableField field = {3, UPB_SIZE(72, 104), 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4877
4922
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4878
4923
|
}
|
4879
4924
|
UPB_INLINE uint64_t validate_BytesRules_max_len(const validate_BytesRules* msg) {
|
4880
4925
|
uint64_t default_val = (uint64_t)0ull;
|
4881
4926
|
uint64_t ret;
|
4882
|
-
const upb_MiniTableField field = {3,
|
4927
|
+
const upb_MiniTableField field = {3, UPB_SIZE(72, 104), 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4883
4928
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4884
4929
|
&default_val, &ret);
|
4885
4930
|
return ret;
|
4886
4931
|
}
|
4887
4932
|
UPB_INLINE bool validate_BytesRules_has_max_len(const validate_BytesRules* msg) {
|
4888
|
-
const upb_MiniTableField field = {3,
|
4933
|
+
const upb_MiniTableField field = {3, UPB_SIZE(72, 104), 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
4889
4934
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4890
4935
|
}
|
4891
4936
|
UPB_INLINE void validate_BytesRules_clear_pattern(validate_BytesRules* msg) {
|
4892
|
-
const upb_MiniTableField field = {4,
|
4937
|
+
const upb_MiniTableField field = {4, 32, 67, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4893
4938
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4894
4939
|
}
|
4895
4940
|
UPB_INLINE upb_StringView validate_BytesRules_pattern(const validate_BytesRules* msg) {
|
4896
4941
|
upb_StringView default_val = upb_StringView_FromString("");
|
4897
4942
|
upb_StringView ret;
|
4898
|
-
const upb_MiniTableField field = {4,
|
4943
|
+
const upb_MiniTableField field = {4, 32, 67, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4899
4944
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4900
4945
|
&default_val, &ret);
|
4901
4946
|
return ret;
|
4902
4947
|
}
|
4903
4948
|
UPB_INLINE bool validate_BytesRules_has_pattern(const validate_BytesRules* msg) {
|
4904
|
-
const upb_MiniTableField field = {4,
|
4949
|
+
const upb_MiniTableField field = {4, 32, 67, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4905
4950
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4906
4951
|
}
|
4907
4952
|
UPB_INLINE void validate_BytesRules_clear_prefix(validate_BytesRules* msg) {
|
4908
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
4953
|
+
const upb_MiniTableField field = {5, UPB_SIZE(40, 48), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4909
4954
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4910
4955
|
}
|
4911
4956
|
UPB_INLINE upb_StringView validate_BytesRules_prefix(const validate_BytesRules* msg) {
|
4912
4957
|
upb_StringView default_val = upb_StringView_FromString("");
|
4913
4958
|
upb_StringView ret;
|
4914
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
4959
|
+
const upb_MiniTableField field = {5, UPB_SIZE(40, 48), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4915
4960
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4916
4961
|
&default_val, &ret);
|
4917
4962
|
return ret;
|
4918
4963
|
}
|
4919
4964
|
UPB_INLINE bool validate_BytesRules_has_prefix(const validate_BytesRules* msg) {
|
4920
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
4965
|
+
const upb_MiniTableField field = {5, UPB_SIZE(40, 48), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4921
4966
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4922
4967
|
}
|
4923
4968
|
UPB_INLINE void validate_BytesRules_clear_suffix(validate_BytesRules* msg) {
|
4924
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
4969
|
+
const upb_MiniTableField field = {6, UPB_SIZE(48, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4925
4970
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4926
4971
|
}
|
4927
4972
|
UPB_INLINE upb_StringView validate_BytesRules_suffix(const validate_BytesRules* msg) {
|
4928
4973
|
upb_StringView default_val = upb_StringView_FromString("");
|
4929
4974
|
upb_StringView ret;
|
4930
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
4975
|
+
const upb_MiniTableField field = {6, UPB_SIZE(48, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4931
4976
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4932
4977
|
&default_val, &ret);
|
4933
4978
|
return ret;
|
4934
4979
|
}
|
4935
4980
|
UPB_INLINE bool validate_BytesRules_has_suffix(const validate_BytesRules* msg) {
|
4936
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
4981
|
+
const upb_MiniTableField field = {6, UPB_SIZE(48, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4937
4982
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4938
4983
|
}
|
4939
4984
|
UPB_INLINE void validate_BytesRules_clear_contains(validate_BytesRules* msg) {
|
4940
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
4985
|
+
const upb_MiniTableField field = {7, UPB_SIZE(56, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4941
4986
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4942
4987
|
}
|
4943
4988
|
UPB_INLINE upb_StringView validate_BytesRules_contains(const validate_BytesRules* msg) {
|
4944
4989
|
upb_StringView default_val = upb_StringView_FromString("");
|
4945
4990
|
upb_StringView ret;
|
4946
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
4991
|
+
const upb_MiniTableField field = {7, UPB_SIZE(56, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4947
4992
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
4948
4993
|
&default_val, &ret);
|
4949
4994
|
return ret;
|
4950
4995
|
}
|
4951
4996
|
UPB_INLINE bool validate_BytesRules_has_contains(const validate_BytesRules* msg) {
|
4952
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
4997
|
+
const upb_MiniTableField field = {7, UPB_SIZE(56, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
4953
4998
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
4954
4999
|
}
|
4955
5000
|
UPB_INLINE void validate_BytesRules_clear_in(validate_BytesRules* msg) {
|
4956
|
-
const upb_MiniTableField field = {8, UPB_SIZE(12,
|
5001
|
+
const upb_MiniTableField field = {8, UPB_SIZE(12, 112), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4957
5002
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4958
5003
|
}
|
4959
5004
|
UPB_INLINE upb_StringView const* validate_BytesRules_in(const validate_BytesRules* msg, size_t* size) {
|
4960
|
-
const upb_MiniTableField field = {8, UPB_SIZE(12,
|
5005
|
+
const upb_MiniTableField field = {8, UPB_SIZE(12, 112), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4961
5006
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
4962
5007
|
if (arr) {
|
4963
5008
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -4968,7 +5013,7 @@ UPB_INLINE upb_StringView const* validate_BytesRules_in(const validate_BytesRule
|
|
4968
5013
|
}
|
4969
5014
|
}
|
4970
5015
|
UPB_INLINE const upb_Array* _validate_BytesRules_in_upb_array(const validate_BytesRules* msg, size_t* size) {
|
4971
|
-
const upb_MiniTableField field = {8, UPB_SIZE(12,
|
5016
|
+
const upb_MiniTableField field = {8, UPB_SIZE(12, 112), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4972
5017
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
4973
5018
|
if (size) {
|
4974
5019
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -4976,7 +5021,7 @@ UPB_INLINE const upb_Array* _validate_BytesRules_in_upb_array(const validate_Byt
|
|
4976
5021
|
return arr;
|
4977
5022
|
}
|
4978
5023
|
UPB_INLINE upb_Array* _validate_BytesRules_in_mutable_upb_array(validate_BytesRules* msg, size_t* size, upb_Arena* arena) {
|
4979
|
-
const upb_MiniTableField field = {8, UPB_SIZE(12,
|
5024
|
+
const upb_MiniTableField field = {8, UPB_SIZE(12, 112), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4980
5025
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
4981
5026
|
&field, arena);
|
4982
5027
|
if (size) {
|
@@ -4985,11 +5030,11 @@ UPB_INLINE upb_Array* _validate_BytesRules_in_mutable_upb_array(validate_BytesRu
|
|
4985
5030
|
return arr;
|
4986
5031
|
}
|
4987
5032
|
UPB_INLINE void validate_BytesRules_clear_not_in(validate_BytesRules* msg) {
|
4988
|
-
const upb_MiniTableField field = {9, UPB_SIZE(16,
|
5033
|
+
const upb_MiniTableField field = {9, UPB_SIZE(16, 120), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4989
5034
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
4990
5035
|
}
|
4991
5036
|
UPB_INLINE upb_StringView const* validate_BytesRules_not_in(const validate_BytesRules* msg, size_t* size) {
|
4992
|
-
const upb_MiniTableField field = {9, UPB_SIZE(16,
|
5037
|
+
const upb_MiniTableField field = {9, UPB_SIZE(16, 120), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
4993
5038
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
4994
5039
|
if (arr) {
|
4995
5040
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -5000,7 +5045,7 @@ UPB_INLINE upb_StringView const* validate_BytesRules_not_in(const validate_Bytes
|
|
5000
5045
|
}
|
5001
5046
|
}
|
5002
5047
|
UPB_INLINE const upb_Array* _validate_BytesRules_not_in_upb_array(const validate_BytesRules* msg, size_t* size) {
|
5003
|
-
const upb_MiniTableField field = {9, UPB_SIZE(16,
|
5048
|
+
const upb_MiniTableField field = {9, UPB_SIZE(16, 120), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5004
5049
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
5005
5050
|
if (size) {
|
5006
5051
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -5008,7 +5053,7 @@ UPB_INLINE const upb_Array* _validate_BytesRules_not_in_upb_array(const validate
|
|
5008
5053
|
return arr;
|
5009
5054
|
}
|
5010
5055
|
UPB_INLINE upb_Array* _validate_BytesRules_not_in_mutable_upb_array(validate_BytesRules* msg, size_t* size, upb_Arena* arena) {
|
5011
|
-
const upb_MiniTableField field = {9, UPB_SIZE(16,
|
5056
|
+
const upb_MiniTableField field = {9, UPB_SIZE(16, 120), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5012
5057
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
5013
5058
|
&field, arena);
|
5014
5059
|
if (size) {
|
@@ -5017,116 +5062,116 @@ UPB_INLINE upb_Array* _validate_BytesRules_not_in_mutable_upb_array(validate_Byt
|
|
5017
5062
|
return arr;
|
5018
5063
|
}
|
5019
5064
|
UPB_INLINE void validate_BytesRules_clear_ip(validate_BytesRules* msg) {
|
5020
|
-
const upb_MiniTableField field = {10,
|
5065
|
+
const upb_MiniTableField field = {10, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5021
5066
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5022
5067
|
}
|
5023
5068
|
UPB_INLINE bool validate_BytesRules_ip(const validate_BytesRules* msg) {
|
5024
5069
|
bool default_val = false;
|
5025
5070
|
bool ret;
|
5026
|
-
const upb_MiniTableField field = {10,
|
5071
|
+
const upb_MiniTableField field = {10, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5027
5072
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5028
5073
|
&default_val, &ret);
|
5029
5074
|
return ret;
|
5030
5075
|
}
|
5031
5076
|
UPB_INLINE bool validate_BytesRules_has_ip(const validate_BytesRules* msg) {
|
5032
|
-
const upb_MiniTableField field = {10,
|
5077
|
+
const upb_MiniTableField field = {10, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5033
5078
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5034
5079
|
}
|
5035
5080
|
UPB_INLINE void validate_BytesRules_clear_ipv4(validate_BytesRules* msg) {
|
5036
|
-
const upb_MiniTableField field = {11,
|
5081
|
+
const upb_MiniTableField field = {11, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5037
5082
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5038
5083
|
}
|
5039
5084
|
UPB_INLINE bool validate_BytesRules_ipv4(const validate_BytesRules* msg) {
|
5040
5085
|
bool default_val = false;
|
5041
5086
|
bool ret;
|
5042
|
-
const upb_MiniTableField field = {11,
|
5087
|
+
const upb_MiniTableField field = {11, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5043
5088
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5044
5089
|
&default_val, &ret);
|
5045
5090
|
return ret;
|
5046
5091
|
}
|
5047
5092
|
UPB_INLINE bool validate_BytesRules_has_ipv4(const validate_BytesRules* msg) {
|
5048
|
-
const upb_MiniTableField field = {11,
|
5093
|
+
const upb_MiniTableField field = {11, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5049
5094
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5050
5095
|
}
|
5051
5096
|
UPB_INLINE void validate_BytesRules_clear_ipv6(validate_BytesRules* msg) {
|
5052
|
-
const upb_MiniTableField field = {12,
|
5097
|
+
const upb_MiniTableField field = {12, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5053
5098
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5054
5099
|
}
|
5055
5100
|
UPB_INLINE bool validate_BytesRules_ipv6(const validate_BytesRules* msg) {
|
5056
5101
|
bool default_val = false;
|
5057
5102
|
bool ret;
|
5058
|
-
const upb_MiniTableField field = {12,
|
5103
|
+
const upb_MiniTableField field = {12, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5059
5104
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5060
5105
|
&default_val, &ret);
|
5061
5106
|
return ret;
|
5062
5107
|
}
|
5063
5108
|
UPB_INLINE bool validate_BytesRules_has_ipv6(const validate_BytesRules* msg) {
|
5064
|
-
const upb_MiniTableField field = {12,
|
5109
|
+
const upb_MiniTableField field = {12, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5065
5110
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5066
5111
|
}
|
5067
5112
|
UPB_INLINE void validate_BytesRules_clear_len(validate_BytesRules* msg) {
|
5068
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
5113
|
+
const upb_MiniTableField field = {13, UPB_SIZE(80, 128), 71, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5069
5114
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5070
5115
|
}
|
5071
5116
|
UPB_INLINE uint64_t validate_BytesRules_len(const validate_BytesRules* msg) {
|
5072
5117
|
uint64_t default_val = (uint64_t)0ull;
|
5073
5118
|
uint64_t ret;
|
5074
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
5119
|
+
const upb_MiniTableField field = {13, UPB_SIZE(80, 128), 71, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5075
5120
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5076
5121
|
&default_val, &ret);
|
5077
5122
|
return ret;
|
5078
5123
|
}
|
5079
5124
|
UPB_INLINE bool validate_BytesRules_has_len(const validate_BytesRules* msg) {
|
5080
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
5125
|
+
const upb_MiniTableField field = {13, UPB_SIZE(80, 128), 71, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5081
5126
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5082
5127
|
}
|
5083
5128
|
UPB_INLINE void validate_BytesRules_clear_ignore_empty(validate_BytesRules* msg) {
|
5084
|
-
const upb_MiniTableField field = {14,
|
5129
|
+
const upb_MiniTableField field = {14, 10, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5085
5130
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5086
5131
|
}
|
5087
5132
|
UPB_INLINE bool validate_BytesRules_ignore_empty(const validate_BytesRules* msg) {
|
5088
5133
|
bool default_val = false;
|
5089
5134
|
bool ret;
|
5090
|
-
const upb_MiniTableField field = {14,
|
5135
|
+
const upb_MiniTableField field = {14, 10, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5091
5136
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5092
5137
|
&default_val, &ret);
|
5093
5138
|
return ret;
|
5094
5139
|
}
|
5095
5140
|
UPB_INLINE bool validate_BytesRules_has_ignore_empty(const validate_BytesRules* msg) {
|
5096
|
-
const upb_MiniTableField field = {14,
|
5141
|
+
const upb_MiniTableField field = {14, 10, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5097
5142
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5098
5143
|
}
|
5099
5144
|
|
5100
5145
|
UPB_INLINE void validate_BytesRules_set_const(validate_BytesRules *msg, upb_StringView value) {
|
5101
|
-
const upb_MiniTableField field = {1, UPB_SIZE(
|
5102
|
-
|
5146
|
+
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
5147
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5103
5148
|
}
|
5104
5149
|
UPB_INLINE void validate_BytesRules_set_min_len(validate_BytesRules *msg, uint64_t value) {
|
5105
|
-
const upb_MiniTableField field = {2,
|
5106
|
-
|
5150
|
+
const upb_MiniTableField field = {2, UPB_SIZE(64, 96), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5151
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5107
5152
|
}
|
5108
5153
|
UPB_INLINE void validate_BytesRules_set_max_len(validate_BytesRules *msg, uint64_t value) {
|
5109
|
-
const upb_MiniTableField field = {3,
|
5110
|
-
|
5154
|
+
const upb_MiniTableField field = {3, UPB_SIZE(72, 104), 66, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5155
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5111
5156
|
}
|
5112
5157
|
UPB_INLINE void validate_BytesRules_set_pattern(validate_BytesRules *msg, upb_StringView value) {
|
5113
|
-
const upb_MiniTableField field = {4,
|
5114
|
-
|
5158
|
+
const upb_MiniTableField field = {4, 32, 67, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
5159
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5115
5160
|
}
|
5116
5161
|
UPB_INLINE void validate_BytesRules_set_prefix(validate_BytesRules *msg, upb_StringView value) {
|
5117
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
5118
|
-
|
5162
|
+
const upb_MiniTableField field = {5, UPB_SIZE(40, 48), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
5163
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5119
5164
|
}
|
5120
5165
|
UPB_INLINE void validate_BytesRules_set_suffix(validate_BytesRules *msg, upb_StringView value) {
|
5121
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
5122
|
-
|
5166
|
+
const upb_MiniTableField field = {6, UPB_SIZE(48, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
5167
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5123
5168
|
}
|
5124
5169
|
UPB_INLINE void validate_BytesRules_set_contains(validate_BytesRules *msg, upb_StringView value) {
|
5125
|
-
const upb_MiniTableField field = {7, UPB_SIZE(
|
5126
|
-
|
5170
|
+
const upb_MiniTableField field = {7, UPB_SIZE(56, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
|
5171
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5127
5172
|
}
|
5128
5173
|
UPB_INLINE upb_StringView* validate_BytesRules_mutable_in(validate_BytesRules* msg, size_t* size) {
|
5129
|
-
upb_MiniTableField field = {8, UPB_SIZE(12,
|
5174
|
+
upb_MiniTableField field = {8, UPB_SIZE(12, 112), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5130
5175
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
5131
5176
|
if (arr) {
|
5132
5177
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -5137,12 +5182,12 @@ UPB_INLINE upb_StringView* validate_BytesRules_mutable_in(validate_BytesRules* m
|
|
5137
5182
|
}
|
5138
5183
|
}
|
5139
5184
|
UPB_INLINE upb_StringView* validate_BytesRules_resize_in(validate_BytesRules* msg, size_t size, upb_Arena* arena) {
|
5140
|
-
upb_MiniTableField field = {8, UPB_SIZE(12,
|
5185
|
+
upb_MiniTableField field = {8, UPB_SIZE(12, 112), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5141
5186
|
return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
5142
5187
|
&field, size, arena);
|
5143
5188
|
}
|
5144
5189
|
UPB_INLINE bool validate_BytesRules_add_in(validate_BytesRules* msg, upb_StringView val, upb_Arena* arena) {
|
5145
|
-
upb_MiniTableField field = {8, UPB_SIZE(12,
|
5190
|
+
upb_MiniTableField field = {8, UPB_SIZE(12, 112), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5146
5191
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
5147
5192
|
UPB_UPCAST(msg), &field, arena);
|
5148
5193
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -5154,7 +5199,7 @@ UPB_INLINE bool validate_BytesRules_add_in(validate_BytesRules* msg, upb_StringV
|
|
5154
5199
|
return true;
|
5155
5200
|
}
|
5156
5201
|
UPB_INLINE upb_StringView* validate_BytesRules_mutable_not_in(validate_BytesRules* msg, size_t* size) {
|
5157
|
-
upb_MiniTableField field = {9, UPB_SIZE(16,
|
5202
|
+
upb_MiniTableField field = {9, UPB_SIZE(16, 120), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5158
5203
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
5159
5204
|
if (arr) {
|
5160
5205
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -5165,12 +5210,12 @@ UPB_INLINE upb_StringView* validate_BytesRules_mutable_not_in(validate_BytesRule
|
|
5165
5210
|
}
|
5166
5211
|
}
|
5167
5212
|
UPB_INLINE upb_StringView* validate_BytesRules_resize_not_in(validate_BytesRules* msg, size_t size, upb_Arena* arena) {
|
5168
|
-
upb_MiniTableField field = {9, UPB_SIZE(16,
|
5213
|
+
upb_MiniTableField field = {9, UPB_SIZE(16, 120), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5169
5214
|
return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
5170
5215
|
&field, size, arena);
|
5171
5216
|
}
|
5172
5217
|
UPB_INLINE bool validate_BytesRules_add_not_in(validate_BytesRules* msg, upb_StringView val, upb_Arena* arena) {
|
5173
|
-
upb_MiniTableField field = {9, UPB_SIZE(16,
|
5218
|
+
upb_MiniTableField field = {9, UPB_SIZE(16, 120), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5174
5219
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
5175
5220
|
UPB_UPCAST(msg), &field, arena);
|
5176
5221
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -5182,24 +5227,24 @@ UPB_INLINE bool validate_BytesRules_add_not_in(validate_BytesRules* msg, upb_Str
|
|
5182
5227
|
return true;
|
5183
5228
|
}
|
5184
5229
|
UPB_INLINE void validate_BytesRules_set_ip(validate_BytesRules *msg, bool value) {
|
5185
|
-
const upb_MiniTableField field = {10,
|
5186
|
-
|
5230
|
+
const upb_MiniTableField field = {10, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5231
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5187
5232
|
}
|
5188
5233
|
UPB_INLINE void validate_BytesRules_set_ipv4(validate_BytesRules *msg, bool value) {
|
5189
|
-
const upb_MiniTableField field = {11,
|
5190
|
-
|
5234
|
+
const upb_MiniTableField field = {11, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5235
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5191
5236
|
}
|
5192
5237
|
UPB_INLINE void validate_BytesRules_set_ipv6(validate_BytesRules *msg, bool value) {
|
5193
|
-
const upb_MiniTableField field = {12,
|
5194
|
-
|
5238
|
+
const upb_MiniTableField field = {12, 11, UPB_SIZE(-21, -13), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5239
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5195
5240
|
}
|
5196
5241
|
UPB_INLINE void validate_BytesRules_set_len(validate_BytesRules *msg, uint64_t value) {
|
5197
|
-
const upb_MiniTableField field = {13, UPB_SIZE(
|
5198
|
-
|
5242
|
+
const upb_MiniTableField field = {13, UPB_SIZE(80, 128), 71, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5243
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5199
5244
|
}
|
5200
5245
|
UPB_INLINE void validate_BytesRules_set_ignore_empty(validate_BytesRules *msg, bool value) {
|
5201
|
-
const upb_MiniTableField field = {14,
|
5202
|
-
|
5246
|
+
const upb_MiniTableField field = {14, 10, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5247
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5203
5248
|
}
|
5204
5249
|
|
5205
5250
|
/* validate.EnumRules */
|
@@ -5255,27 +5300,27 @@ UPB_INLINE bool validate_EnumRules_has_const(const validate_EnumRules* msg) {
|
|
5255
5300
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5256
5301
|
}
|
5257
5302
|
UPB_INLINE void validate_EnumRules_clear_defined_only(validate_EnumRules* msg) {
|
5258
|
-
const upb_MiniTableField field = {2,
|
5303
|
+
const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5259
5304
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5260
5305
|
}
|
5261
5306
|
UPB_INLINE bool validate_EnumRules_defined_only(const validate_EnumRules* msg) {
|
5262
5307
|
bool default_val = false;
|
5263
5308
|
bool ret;
|
5264
|
-
const upb_MiniTableField field = {2,
|
5309
|
+
const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5265
5310
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5266
5311
|
&default_val, &ret);
|
5267
5312
|
return ret;
|
5268
5313
|
}
|
5269
5314
|
UPB_INLINE bool validate_EnumRules_has_defined_only(const validate_EnumRules* msg) {
|
5270
|
-
const upb_MiniTableField field = {2,
|
5315
|
+
const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5271
5316
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5272
5317
|
}
|
5273
5318
|
UPB_INLINE void validate_EnumRules_clear_in(validate_EnumRules* msg) {
|
5274
|
-
const upb_MiniTableField field = {3,
|
5319
|
+
const upb_MiniTableField field = {3, 16, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5275
5320
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5276
5321
|
}
|
5277
5322
|
UPB_INLINE int32_t const* validate_EnumRules_in(const validate_EnumRules* msg, size_t* size) {
|
5278
|
-
const upb_MiniTableField field = {3,
|
5323
|
+
const upb_MiniTableField field = {3, 16, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5279
5324
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
5280
5325
|
if (arr) {
|
5281
5326
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -5286,7 +5331,7 @@ UPB_INLINE int32_t const* validate_EnumRules_in(const validate_EnumRules* msg, s
|
|
5286
5331
|
}
|
5287
5332
|
}
|
5288
5333
|
UPB_INLINE const upb_Array* _validate_EnumRules_in_upb_array(const validate_EnumRules* msg, size_t* size) {
|
5289
|
-
const upb_MiniTableField field = {3,
|
5334
|
+
const upb_MiniTableField field = {3, 16, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5290
5335
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
5291
5336
|
if (size) {
|
5292
5337
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -5294,7 +5339,7 @@ UPB_INLINE const upb_Array* _validate_EnumRules_in_upb_array(const validate_Enum
|
|
5294
5339
|
return arr;
|
5295
5340
|
}
|
5296
5341
|
UPB_INLINE upb_Array* _validate_EnumRules_in_mutable_upb_array(validate_EnumRules* msg, size_t* size, upb_Arena* arena) {
|
5297
|
-
const upb_MiniTableField field = {3,
|
5342
|
+
const upb_MiniTableField field = {3, 16, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5298
5343
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
5299
5344
|
&field, arena);
|
5300
5345
|
if (size) {
|
@@ -5303,11 +5348,11 @@ UPB_INLINE upb_Array* _validate_EnumRules_in_mutable_upb_array(validate_EnumRule
|
|
5303
5348
|
return arr;
|
5304
5349
|
}
|
5305
5350
|
UPB_INLINE void validate_EnumRules_clear_not_in(validate_EnumRules* msg) {
|
5306
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
5351
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5307
5352
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5308
5353
|
}
|
5309
5354
|
UPB_INLINE int32_t const* validate_EnumRules_not_in(const validate_EnumRules* msg, size_t* size) {
|
5310
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
5355
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5311
5356
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
5312
5357
|
if (arr) {
|
5313
5358
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -5318,7 +5363,7 @@ UPB_INLINE int32_t const* validate_EnumRules_not_in(const validate_EnumRules* ms
|
|
5318
5363
|
}
|
5319
5364
|
}
|
5320
5365
|
UPB_INLINE const upb_Array* _validate_EnumRules_not_in_upb_array(const validate_EnumRules* msg, size_t* size) {
|
5321
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
5366
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5322
5367
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
5323
5368
|
if (size) {
|
5324
5369
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -5326,7 +5371,7 @@ UPB_INLINE const upb_Array* _validate_EnumRules_not_in_upb_array(const validate_
|
|
5326
5371
|
return arr;
|
5327
5372
|
}
|
5328
5373
|
UPB_INLINE upb_Array* _validate_EnumRules_not_in_mutable_upb_array(validate_EnumRules* msg, size_t* size, upb_Arena* arena) {
|
5329
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
5374
|
+
const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5330
5375
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
5331
5376
|
&field, arena);
|
5332
5377
|
if (size) {
|
@@ -5337,14 +5382,14 @@ UPB_INLINE upb_Array* _validate_EnumRules_not_in_mutable_upb_array(validate_Enum
|
|
5337
5382
|
|
5338
5383
|
UPB_INLINE void validate_EnumRules_set_const(validate_EnumRules *msg, int32_t value) {
|
5339
5384
|
const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
|
5340
|
-
|
5385
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5341
5386
|
}
|
5342
5387
|
UPB_INLINE void validate_EnumRules_set_defined_only(validate_EnumRules *msg, bool value) {
|
5343
|
-
const upb_MiniTableField field = {2,
|
5344
|
-
|
5388
|
+
const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5389
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5345
5390
|
}
|
5346
5391
|
UPB_INLINE int32_t* validate_EnumRules_mutable_in(validate_EnumRules* msg, size_t* size) {
|
5347
|
-
upb_MiniTableField field = {3,
|
5392
|
+
upb_MiniTableField field = {3, 16, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5348
5393
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
5349
5394
|
if (arr) {
|
5350
5395
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -5355,12 +5400,12 @@ UPB_INLINE int32_t* validate_EnumRules_mutable_in(validate_EnumRules* msg, size_
|
|
5355
5400
|
}
|
5356
5401
|
}
|
5357
5402
|
UPB_INLINE int32_t* validate_EnumRules_resize_in(validate_EnumRules* msg, size_t size, upb_Arena* arena) {
|
5358
|
-
upb_MiniTableField field = {3,
|
5403
|
+
upb_MiniTableField field = {3, 16, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5359
5404
|
return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
5360
5405
|
&field, size, arena);
|
5361
5406
|
}
|
5362
5407
|
UPB_INLINE bool validate_EnumRules_add_in(validate_EnumRules* msg, int32_t val, upb_Arena* arena) {
|
5363
|
-
upb_MiniTableField field = {3,
|
5408
|
+
upb_MiniTableField field = {3, 16, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5364
5409
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
5365
5410
|
UPB_UPCAST(msg), &field, arena);
|
5366
5411
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -5372,7 +5417,7 @@ UPB_INLINE bool validate_EnumRules_add_in(validate_EnumRules* msg, int32_t val,
|
|
5372
5417
|
return true;
|
5373
5418
|
}
|
5374
5419
|
UPB_INLINE int32_t* validate_EnumRules_mutable_not_in(validate_EnumRules* msg, size_t* size) {
|
5375
|
-
upb_MiniTableField field = {4, UPB_SIZE(
|
5420
|
+
upb_MiniTableField field = {4, UPB_SIZE(20, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5376
5421
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
5377
5422
|
if (arr) {
|
5378
5423
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -5383,12 +5428,12 @@ UPB_INLINE int32_t* validate_EnumRules_mutable_not_in(validate_EnumRules* msg, s
|
|
5383
5428
|
}
|
5384
5429
|
}
|
5385
5430
|
UPB_INLINE int32_t* validate_EnumRules_resize_not_in(validate_EnumRules* msg, size_t size, upb_Arena* arena) {
|
5386
|
-
upb_MiniTableField field = {4, UPB_SIZE(
|
5431
|
+
upb_MiniTableField field = {4, UPB_SIZE(20, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5387
5432
|
return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
|
5388
5433
|
&field, size, arena);
|
5389
5434
|
}
|
5390
5435
|
UPB_INLINE bool validate_EnumRules_add_not_in(validate_EnumRules* msg, int32_t val, upb_Arena* arena) {
|
5391
|
-
upb_MiniTableField field = {4, UPB_SIZE(
|
5436
|
+
upb_MiniTableField field = {4, UPB_SIZE(20, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5392
5437
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
5393
5438
|
UPB_UPCAST(msg), &field, arena);
|
5394
5439
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -5471,11 +5516,11 @@ UPB_INLINE bool validate_MessageRules_has_required(const validate_MessageRules*
|
|
5471
5516
|
|
5472
5517
|
UPB_INLINE void validate_MessageRules_set_skip(validate_MessageRules *msg, bool value) {
|
5473
5518
|
const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5474
|
-
|
5519
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5475
5520
|
}
|
5476
5521
|
UPB_INLINE void validate_MessageRules_set_required(validate_MessageRules *msg, bool value) {
|
5477
5522
|
const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5478
|
-
|
5523
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5479
5524
|
}
|
5480
5525
|
|
5481
5526
|
/* validate.RepeatedRules */
|
@@ -5515,35 +5560,35 @@ UPB_INLINE char* validate_RepeatedRules_serialize_ex(const validate_RepeatedRule
|
|
5515
5560
|
return ptr;
|
5516
5561
|
}
|
5517
5562
|
UPB_INLINE void validate_RepeatedRules_clear_min_items(validate_RepeatedRules* msg) {
|
5518
|
-
const upb_MiniTableField field = {1,
|
5563
|
+
const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5519
5564
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5520
5565
|
}
|
5521
5566
|
UPB_INLINE uint64_t validate_RepeatedRules_min_items(const validate_RepeatedRules* msg) {
|
5522
5567
|
uint64_t default_val = (uint64_t)0ull;
|
5523
5568
|
uint64_t ret;
|
5524
|
-
const upb_MiniTableField field = {1,
|
5569
|
+
const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5525
5570
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5526
5571
|
&default_val, &ret);
|
5527
5572
|
return ret;
|
5528
5573
|
}
|
5529
5574
|
UPB_INLINE bool validate_RepeatedRules_has_min_items(const validate_RepeatedRules* msg) {
|
5530
|
-
const upb_MiniTableField field = {1,
|
5575
|
+
const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5531
5576
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5532
5577
|
}
|
5533
5578
|
UPB_INLINE void validate_RepeatedRules_clear_max_items(validate_RepeatedRules* msg) {
|
5534
|
-
const upb_MiniTableField field = {2,
|
5579
|
+
const upb_MiniTableField field = {2, 24, 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5535
5580
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5536
5581
|
}
|
5537
5582
|
UPB_INLINE uint64_t validate_RepeatedRules_max_items(const validate_RepeatedRules* msg) {
|
5538
5583
|
uint64_t default_val = (uint64_t)0ull;
|
5539
5584
|
uint64_t ret;
|
5540
|
-
const upb_MiniTableField field = {2,
|
5585
|
+
const upb_MiniTableField field = {2, 24, 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5541
5586
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5542
5587
|
&default_val, &ret);
|
5543
5588
|
return ret;
|
5544
5589
|
}
|
5545
5590
|
UPB_INLINE bool validate_RepeatedRules_has_max_items(const validate_RepeatedRules* msg) {
|
5546
|
-
const upb_MiniTableField field = {2,
|
5591
|
+
const upb_MiniTableField field = {2, 24, 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5547
5592
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5548
5593
|
}
|
5549
5594
|
UPB_INLINE void validate_RepeatedRules_clear_unique(validate_RepeatedRules* msg) {
|
@@ -5570,6 +5615,7 @@ UPB_INLINE const validate_FieldRules* validate_RepeatedRules_items(const validat
|
|
5570
5615
|
const validate_FieldRules* default_val = NULL;
|
5571
5616
|
const validate_FieldRules* ret;
|
5572
5617
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 32), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5618
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5573
5619
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5574
5620
|
&default_val, &ret);
|
5575
5621
|
return ret;
|
@@ -5579,37 +5625,38 @@ UPB_INLINE bool validate_RepeatedRules_has_items(const validate_RepeatedRules* m
|
|
5579
5625
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5580
5626
|
}
|
5581
5627
|
UPB_INLINE void validate_RepeatedRules_clear_ignore_empty(validate_RepeatedRules* msg) {
|
5582
|
-
const upb_MiniTableField field = {5,
|
5628
|
+
const upb_MiniTableField field = {5, 10, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5583
5629
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5584
5630
|
}
|
5585
5631
|
UPB_INLINE bool validate_RepeatedRules_ignore_empty(const validate_RepeatedRules* msg) {
|
5586
5632
|
bool default_val = false;
|
5587
5633
|
bool ret;
|
5588
|
-
const upb_MiniTableField field = {5,
|
5634
|
+
const upb_MiniTableField field = {5, 10, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5589
5635
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5590
5636
|
&default_val, &ret);
|
5591
5637
|
return ret;
|
5592
5638
|
}
|
5593
5639
|
UPB_INLINE bool validate_RepeatedRules_has_ignore_empty(const validate_RepeatedRules* msg) {
|
5594
|
-
const upb_MiniTableField field = {5,
|
5640
|
+
const upb_MiniTableField field = {5, 10, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5595
5641
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5596
5642
|
}
|
5597
5643
|
|
5598
5644
|
UPB_INLINE void validate_RepeatedRules_set_min_items(validate_RepeatedRules *msg, uint64_t value) {
|
5599
|
-
const upb_MiniTableField field = {1,
|
5600
|
-
|
5645
|
+
const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5646
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5601
5647
|
}
|
5602
5648
|
UPB_INLINE void validate_RepeatedRules_set_max_items(validate_RepeatedRules *msg, uint64_t value) {
|
5603
|
-
const upb_MiniTableField field = {2,
|
5604
|
-
|
5649
|
+
const upb_MiniTableField field = {2, 24, 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5650
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5605
5651
|
}
|
5606
5652
|
UPB_INLINE void validate_RepeatedRules_set_unique(validate_RepeatedRules *msg, bool value) {
|
5607
5653
|
const upb_MiniTableField field = {3, 9, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5608
|
-
|
5654
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5609
5655
|
}
|
5610
5656
|
UPB_INLINE void validate_RepeatedRules_set_items(validate_RepeatedRules *msg, validate_FieldRules* value) {
|
5611
5657
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 32), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5612
|
-
|
5658
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5659
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5613
5660
|
}
|
5614
5661
|
UPB_INLINE struct validate_FieldRules* validate_RepeatedRules_mutable_items(validate_RepeatedRules* msg, upb_Arena* arena) {
|
5615
5662
|
struct validate_FieldRules* sub = (struct validate_FieldRules*)validate_RepeatedRules_items(msg);
|
@@ -5620,8 +5667,8 @@ UPB_INLINE struct validate_FieldRules* validate_RepeatedRules_mutable_items(vali
|
|
5620
5667
|
return sub;
|
5621
5668
|
}
|
5622
5669
|
UPB_INLINE void validate_RepeatedRules_set_ignore_empty(validate_RepeatedRules *msg, bool value) {
|
5623
|
-
const upb_MiniTableField field = {5,
|
5624
|
-
|
5670
|
+
const upb_MiniTableField field = {5, 10, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5671
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5625
5672
|
}
|
5626
5673
|
|
5627
5674
|
/* validate.MapRules */
|
@@ -5716,6 +5763,7 @@ UPB_INLINE const validate_FieldRules* validate_MapRules_keys(const validate_MapR
|
|
5716
5763
|
const validate_FieldRules* default_val = NULL;
|
5717
5764
|
const validate_FieldRules* ret;
|
5718
5765
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 32), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5766
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5719
5767
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5720
5768
|
&default_val, &ret);
|
5721
5769
|
return ret;
|
@@ -5732,6 +5780,7 @@ UPB_INLINE const validate_FieldRules* validate_MapRules_values(const validate_Ma
|
|
5732
5780
|
const validate_FieldRules* default_val = NULL;
|
5733
5781
|
const validate_FieldRules* ret;
|
5734
5782
|
const upb_MiniTableField field = {5, UPB_SIZE(16, 40), 68, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5783
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5735
5784
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5736
5785
|
&default_val, &ret);
|
5737
5786
|
return ret;
|
@@ -5741,37 +5790,38 @@ UPB_INLINE bool validate_MapRules_has_values(const validate_MapRules* msg) {
|
|
5741
5790
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5742
5791
|
}
|
5743
5792
|
UPB_INLINE void validate_MapRules_clear_ignore_empty(validate_MapRules* msg) {
|
5744
|
-
const upb_MiniTableField field = {6,
|
5793
|
+
const upb_MiniTableField field = {6, 10, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5745
5794
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
5746
5795
|
}
|
5747
5796
|
UPB_INLINE bool validate_MapRules_ignore_empty(const validate_MapRules* msg) {
|
5748
5797
|
bool default_val = false;
|
5749
5798
|
bool ret;
|
5750
|
-
const upb_MiniTableField field = {6,
|
5799
|
+
const upb_MiniTableField field = {6, 10, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5751
5800
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
5752
5801
|
&default_val, &ret);
|
5753
5802
|
return ret;
|
5754
5803
|
}
|
5755
5804
|
UPB_INLINE bool validate_MapRules_has_ignore_empty(const validate_MapRules* msg) {
|
5756
|
-
const upb_MiniTableField field = {6,
|
5805
|
+
const upb_MiniTableField field = {6, 10, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5757
5806
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
5758
5807
|
}
|
5759
5808
|
|
5760
5809
|
UPB_INLINE void validate_MapRules_set_min_pairs(validate_MapRules *msg, uint64_t value) {
|
5761
5810
|
const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 64, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5762
|
-
|
5811
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5763
5812
|
}
|
5764
5813
|
UPB_INLINE void validate_MapRules_set_max_pairs(validate_MapRules *msg, uint64_t value) {
|
5765
5814
|
const upb_MiniTableField field = {2, UPB_SIZE(32, 24), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
|
5766
|
-
|
5815
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5767
5816
|
}
|
5768
5817
|
UPB_INLINE void validate_MapRules_set_no_sparse(validate_MapRules *msg, bool value) {
|
5769
5818
|
const upb_MiniTableField field = {3, 9, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5770
|
-
|
5819
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5771
5820
|
}
|
5772
5821
|
UPB_INLINE void validate_MapRules_set_keys(validate_MapRules *msg, validate_FieldRules* value) {
|
5773
5822
|
const upb_MiniTableField field = {4, UPB_SIZE(12, 32), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5774
|
-
|
5823
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5824
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5775
5825
|
}
|
5776
5826
|
UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_keys(validate_MapRules* msg, upb_Arena* arena) {
|
5777
5827
|
struct validate_FieldRules* sub = (struct validate_FieldRules*)validate_MapRules_keys(msg);
|
@@ -5783,7 +5833,8 @@ UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_keys(validate_M
|
|
5783
5833
|
}
|
5784
5834
|
UPB_INLINE void validate_MapRules_set_values(validate_MapRules *msg, validate_FieldRules* value) {
|
5785
5835
|
const upb_MiniTableField field = {5, UPB_SIZE(16, 40), 68, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
5786
|
-
|
5836
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&validate__FieldRules_msg_init);
|
5837
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5787
5838
|
}
|
5788
5839
|
UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_values(validate_MapRules* msg, upb_Arena* arena) {
|
5789
5840
|
struct validate_FieldRules* sub = (struct validate_FieldRules*)validate_MapRules_values(msg);
|
@@ -5794,8 +5845,8 @@ UPB_INLINE struct validate_FieldRules* validate_MapRules_mutable_values(validate
|
|
5794
5845
|
return sub;
|
5795
5846
|
}
|
5796
5847
|
UPB_INLINE void validate_MapRules_set_ignore_empty(validate_MapRules *msg, bool value) {
|
5797
|
-
const upb_MiniTableField field = {6,
|
5798
|
-
|
5848
|
+
const upb_MiniTableField field = {6, 10, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5849
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5799
5850
|
}
|
5800
5851
|
|
5801
5852
|
/* validate.AnyRules */
|
@@ -5917,7 +5968,7 @@ UPB_INLINE upb_Array* _validate_AnyRules_not_in_mutable_upb_array(validate_AnyRu
|
|
5917
5968
|
|
5918
5969
|
UPB_INLINE void validate_AnyRules_set_required(validate_AnyRules *msg, bool value) {
|
5919
5970
|
const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
5920
|
-
|
5971
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
5921
5972
|
}
|
5922
5973
|
UPB_INLINE upb_StringView* validate_AnyRules_mutable_in(validate_AnyRules* msg, size_t* size) {
|
5923
5974
|
upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
@@ -6036,6 +6087,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_const(c
|
|
6036
6087
|
const struct google_protobuf_Duration* default_val = NULL;
|
6037
6088
|
const struct google_protobuf_Duration* ret;
|
6038
6089
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6090
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6039
6091
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6040
6092
|
&default_val, &ret);
|
6041
6093
|
return ret;
|
@@ -6052,6 +6104,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_lt(cons
|
|
6052
6104
|
const struct google_protobuf_Duration* default_val = NULL;
|
6053
6105
|
const struct google_protobuf_Duration* ret;
|
6054
6106
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6107
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6055
6108
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6056
6109
|
&default_val, &ret);
|
6057
6110
|
return ret;
|
@@ -6068,6 +6121,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_lte(con
|
|
6068
6121
|
const struct google_protobuf_Duration* default_val = NULL;
|
6069
6122
|
const struct google_protobuf_Duration* ret;
|
6070
6123
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 32), 67, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6124
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6071
6125
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6072
6126
|
&default_val, &ret);
|
6073
6127
|
return ret;
|
@@ -6084,6 +6138,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_gt(cons
|
|
6084
6138
|
const struct google_protobuf_Duration* default_val = NULL;
|
6085
6139
|
const struct google_protobuf_Duration* ret;
|
6086
6140
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 68, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6141
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6087
6142
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6088
6143
|
&default_val, &ret);
|
6089
6144
|
return ret;
|
@@ -6100,6 +6155,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_DurationRules_gte(con
|
|
6100
6155
|
const struct google_protobuf_Duration* default_val = NULL;
|
6101
6156
|
const struct google_protobuf_Duration* ret;
|
6102
6157
|
const upb_MiniTableField field = {6, UPB_SIZE(28, 48), 69, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6158
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6103
6159
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6104
6160
|
&default_val, &ret);
|
6105
6161
|
return ret;
|
@@ -6114,6 +6170,7 @@ UPB_INLINE void validate_DurationRules_clear_in(validate_DurationRules* msg) {
|
|
6114
6170
|
}
|
6115
6171
|
UPB_INLINE const struct google_protobuf_Duration* const* validate_DurationRules_in(const validate_DurationRules* msg, size_t* size) {
|
6116
6172
|
const upb_MiniTableField field = {7, UPB_SIZE(32, 56), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6173
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6117
6174
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
6118
6175
|
if (arr) {
|
6119
6176
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -6125,6 +6182,7 @@ UPB_INLINE const struct google_protobuf_Duration* const* validate_DurationRules_
|
|
6125
6182
|
}
|
6126
6183
|
UPB_INLINE const upb_Array* _validate_DurationRules_in_upb_array(const validate_DurationRules* msg, size_t* size) {
|
6127
6184
|
const upb_MiniTableField field = {7, UPB_SIZE(32, 56), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6185
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6128
6186
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
6129
6187
|
if (size) {
|
6130
6188
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -6133,6 +6191,7 @@ UPB_INLINE const upb_Array* _validate_DurationRules_in_upb_array(const validate_
|
|
6133
6191
|
}
|
6134
6192
|
UPB_INLINE upb_Array* _validate_DurationRules_in_mutable_upb_array(validate_DurationRules* msg, size_t* size, upb_Arena* arena) {
|
6135
6193
|
const upb_MiniTableField field = {7, UPB_SIZE(32, 56), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6194
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6136
6195
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
6137
6196
|
&field, arena);
|
6138
6197
|
if (size) {
|
@@ -6146,6 +6205,7 @@ UPB_INLINE void validate_DurationRules_clear_not_in(validate_DurationRules* msg)
|
|
6146
6205
|
}
|
6147
6206
|
UPB_INLINE const struct google_protobuf_Duration* const* validate_DurationRules_not_in(const validate_DurationRules* msg, size_t* size) {
|
6148
6207
|
const upb_MiniTableField field = {8, UPB_SIZE(36, 64), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6208
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6149
6209
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
6150
6210
|
if (arr) {
|
6151
6211
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -6157,6 +6217,7 @@ UPB_INLINE const struct google_protobuf_Duration* const* validate_DurationRules_
|
|
6157
6217
|
}
|
6158
6218
|
UPB_INLINE const upb_Array* _validate_DurationRules_not_in_upb_array(const validate_DurationRules* msg, size_t* size) {
|
6159
6219
|
const upb_MiniTableField field = {8, UPB_SIZE(36, 64), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6220
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6160
6221
|
const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
|
6161
6222
|
if (size) {
|
6162
6223
|
*size = arr ? arr->UPB_PRIVATE(size) : 0;
|
@@ -6165,6 +6226,7 @@ UPB_INLINE const upb_Array* _validate_DurationRules_not_in_upb_array(const valid
|
|
6165
6226
|
}
|
6166
6227
|
UPB_INLINE upb_Array* _validate_DurationRules_not_in_mutable_upb_array(validate_DurationRules* msg, size_t* size, upb_Arena* arena) {
|
6167
6228
|
const upb_MiniTableField field = {8, UPB_SIZE(36, 64), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6229
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6168
6230
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
|
6169
6231
|
&field, arena);
|
6170
6232
|
if (size) {
|
@@ -6175,11 +6237,12 @@ UPB_INLINE upb_Array* _validate_DurationRules_not_in_mutable_upb_array(validate_
|
|
6175
6237
|
|
6176
6238
|
UPB_INLINE void validate_DurationRules_set_required(validate_DurationRules *msg, bool value) {
|
6177
6239
|
const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6178
|
-
|
6240
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6179
6241
|
}
|
6180
6242
|
UPB_INLINE void validate_DurationRules_set_const(validate_DurationRules *msg, struct google_protobuf_Duration* value) {
|
6181
6243
|
const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6182
|
-
|
6244
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6245
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6183
6246
|
}
|
6184
6247
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_const(validate_DurationRules* msg, upb_Arena* arena) {
|
6185
6248
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_const(msg);
|
@@ -6191,7 +6254,8 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_const
|
|
6191
6254
|
}
|
6192
6255
|
UPB_INLINE void validate_DurationRules_set_lt(validate_DurationRules *msg, struct google_protobuf_Duration* value) {
|
6193
6256
|
const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6194
|
-
|
6257
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6258
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6195
6259
|
}
|
6196
6260
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lt(validate_DurationRules* msg, upb_Arena* arena) {
|
6197
6261
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_lt(msg);
|
@@ -6203,7 +6267,8 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lt(va
|
|
6203
6267
|
}
|
6204
6268
|
UPB_INLINE void validate_DurationRules_set_lte(validate_DurationRules *msg, struct google_protobuf_Duration* value) {
|
6205
6269
|
const upb_MiniTableField field = {4, UPB_SIZE(20, 32), 67, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6206
|
-
|
6270
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6271
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6207
6272
|
}
|
6208
6273
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lte(validate_DurationRules* msg, upb_Arena* arena) {
|
6209
6274
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_lte(msg);
|
@@ -6215,7 +6280,8 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_lte(v
|
|
6215
6280
|
}
|
6216
6281
|
UPB_INLINE void validate_DurationRules_set_gt(validate_DurationRules *msg, struct google_protobuf_Duration* value) {
|
6217
6282
|
const upb_MiniTableField field = {5, UPB_SIZE(24, 40), 68, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6218
|
-
|
6283
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6284
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6219
6285
|
}
|
6220
6286
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gt(validate_DurationRules* msg, upb_Arena* arena) {
|
6221
6287
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_gt(msg);
|
@@ -6227,7 +6293,8 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gt(va
|
|
6227
6293
|
}
|
6228
6294
|
UPB_INLINE void validate_DurationRules_set_gte(validate_DurationRules *msg, struct google_protobuf_Duration* value) {
|
6229
6295
|
const upb_MiniTableField field = {6, UPB_SIZE(28, 48), 69, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6230
|
-
|
6296
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6297
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6231
6298
|
}
|
6232
6299
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gte(validate_DurationRules* msg, upb_Arena* arena) {
|
6233
6300
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_DurationRules_gte(msg);
|
@@ -6239,6 +6306,7 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_mutable_gte(v
|
|
6239
6306
|
}
|
6240
6307
|
UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_mutable_in(validate_DurationRules* msg, size_t* size) {
|
6241
6308
|
upb_MiniTableField field = {7, UPB_SIZE(32, 56), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6309
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6242
6310
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
6243
6311
|
if (arr) {
|
6244
6312
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -6255,6 +6323,7 @@ UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_resize_in(va
|
|
6255
6323
|
}
|
6256
6324
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_in(validate_DurationRules* msg, upb_Arena* arena) {
|
6257
6325
|
upb_MiniTableField field = {7, UPB_SIZE(32, 56), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6326
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6258
6327
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
6259
6328
|
UPB_UPCAST(msg), &field, arena);
|
6260
6329
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -6269,6 +6338,7 @@ UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_in(valida
|
|
6269
6338
|
}
|
6270
6339
|
UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_mutable_not_in(validate_DurationRules* msg, size_t* size) {
|
6271
6340
|
upb_MiniTableField field = {8, UPB_SIZE(36, 64), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6341
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6272
6342
|
upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
|
6273
6343
|
if (arr) {
|
6274
6344
|
if (size) *size = arr->UPB_PRIVATE(size);
|
@@ -6285,6 +6355,7 @@ UPB_INLINE struct google_protobuf_Duration** validate_DurationRules_resize_not_i
|
|
6285
6355
|
}
|
6286
6356
|
UPB_INLINE struct google_protobuf_Duration* validate_DurationRules_add_not_in(validate_DurationRules* msg, upb_Arena* arena) {
|
6287
6357
|
upb_MiniTableField field = {8, UPB_SIZE(36, 64), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6358
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6288
6359
|
upb_Array* arr = upb_Message_GetOrCreateMutableArray(
|
6289
6360
|
UPB_UPCAST(msg), &field, arena);
|
6290
6361
|
if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
|
@@ -6351,115 +6422,120 @@ UPB_INLINE bool validate_TimestampRules_has_required(const validate_TimestampRul
|
|
6351
6422
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
6352
6423
|
}
|
6353
6424
|
UPB_INLINE void validate_TimestampRules_clear_const(validate_TimestampRules* msg) {
|
6354
|
-
const upb_MiniTableField field = {2,
|
6425
|
+
const upb_MiniTableField field = {2, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6355
6426
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
6356
6427
|
}
|
6357
6428
|
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_const(const validate_TimestampRules* msg) {
|
6358
6429
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
6359
6430
|
const struct google_protobuf_Timestamp* ret;
|
6360
|
-
const upb_MiniTableField field = {2,
|
6431
|
+
const upb_MiniTableField field = {2, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6432
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6361
6433
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6362
6434
|
&default_val, &ret);
|
6363
6435
|
return ret;
|
6364
6436
|
}
|
6365
6437
|
UPB_INLINE bool validate_TimestampRules_has_const(const validate_TimestampRules* msg) {
|
6366
|
-
const upb_MiniTableField field = {2,
|
6438
|
+
const upb_MiniTableField field = {2, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6367
6439
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
6368
6440
|
}
|
6369
6441
|
UPB_INLINE void validate_TimestampRules_clear_lt(validate_TimestampRules* msg) {
|
6370
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
6442
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6371
6443
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
6372
6444
|
}
|
6373
6445
|
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_lt(const validate_TimestampRules* msg) {
|
6374
6446
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
6375
6447
|
const struct google_protobuf_Timestamp* ret;
|
6376
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
6448
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6449
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6377
6450
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6378
6451
|
&default_val, &ret);
|
6379
6452
|
return ret;
|
6380
6453
|
}
|
6381
6454
|
UPB_INLINE bool validate_TimestampRules_has_lt(const validate_TimestampRules* msg) {
|
6382
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
6455
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6383
6456
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
6384
6457
|
}
|
6385
6458
|
UPB_INLINE void validate_TimestampRules_clear_lte(validate_TimestampRules* msg) {
|
6386
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
6459
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 32), 67, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6387
6460
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
6388
6461
|
}
|
6389
6462
|
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_lte(const validate_TimestampRules* msg) {
|
6390
6463
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
6391
6464
|
const struct google_protobuf_Timestamp* ret;
|
6392
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
6465
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 32), 67, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6466
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6393
6467
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6394
6468
|
&default_val, &ret);
|
6395
6469
|
return ret;
|
6396
6470
|
}
|
6397
6471
|
UPB_INLINE bool validate_TimestampRules_has_lte(const validate_TimestampRules* msg) {
|
6398
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
6472
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 32), 67, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6399
6473
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
6400
6474
|
}
|
6401
6475
|
UPB_INLINE void validate_TimestampRules_clear_gt(validate_TimestampRules* msg) {
|
6402
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
6476
|
+
const upb_MiniTableField field = {5, UPB_SIZE(28, 40), 68, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6403
6477
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
6404
6478
|
}
|
6405
6479
|
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_gt(const validate_TimestampRules* msg) {
|
6406
6480
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
6407
6481
|
const struct google_protobuf_Timestamp* ret;
|
6408
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
6482
|
+
const upb_MiniTableField field = {5, UPB_SIZE(28, 40), 68, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6483
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6409
6484
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6410
6485
|
&default_val, &ret);
|
6411
6486
|
return ret;
|
6412
6487
|
}
|
6413
6488
|
UPB_INLINE bool validate_TimestampRules_has_gt(const validate_TimestampRules* msg) {
|
6414
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
6489
|
+
const upb_MiniTableField field = {5, UPB_SIZE(28, 40), 68, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6415
6490
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
6416
6491
|
}
|
6417
6492
|
UPB_INLINE void validate_TimestampRules_clear_gte(validate_TimestampRules* msg) {
|
6418
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
6493
|
+
const upb_MiniTableField field = {6, UPB_SIZE(32, 48), 69, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6419
6494
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
6420
6495
|
}
|
6421
6496
|
UPB_INLINE const struct google_protobuf_Timestamp* validate_TimestampRules_gte(const validate_TimestampRules* msg) {
|
6422
6497
|
const struct google_protobuf_Timestamp* default_val = NULL;
|
6423
6498
|
const struct google_protobuf_Timestamp* ret;
|
6424
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
6499
|
+
const upb_MiniTableField field = {6, UPB_SIZE(32, 48), 69, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6500
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6425
6501
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6426
6502
|
&default_val, &ret);
|
6427
6503
|
return ret;
|
6428
6504
|
}
|
6429
6505
|
UPB_INLINE bool validate_TimestampRules_has_gte(const validate_TimestampRules* msg) {
|
6430
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
6506
|
+
const upb_MiniTableField field = {6, UPB_SIZE(32, 48), 69, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6431
6507
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
6432
6508
|
}
|
6433
6509
|
UPB_INLINE void validate_TimestampRules_clear_lt_now(validate_TimestampRules* msg) {
|
6434
|
-
const upb_MiniTableField field = {7,
|
6510
|
+
const upb_MiniTableField field = {7, 11, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6435
6511
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
6436
6512
|
}
|
6437
6513
|
UPB_INLINE bool validate_TimestampRules_lt_now(const validate_TimestampRules* msg) {
|
6438
6514
|
bool default_val = false;
|
6439
6515
|
bool ret;
|
6440
|
-
const upb_MiniTableField field = {7,
|
6516
|
+
const upb_MiniTableField field = {7, 11, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6441
6517
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6442
6518
|
&default_val, &ret);
|
6443
6519
|
return ret;
|
6444
6520
|
}
|
6445
6521
|
UPB_INLINE bool validate_TimestampRules_has_lt_now(const validate_TimestampRules* msg) {
|
6446
|
-
const upb_MiniTableField field = {7,
|
6522
|
+
const upb_MiniTableField field = {7, 11, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6447
6523
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
6448
6524
|
}
|
6449
6525
|
UPB_INLINE void validate_TimestampRules_clear_gt_now(validate_TimestampRules* msg) {
|
6450
|
-
const upb_MiniTableField field = {8,
|
6526
|
+
const upb_MiniTableField field = {8, 12, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6451
6527
|
upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
|
6452
6528
|
}
|
6453
6529
|
UPB_INLINE bool validate_TimestampRules_gt_now(const validate_TimestampRules* msg) {
|
6454
6530
|
bool default_val = false;
|
6455
6531
|
bool ret;
|
6456
|
-
const upb_MiniTableField field = {8,
|
6532
|
+
const upb_MiniTableField field = {8, 12, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6457
6533
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6458
6534
|
&default_val, &ret);
|
6459
6535
|
return ret;
|
6460
6536
|
}
|
6461
6537
|
UPB_INLINE bool validate_TimestampRules_has_gt_now(const validate_TimestampRules* msg) {
|
6462
|
-
const upb_MiniTableField field = {8,
|
6538
|
+
const upb_MiniTableField field = {8, 12, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6463
6539
|
return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
|
6464
6540
|
}
|
6465
6541
|
UPB_INLINE void validate_TimestampRules_clear_within(validate_TimestampRules* msg) {
|
@@ -6470,6 +6546,7 @@ UPB_INLINE const struct google_protobuf_Duration* validate_TimestampRules_within
|
|
6470
6546
|
const struct google_protobuf_Duration* default_val = NULL;
|
6471
6547
|
const struct google_protobuf_Duration* ret;
|
6472
6548
|
const upb_MiniTableField field = {9, UPB_SIZE(36, 56), 72, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6549
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6473
6550
|
_upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
|
6474
6551
|
&default_val, &ret);
|
6475
6552
|
return ret;
|
@@ -6481,11 +6558,12 @@ UPB_INLINE bool validate_TimestampRules_has_within(const validate_TimestampRules
|
|
6481
6558
|
|
6482
6559
|
UPB_INLINE void validate_TimestampRules_set_required(validate_TimestampRules *msg, bool value) {
|
6483
6560
|
const upb_MiniTableField field = {1, 10, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6484
|
-
|
6561
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6485
6562
|
}
|
6486
6563
|
UPB_INLINE void validate_TimestampRules_set_const(validate_TimestampRules *msg, struct google_protobuf_Timestamp* value) {
|
6487
|
-
const upb_MiniTableField field = {2,
|
6488
|
-
|
6564
|
+
const upb_MiniTableField field = {2, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6565
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6566
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6489
6567
|
}
|
6490
6568
|
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_const(validate_TimestampRules* msg, upb_Arena* arena) {
|
6491
6569
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_const(msg);
|
@@ -6496,8 +6574,9 @@ UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_con
|
|
6496
6574
|
return sub;
|
6497
6575
|
}
|
6498
6576
|
UPB_INLINE void validate_TimestampRules_set_lt(validate_TimestampRules *msg, struct google_protobuf_Timestamp* value) {
|
6499
|
-
const upb_MiniTableField field = {3, UPB_SIZE(
|
6500
|
-
|
6577
|
+
const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6578
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6579
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6501
6580
|
}
|
6502
6581
|
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lt(validate_TimestampRules* msg, upb_Arena* arena) {
|
6503
6582
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_lt(msg);
|
@@ -6508,8 +6587,9 @@ UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lt(
|
|
6508
6587
|
return sub;
|
6509
6588
|
}
|
6510
6589
|
UPB_INLINE void validate_TimestampRules_set_lte(validate_TimestampRules *msg, struct google_protobuf_Timestamp* value) {
|
6511
|
-
const upb_MiniTableField field = {4, UPB_SIZE(
|
6512
|
-
|
6590
|
+
const upb_MiniTableField field = {4, UPB_SIZE(24, 32), 67, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6591
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6592
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6513
6593
|
}
|
6514
6594
|
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lte(validate_TimestampRules* msg, upb_Arena* arena) {
|
6515
6595
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_lte(msg);
|
@@ -6520,8 +6600,9 @@ UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_lte
|
|
6520
6600
|
return sub;
|
6521
6601
|
}
|
6522
6602
|
UPB_INLINE void validate_TimestampRules_set_gt(validate_TimestampRules *msg, struct google_protobuf_Timestamp* value) {
|
6523
|
-
const upb_MiniTableField field = {5, UPB_SIZE(
|
6524
|
-
|
6603
|
+
const upb_MiniTableField field = {5, UPB_SIZE(28, 40), 68, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6604
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6605
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6525
6606
|
}
|
6526
6607
|
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gt(validate_TimestampRules* msg, upb_Arena* arena) {
|
6527
6608
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_gt(msg);
|
@@ -6532,8 +6613,9 @@ UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gt(
|
|
6532
6613
|
return sub;
|
6533
6614
|
}
|
6534
6615
|
UPB_INLINE void validate_TimestampRules_set_gte(validate_TimestampRules *msg, struct google_protobuf_Timestamp* value) {
|
6535
|
-
const upb_MiniTableField field = {6, UPB_SIZE(
|
6536
|
-
|
6616
|
+
const upb_MiniTableField field = {6, UPB_SIZE(32, 48), 69, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6617
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Timestamp_msg_init);
|
6618
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6537
6619
|
}
|
6538
6620
|
UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gte(validate_TimestampRules* msg, upb_Arena* arena) {
|
6539
6621
|
struct google_protobuf_Timestamp* sub = (struct google_protobuf_Timestamp*)validate_TimestampRules_gte(msg);
|
@@ -6544,16 +6626,17 @@ UPB_INLINE struct google_protobuf_Timestamp* validate_TimestampRules_mutable_gte
|
|
6544
6626
|
return sub;
|
6545
6627
|
}
|
6546
6628
|
UPB_INLINE void validate_TimestampRules_set_lt_now(validate_TimestampRules *msg, bool value) {
|
6547
|
-
const upb_MiniTableField field = {7,
|
6548
|
-
|
6629
|
+
const upb_MiniTableField field = {7, 11, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6630
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6549
6631
|
}
|
6550
6632
|
UPB_INLINE void validate_TimestampRules_set_gt_now(validate_TimestampRules *msg, bool value) {
|
6551
|
-
const upb_MiniTableField field = {8,
|
6552
|
-
|
6633
|
+
const upb_MiniTableField field = {8, 12, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
|
6634
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6553
6635
|
}
|
6554
6636
|
UPB_INLINE void validate_TimestampRules_set_within(validate_TimestampRules *msg, struct google_protobuf_Duration* value) {
|
6555
6637
|
const upb_MiniTableField field = {9, UPB_SIZE(36, 56), 72, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
|
6556
|
-
|
6638
|
+
UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
|
6639
|
+
upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
|
6557
6640
|
}
|
6558
6641
|
UPB_INLINE struct google_protobuf_Duration* validate_TimestampRules_mutable_within(validate_TimestampRules* msg, upb_Arena* arena) {
|
6559
6642
|
struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)validate_TimestampRules_within(msg);
|
@@ -6585,7 +6668,7 @@ UPB_INLINE void validate_set_disabled(struct google_protobuf_MessageOptions* msg
|
|
6585
6668
|
UPB_ASSUME(upb_MiniTableField_IsScalar(&ext->UPB_PRIVATE(field)));
|
6586
6669
|
UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(
|
6587
6670
|
&ext->UPB_PRIVATE(field)) == kUpb_FieldRep_1Byte);
|
6588
|
-
bool ok =
|
6671
|
+
bool ok = upb_Message_SetExtension((upb_Message*)msg, ext, &val, arena);
|
6589
6672
|
UPB_ASSERT(ok);
|
6590
6673
|
}
|
6591
6674
|
UPB_INLINE bool validate_has_ignored(const struct google_protobuf_MessageOptions* msg) {
|
@@ -6609,7 +6692,7 @@ UPB_INLINE void validate_set_ignored(struct google_protobuf_MessageOptions* msg,
|
|
6609
6692
|
UPB_ASSUME(upb_MiniTableField_IsScalar(&ext->UPB_PRIVATE(field)));
|
6610
6693
|
UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(
|
6611
6694
|
&ext->UPB_PRIVATE(field)) == kUpb_FieldRep_1Byte);
|
6612
|
-
bool ok =
|
6695
|
+
bool ok = upb_Message_SetExtension((upb_Message*)msg, ext, &val, arena);
|
6613
6696
|
UPB_ASSERT(ok);
|
6614
6697
|
}
|
6615
6698
|
UPB_INLINE bool validate_has_required(const struct google_protobuf_OneofOptions* msg) {
|
@@ -6633,7 +6716,7 @@ UPB_INLINE void validate_set_required(struct google_protobuf_OneofOptions* msg,
|
|
6633
6716
|
UPB_ASSUME(upb_MiniTableField_IsScalar(&ext->UPB_PRIVATE(field)));
|
6634
6717
|
UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(
|
6635
6718
|
&ext->UPB_PRIVATE(field)) == kUpb_FieldRep_1Byte);
|
6636
|
-
bool ok =
|
6719
|
+
bool ok = upb_Message_SetExtension((upb_Message*)msg, ext, &val, arena);
|
6637
6720
|
UPB_ASSERT(ok);
|
6638
6721
|
}
|
6639
6722
|
UPB_INLINE bool validate_has_rules(const struct google_protobuf_FieldOptions* msg) {
|
@@ -6646,7 +6729,7 @@ UPB_INLINE const validate_FieldRules* validate_rules(const struct google_protobu
|
|
6646
6729
|
const upb_MiniTableExtension* ext = &validate_rules_ext;
|
6647
6730
|
UPB_ASSUME(upb_MiniTableField_IsScalar(&ext->UPB_PRIVATE(field)));
|
6648
6731
|
UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(
|
6649
|
-
&ext->UPB_PRIVATE(field)) == kUpb_FieldRep_8Byte);
|
6732
|
+
&ext->UPB_PRIVATE(field)) == UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte));
|
6650
6733
|
const validate_FieldRules* default_val = NULL;
|
6651
6734
|
const validate_FieldRules* ret;
|
6652
6735
|
_upb_Message_GetExtensionField((upb_Message*)msg, ext, &default_val, &ret);
|
@@ -6656,14 +6739,23 @@ UPB_INLINE void validate_set_rules(struct google_protobuf_FieldOptions* msg, con
|
|
6656
6739
|
const upb_MiniTableExtension* ext = &validate_rules_ext;
|
6657
6740
|
UPB_ASSUME(upb_MiniTableField_IsScalar(&ext->UPB_PRIVATE(field)));
|
6658
6741
|
UPB_ASSUME(UPB_PRIVATE(_upb_MiniTableField_GetRep)(
|
6659
|
-
&ext->UPB_PRIVATE(field)) == kUpb_FieldRep_8Byte);
|
6660
|
-
bool ok =
|
6742
|
+
&ext->UPB_PRIVATE(field)) == UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte));
|
6743
|
+
bool ok = upb_Message_SetExtension((upb_Message*)msg, ext, &val, arena);
|
6661
6744
|
UPB_ASSERT(ok);
|
6662
6745
|
}
|
6746
|
+
UPB_INLINE struct validate_FieldRules* validate_mutable_rules(struct google_protobuf_FieldOptions* msg,
|
6747
|
+
upb_Arena* arena) {
|
6748
|
+
struct validate_FieldRules* sub = (struct validate_FieldRules*)validate_rules(msg);
|
6749
|
+
if (sub == NULL) {
|
6750
|
+
sub = (struct validate_FieldRules*)_upb_Message_New(&validate__FieldRules_msg_init, arena);
|
6751
|
+
if (sub) validate_set_rules(msg, sub, arena);
|
6752
|
+
}
|
6753
|
+
return sub;
|
6754
|
+
}
|
6663
6755
|
#ifdef __cplusplus
|
6664
6756
|
} /* extern "C" */
|
6665
6757
|
#endif
|
6666
6758
|
|
6667
6759
|
#include "upb/port/undef.inc"
|
6668
6760
|
|
6669
|
-
#endif /*
|
6761
|
+
#endif /* VALIDATE_VALIDATE_PROTO_UPB_H__UPB_H_ */
|