grpc 1.64.3 → 1.71.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.
Files changed (3205) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +372 -376
  3. data/include/grpc/compression.h +1 -2
  4. data/include/grpc/credentials.h +2 -3
  5. data/include/grpc/event_engine/README.md +1 -1
  6. data/include/grpc/event_engine/endpoint_config.h +7 -7
  7. data/include/grpc/event_engine/event_engine.h +83 -20
  8. data/include/grpc/event_engine/extensible.h +5 -2
  9. data/include/grpc/event_engine/internal/memory_allocator_impl.h +4 -4
  10. data/include/grpc/event_engine/internal/slice_cast.h +1 -1
  11. data/include/grpc/event_engine/memory_allocator.h +3 -4
  12. data/include/grpc/event_engine/memory_request.h +19 -2
  13. data/include/grpc/event_engine/slice.h +3 -5
  14. data/include/grpc/event_engine/slice_buffer.h +6 -8
  15. data/include/grpc/grpc.h +1 -2
  16. data/include/grpc/grpc_audit_logging.h +3 -3
  17. data/include/grpc/grpc_crl_provider.h +5 -5
  18. data/include/grpc/grpc_posix.h +1 -2
  19. data/include/grpc/grpc_security.h +1 -2
  20. data/include/grpc/impl/call.h +2 -2
  21. data/include/grpc/impl/channel_arg_names.h +10 -4
  22. data/include/grpc/impl/grpc_types.h +1 -2
  23. data/include/grpc/impl/slice_type.h +1 -2
  24. data/include/grpc/module.modulemap +1 -0
  25. data/include/grpc/passive_listener.h +62 -0
  26. data/include/grpc/status.h +1 -1
  27. data/include/grpc/support/alloc.h +1 -2
  28. data/include/grpc/support/atm.h +0 -13
  29. data/include/grpc/support/json.h +17 -18
  30. data/include/grpc/support/log.h +37 -64
  31. data/include/grpc/support/metrics.h +21 -6
  32. data/include/grpc/support/port_platform.h +31 -1
  33. data/include/grpc/support/sync_generic.h +2 -4
  34. data/include/grpc/support/sync_posix.h +1 -2
  35. data/include/grpc/support/time.h +1 -2
  36. data/src/core/call/request_buffer.cc +224 -0
  37. data/src/core/call/request_buffer.h +192 -0
  38. data/src/core/channelz/channel_trace.cc +6 -7
  39. data/src/core/channelz/channel_trace.h +6 -8
  40. data/src/core/channelz/channelz.cc +10 -12
  41. data/src/core/channelz/channelz.h +18 -39
  42. data/src/core/channelz/channelz_registry.cc +10 -18
  43. data/src/core/channelz/channelz_registry.h +4 -5
  44. data/src/core/client_channel/backup_poller.cc +25 -16
  45. data/src/core/client_channel/client_channel.cc +1415 -0
  46. data/src/core/client_channel/client_channel.h +245 -0
  47. data/src/core/client_channel/client_channel_args.h +21 -0
  48. data/src/core/client_channel/client_channel_factory.cc +2 -2
  49. data/src/core/client_channel/client_channel_factory.h +1 -2
  50. data/src/core/client_channel/client_channel_filter.cc +391 -981
  51. data/src/core/client_channel/client_channel_filter.h +32 -83
  52. data/src/core/client_channel/client_channel_internal.h +23 -9
  53. data/src/core/client_channel/client_channel_plugin.cc +4 -18
  54. data/src/core/client_channel/client_channel_service_config.cc +3 -4
  55. data/src/core/client_channel/client_channel_service_config.h +12 -14
  56. data/src/core/client_channel/config_selector.h +21 -22
  57. data/src/core/client_channel/connector.h +3 -3
  58. data/src/core/client_channel/direct_channel.cc +83 -0
  59. data/src/core/client_channel/direct_channel.h +101 -0
  60. data/src/core/client_channel/dynamic_filters.cc +16 -14
  61. data/src/core/client_channel/dynamic_filters.h +9 -10
  62. data/src/core/client_channel/global_subchannel_pool.cc +2 -2
  63. data/src/core/client_channel/global_subchannel_pool.h +2 -3
  64. data/src/core/client_channel/lb_metadata.cc +119 -0
  65. data/src/core/client_channel/lb_metadata.h +55 -0
  66. data/src/core/client_channel/load_balanced_call_destination.cc +273 -0
  67. data/src/core/client_channel/load_balanced_call_destination.h +48 -0
  68. data/src/core/client_channel/local_subchannel_pool.cc +2 -5
  69. data/src/core/client_channel/local_subchannel_pool.h +1 -1
  70. data/src/core/client_channel/retry_filter.cc +9 -18
  71. data/src/core/client_channel/retry_filter.h +7 -16
  72. data/src/core/client_channel/retry_filter_legacy_call_data.cc +219 -331
  73. data/src/core/client_channel/retry_filter_legacy_call_data.h +18 -21
  74. data/src/core/client_channel/retry_interceptor.cc +408 -0
  75. data/src/core/client_channel/retry_interceptor.h +157 -0
  76. data/src/core/client_channel/retry_service_config.cc +11 -14
  77. data/src/core/client_channel/retry_service_config.h +22 -11
  78. data/src/core/client_channel/retry_throttle.cc +34 -20
  79. data/src/core/client_channel/retry_throttle.h +6 -9
  80. data/src/core/client_channel/subchannel.cc +324 -239
  81. data/src/core/client_channel/subchannel.h +52 -44
  82. data/src/core/client_channel/subchannel_interface_internal.h +1 -1
  83. data/src/core/client_channel/subchannel_pool_interface.cc +1 -5
  84. data/src/core/client_channel/subchannel_pool_interface.h +4 -7
  85. data/src/core/client_channel/subchannel_stream_client.cc +43 -60
  86. data/src/core/client_channel/subchannel_stream_client.h +13 -17
  87. data/src/core/config/config_vars.cc +152 -0
  88. data/src/core/config/config_vars.h +129 -0
  89. data/src/core/config/config_vars_non_generated.cc +49 -0
  90. data/src/core/config/core_configuration.cc +111 -0
  91. data/src/core/config/core_configuration.h +242 -0
  92. data/src/core/config/load_config.cc +78 -0
  93. data/src/core/config/load_config.h +54 -0
  94. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +25 -37
  95. data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +9 -7
  96. data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
  97. data/src/core/ext/filters/census/grpc_context.cc +7 -10
  98. data/src/core/ext/filters/channel_idle/idle_filter_state.cc +1 -2
  99. data/src/core/ext/filters/channel_idle/idle_filter_state.h +0 -1
  100. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +37 -48
  101. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +12 -8
  102. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +23 -33
  103. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +9 -8
  104. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +3 -4
  105. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +7 -10
  106. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +198 -0
  107. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +97 -0
  108. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +80 -0
  109. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +86 -0
  110. data/src/core/ext/filters/http/client/http_client_filter.cc +14 -13
  111. data/src/core/ext/filters/http/client/http_client_filter.h +6 -4
  112. data/src/core/ext/filters/http/client_authority_filter.cc +14 -18
  113. data/src/core/ext/filters/http/client_authority_filter.h +8 -6
  114. data/src/core/ext/filters/http/http_filters_plugin.cc +1 -2
  115. data/src/core/ext/filters/http/message_compress/compression_filter.cc +64 -64
  116. data/src/core/ext/filters/http/message_compress/compression_filter.h +24 -15
  117. data/src/core/ext/filters/http/server/http_server_filter.cc +18 -20
  118. data/src/core/ext/filters/http/server/http_server_filter.h +6 -4
  119. data/src/core/ext/filters/message_size/message_size_filter.cc +43 -55
  120. data/src/core/ext/filters/message_size/message_size_filter.h +30 -29
  121. data/src/core/ext/filters/rbac/rbac_filter.cc +8 -18
  122. data/src/core/ext/filters/rbac/rbac_filter.h +8 -7
  123. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +19 -13
  124. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +3 -5
  125. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +14 -21
  126. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +8 -7
  127. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +3 -4
  128. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +8 -10
  129. data/src/core/ext/transport/chttp2/alpn/alpn.cc +2 -4
  130. data/src/core/ext/transport/chttp2/alpn/alpn.h +1 -2
  131. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +76 -109
  132. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +8 -13
  133. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +999 -375
  134. data/src/core/ext/transport/chttp2/server/chttp2_server.h +222 -13
  135. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +22 -34
  136. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -3
  137. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +4 -7
  138. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -2
  139. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +53 -0
  140. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +72 -0
  141. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +706 -555
  142. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +22 -23
  143. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +2 -3
  144. data/src/core/ext/transport/chttp2/transport/decode_huff.h +4 -4
  145. data/src/core/ext/transport/chttp2/transport/flow_control.cc +9 -14
  146. data/src/core/ext/transport/chttp2/transport/flow_control.h +5 -10
  147. data/src/core/ext/transport/chttp2/transport/frame.cc +24 -7
  148. data/src/core/ext/transport/chttp2/transport/frame.h +16 -7
  149. data/src/core/ext/transport/chttp2/transport/frame_data.cc +19 -20
  150. data/src/core/ext/transport/chttp2/transport/frame_data.h +4 -5
  151. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +11 -14
  152. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -2
  153. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +14 -19
  154. data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -2
  155. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -18
  156. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -5
  157. data/src/core/ext/transport/chttp2/transport/frame_security.cc +80 -0
  158. data/src/core/ext/transport/chttp2/transport/frame_security.h +44 -0
  159. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +41 -25
  160. data/src/core/ext/transport/chttp2/transport/frame_settings.h +3 -4
  161. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +28 -7
  162. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -3
  163. data/src/core/ext/transport/chttp2/transport/hpack_constants.h +2 -2
  164. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +19 -21
  165. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +19 -15
  166. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +2 -3
  167. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +4 -5
  168. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +2 -4
  169. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +6 -9
  170. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +55 -58
  171. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +10 -13
  172. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +41 -16
  173. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +29 -10
  174. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +14 -6
  175. data/src/core/ext/transport/chttp2/transport/http2_settings.h +13 -7
  176. data/src/core/ext/transport/chttp2/transport/internal.h +86 -83
  177. data/src/core/ext/transport/chttp2/transport/legacy_frame.h +1 -0
  178. data/src/core/ext/transport/chttp2/transport/parsing.cc +135 -121
  179. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +4 -4
  180. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +3 -3
  181. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +4 -7
  182. data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +5 -9
  183. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +35 -20
  184. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +9 -10
  185. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +14 -16
  186. data/src/core/ext/transport/chttp2/transport/stream_lists.h +65 -0
  187. data/src/core/ext/transport/chttp2/transport/varint.cc +6 -6
  188. data/src/core/ext/transport/chttp2/transport/varint.h +1 -3
  189. data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +2 -3
  190. data/src/core/ext/transport/chttp2/transport/write_size_policy.h +3 -4
  191. data/src/core/ext/transport/chttp2/transport/writing.cc +149 -130
  192. data/src/core/ext/transport/inproc/inproc_transport.cc +151 -71
  193. data/src/core/ext/transport/inproc/inproc_transport.h +1 -3
  194. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +133 -129
  195. data/src/core/ext/transport/inproc/legacy_inproc_transport.h +0 -2
  196. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +46 -15
  197. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +40 -18
  198. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +10 -4
  199. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +59 -27
  200. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +36 -18
  201. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +9 -4
  202. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +50 -15
  203. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +44 -22
  204. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +10 -4
  205. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +190 -55
  206. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +162 -84
  207. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +24 -4
  208. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +11 -5
  209. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +14 -4
  210. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +7 -4
  211. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +19 -6
  212. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +18 -8
  213. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +7 -4
  214. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +11 -10
  215. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +7 -1
  216. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +6 -4
  217. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +8 -7
  218. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +7 -1
  219. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +6 -4
  220. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +8 -7
  221. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +7 -1
  222. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +6 -4
  223. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +145 -82
  224. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +40 -27
  225. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +7 -4
  226. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +9 -6
  227. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +10 -4
  228. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +6 -4
  229. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +9 -8
  230. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +7 -1
  231. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +5 -4
  232. data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +18 -8
  233. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +13 -6
  234. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +6 -4
  235. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +91 -34
  236. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +114 -48
  237. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +21 -4
  238. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +544 -254
  239. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +265 -149
  240. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +29 -4
  241. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +41 -14
  242. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +31 -17
  243. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +8 -4
  244. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +529 -141
  245. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +270 -143
  246. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +31 -4
  247. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +12 -7
  248. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +11 -5
  249. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +6 -4
  250. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +171 -27
  251. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +54 -27
  252. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +6 -4
  253. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +127 -35
  254. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +125 -63
  255. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +20 -4
  256. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +67 -27
  257. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +60 -26
  258. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +13 -4
  259. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +11 -6
  260. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +11 -5
  261. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +6 -4
  262. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +871 -72
  263. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +346 -75
  264. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +41 -4
  265. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +67 -25
  266. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +57 -27
  267. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +12 -4
  268. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +8 -5
  269. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +10 -4
  270. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +6 -4
  271. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +9 -6
  272. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +10 -4
  273. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +6 -4
  274. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +11 -5
  275. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +14 -4
  276. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +7 -4
  277. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +201 -62
  278. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +120 -53
  279. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +19 -4
  280. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +196 -62
  281. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +95 -53
  282. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +14 -4
  283. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +13 -5
  284. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +11 -5
  285. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +6 -4
  286. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +10 -7
  287. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +10 -4
  288. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +6 -4
  289. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +322 -76
  290. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +162 -84
  291. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +21 -4
  292. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +10 -7
  293. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +14 -4
  294. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +7 -4
  295. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +15 -7
  296. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +15 -5
  297. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +7 -4
  298. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb.h +151 -0
  299. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.c +60 -0
  300. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.h +32 -0
  301. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +244 -31
  302. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +79 -21
  303. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +13 -4
  304. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +23 -11
  305. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +17 -7
  306. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +7 -4
  307. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +11 -6
  308. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +11 -5
  309. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +6 -4
  310. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +42 -11
  311. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +35 -17
  312. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +9 -4
  313. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +106 -34
  314. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +69 -37
  315. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +12 -4
  316. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +281 -37
  317. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +81 -27
  318. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +12 -4
  319. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +8 -5
  320. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +10 -4
  321. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +6 -4
  322. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +142 -47
  323. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +90 -47
  324. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +15 -4
  325. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +92 -129
  326. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +66 -57
  327. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +11 -5
  328. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +178 -13
  329. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +46 -14
  330. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +6 -4
  331. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +14 -7
  332. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +16 -6
  333. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +7 -4
  334. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +14 -9
  335. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +11 -5
  336. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +6 -4
  337. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +51 -22
  338. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +58 -24
  339. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +13 -4
  340. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +70 -22
  341. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +71 -29
  342. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +15 -4
  343. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +311 -38
  344. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +141 -63
  345. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +18 -4
  346. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +61 -13
  347. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +33 -19
  348. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +8 -4
  349. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +961 -237
  350. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +567 -273
  351. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +67 -4
  352. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +20 -10
  353. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +22 -8
  354. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +8 -4
  355. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +100 -35
  356. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +95 -45
  357. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +17 -4
  358. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +118 -16
  359. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +43 -12
  360. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +8 -4
  361. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +9 -6
  362. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +10 -4
  363. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +6 -4
  364. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +12 -7
  365. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +17 -7
  366. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +7 -4
  367. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +10 -7
  368. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +10 -4
  369. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +6 -4
  370. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +20 -8
  371. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +13 -7
  372. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +6 -4
  373. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +8 -5
  374. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +10 -4
  375. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +6 -4
  376. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +17 -10
  377. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +18 -8
  378. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +7 -4
  379. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +5 -6
  380. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -2
  381. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +5 -5
  382. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +19 -10
  383. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +19 -9
  384. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +7 -4
  385. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +14 -11
  386. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +10 -4
  387. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +6 -4
  388. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +216 -102
  389. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +124 -57
  390. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +21 -4
  391. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +5 -4
  392. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +7 -1
  393. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +6 -4
  394. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +24 -11
  395. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +33 -11
  396. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +10 -4
  397. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +42 -22
  398. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +27 -13
  399. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +8 -4
  400. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +444 -0
  401. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +135 -0
  402. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +38 -0
  403. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +56 -13
  404. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +29 -13
  405. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +7 -4
  406. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +29 -12
  407. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +20 -10
  408. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +7 -4
  409. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +13 -8
  410. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +17 -7
  411. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +7 -4
  412. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +343 -134
  413. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +209 -121
  414. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +26 -4
  415. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +8 -5
  416. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +10 -4
  417. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +6 -4
  418. 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
  419. 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
  420. 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
  421. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +31 -14
  422. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +39 -17
  423. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +10 -4
  424. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +6 -5
  425. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +7 -1
  426. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +6 -4
  427. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +22 -11
  428. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +14 -8
  429. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +6 -4
  430. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +8 -5
  431. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +10 -4
  432. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +6 -4
  433. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +105 -0
  434. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +51 -0
  435. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +32 -0
  436. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +5 -4
  437. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +3 -1
  438. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +5 -4
  439. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +170 -31
  440. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +83 -37
  441. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +14 -4
  442. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +25 -12
  443. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +27 -13
  444. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +8 -4
  445. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +214 -63
  446. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +100 -61
  447. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +12 -4
  448. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +51 -13
  449. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +23 -11
  450. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +7 -4
  451. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +58 -20
  452. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +44 -26
  453. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +9 -4
  454. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +5 -4
  455. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +7 -1
  456. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +6 -4
  457. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +373 -58
  458. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +144 -61
  459. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +21 -4
  460. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +18 -8
  461. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +18 -8
  462. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +7 -4
  463. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +67 -25
  464. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +47 -25
  465. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +10 -4
  466. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +10 -7
  467. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +10 -4
  468. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +6 -4
  469. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +16 -6
  470. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +26 -8
  471. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +9 -4
  472. data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb.h +142 -0
  473. data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.c +55 -0
  474. data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.h +32 -0
  475. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +42 -6
  476. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +16 -7
  477. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +6 -4
  478. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +10 -9
  479. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +23 -1
  480. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +10 -4
  481. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +16 -8
  482. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +15 -5
  483. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +7 -4
  484. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +13 -5
  485. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +11 -5
  486. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +6 -4
  487. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +9 -6
  488. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +10 -4
  489. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +6 -4
  490. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +8 -5
  491. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +10 -4
  492. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +6 -4
  493. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +16 -9
  494. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +24 -10
  495. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +8 -4
  496. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +5 -4
  497. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +11 -1
  498. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +7 -4
  499. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +51 -10
  500. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +30 -9
  501. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +7 -4
  502. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +14 -6
  503. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +15 -5
  504. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +7 -4
  505. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +30 -12
  506. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +32 -14
  507. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +9 -4
  508. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +24 -10
  509. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +40 -10
  510. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +12 -4
  511. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +30 -17
  512. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +33 -11
  513. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +10 -4
  514. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +12 -7
  515. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +19 -5
  516. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +8 -4
  517. data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +5 -4
  518. data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +3 -1
  519. data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +5 -4
  520. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +6 -5
  521. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +7 -1
  522. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +6 -4
  523. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +8 -7
  524. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +11 -1
  525. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +7 -4
  526. data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +11 -10
  527. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +15 -1
  528. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +8 -4
  529. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +14 -9
  530. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +15 -5
  531. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +7 -4
  532. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +5 -4
  533. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +3 -1
  534. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +5 -4
  535. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +8 -7
  536. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +7 -1
  537. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +6 -4
  538. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +12 -7
  539. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +11 -5
  540. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +6 -4
  541. data/src/core/ext/upb-gen/google/api/annotations.upb.h +17 -7
  542. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +5 -2
  543. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +5 -4
  544. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +135 -36
  545. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +121 -56
  546. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +18 -4
  547. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +525 -69
  548. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +202 -68
  549. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +23 -4
  550. data/src/core/ext/upb-gen/google/api/http.upb.h +30 -16
  551. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +22 -8
  552. data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +8 -4
  553. data/src/core/ext/upb-gen/google/api/httpbody.upb.h +12 -6
  554. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +10 -4
  555. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +6 -4
  556. data/src/core/ext/upb-gen/google/protobuf/any.upb.h +8 -6
  557. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +7 -1
  558. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +6 -4
  559. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +583 -181
  560. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +376 -215
  561. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +56 -21
  562. data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +8 -6
  563. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +7 -1
  564. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +6 -4
  565. data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +6 -4
  566. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +7 -1
  567. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +6 -4
  568. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +33 -10
  569. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +32 -14
  570. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +9 -4
  571. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +8 -6
  572. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +7 -1
  573. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +6 -4
  574. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +15 -13
  575. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +39 -1
  576. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +14 -4
  577. data/src/core/ext/upb-gen/google/rpc/status.upb.h +12 -6
  578. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +10 -4
  579. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +6 -4
  580. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +19 -10
  581. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +15 -5
  582. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +7 -4
  583. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +98 -39
  584. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +87 -37
  585. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +17 -4
  586. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +14 -8
  587. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +15 -5
  588. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +7 -4
  589. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +8 -6
  590. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +11 -1
  591. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +7 -4
  592. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +47 -22
  593. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +58 -20
  594. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +14 -4
  595. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +16 -8
  596. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +18 -4
  597. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +8 -4
  598. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +72 -19
  599. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +60 -22
  600. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +14 -4
  601. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +69 -23
  602. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +31 -12
  603. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +8 -4
  604. data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +19 -9
  605. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +13 -6
  606. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +6 -4
  607. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +6 -5
  608. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +4 -1
  609. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +5 -4
  610. data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +19 -9
  611. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +13 -6
  612. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +6 -4
  613. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +18 -8
  614. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +13 -6
  615. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +6 -4
  616. data/src/core/ext/upb-gen/validate/validate.upb.h +264 -172
  617. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +185 -87
  618. data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +29 -5
  619. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +69 -23
  620. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +31 -12
  621. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +8 -4
  622. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +19 -9
  623. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +13 -6
  624. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +6 -4
  625. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +6 -5
  626. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +4 -1
  627. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +5 -4
  628. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +46 -18
  629. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +32 -11
  630. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +9 -4
  631. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +18 -8
  632. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +13 -6
  633. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +6 -4
  634. data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +6 -5
  635. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +7 -1
  636. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +6 -4
  637. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +9 -6
  638. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +10 -4
  639. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +6 -4
  640. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +16 -9
  641. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +18 -8
  642. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +7 -4
  643. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +11 -4
  644. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +14 -4
  645. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +7 -4
  646. data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +9 -6
  647. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +10 -4
  648. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +6 -4
  649. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +12 -7
  650. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +11 -5
  651. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +6 -4
  652. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +21 -11
  653. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +18 -8
  654. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +7 -4
  655. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +11 -8
  656. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +10 -4
  657. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +6 -4
  658. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +29 -10
  659. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +24 -6
  660. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +9 -4
  661. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +8 -5
  662. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +10 -4
  663. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +6 -4
  664. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +9 -6
  665. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +10 -4
  666. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +6 -4
  667. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +13 -5
  668. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +17 -7
  669. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +7 -4
  670. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +5 -4
  671. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +7 -1
  672. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +6 -4
  673. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +19 -6
  674. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +18 -8
  675. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +7 -4
  676. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +81 -22
  677. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +85 -43
  678. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +15 -4
  679. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +44 -7
  680. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +48 -22
  681. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +11 -4
  682. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +9 -6
  683. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +14 -4
  684. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +7 -4
  685. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +18 -10
  686. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +17 -7
  687. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +7 -4
  688. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +17 -8
  689. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +19 -9
  690. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +7 -4
  691. data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +12 -10
  692. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +15 -1
  693. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +8 -4
  694. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +9 -6
  695. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +10 -4
  696. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +6 -4
  697. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +2 -1
  698. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +5 -4
  699. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +2 -1
  700. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +5 -4
  701. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +2 -1
  702. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +5 -4
  703. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +13 -11
  704. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +5 -4
  705. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +2 -1
  706. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +5 -4
  707. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +2 -1
  708. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +5 -4
  709. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +2 -1
  710. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +5 -4
  711. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +2 -1
  712. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +5 -4
  713. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +2 -1
  714. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +5 -4
  715. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +90 -82
  716. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +5 -4
  717. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +2 -1
  718. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +5 -4
  719. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
  720. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +5 -4
  721. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
  722. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +5 -4
  723. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +63 -61
  724. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -4
  725. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +223 -211
  726. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +10 -4
  727. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -1
  728. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +5 -4
  729. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +419 -393
  730. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +10 -4
  731. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +2 -1
  732. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +5 -4
  733. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +116 -106
  734. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +5 -4
  735. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +2 -1
  736. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +5 -4
  737. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +2 -1
  738. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +5 -4
  739. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +2 -1
  740. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +5 -4
  741. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +201 -147
  742. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +35 -4
  743. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +12 -12
  744. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +5 -4
  745. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +2 -1
  746. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +5 -4
  747. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +2 -1
  748. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +5 -4
  749. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +2 -1
  750. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +5 -4
  751. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +175 -165
  752. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +5 -4
  753. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +199 -188
  754. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +5 -4
  755. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +2 -1
  756. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +5 -4
  757. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +2 -1
  758. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +5 -4
  759. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +272 -255
  760. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +5 -4
  761. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -1
  762. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +5 -4
  763. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +2 -1
  764. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +5 -4
  765. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.c +46 -0
  766. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.h +33 -0
  767. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +31 -20
  768. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +20 -4
  769. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -1
  770. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +5 -4
  771. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -1
  772. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +5 -4
  773. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -1
  774. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +5 -4
  775. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +41 -37
  776. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +5 -4
  777. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +124 -94
  778. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +10 -4
  779. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +2 -1
  780. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +5 -4
  781. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +43 -40
  782. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +5 -4
  783. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +60 -66
  784. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +5 -9
  785. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +75 -56
  786. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +5 -4
  787. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -1
  788. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +5 -4
  789. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +2 -1
  790. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +5 -4
  791. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +2 -1
  792. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +5 -4
  793. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +51 -49
  794. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +5 -4
  795. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +119 -97
  796. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +10 -4
  797. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +2 -1
  798. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +5 -4
  799. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +922 -895
  800. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +15 -4
  801. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +2 -1
  802. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +5 -4
  803. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +2 -1
  804. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +5 -4
  805. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +32 -21
  806. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +10 -4
  807. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +20 -18
  808. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +5 -4
  809. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -1
  810. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +5 -4
  811. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +2 -1
  812. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +5 -4
  813. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +2 -1
  814. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +5 -4
  815. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +2 -1
  816. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +5 -4
  817. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +2 -1
  818. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +5 -4
  819. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +17 -19
  820. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +5 -4
  821. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +2 -1
  822. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +5 -4
  823. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +23 -21
  824. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +5 -4
  825. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +147 -143
  826. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +5 -4
  827. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -1
  828. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +5 -4
  829. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -1
  830. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +5 -4
  831. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -1
  832. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +5 -4
  833. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +87 -0
  834. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +48 -0
  835. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +38 -34
  836. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +5 -4
  837. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -1
  838. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -4
  839. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +2 -1
  840. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +5 -4
  841. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +465 -459
  842. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -4
  843. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +2 -1
  844. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +5 -4
  845. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +50 -0
  846. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +33 -0
  847. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -1
  848. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +5 -4
  849. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +96 -88
  850. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +10 -4
  851. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -1
  852. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +5 -4
  853. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +204 -192
  854. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +5 -4
  855. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +21 -18
  856. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +5 -4
  857. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +2 -1
  858. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +5 -4
  859. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +2 -1
  860. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +5 -4
  861. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +150 -136
  862. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +10 -4
  863. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -1
  864. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +5 -4
  865. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +25 -23
  866. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +5 -4
  867. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +2 -1
  868. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +5 -4
  869. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +2 -1
  870. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +5 -4
  871. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.c +41 -0
  872. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.h +33 -0
  873. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +28 -20
  874. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +5 -4
  875. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +2 -1
  876. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +5 -4
  877. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +2 -1
  878. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +5 -4
  879. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +2 -1
  880. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +5 -4
  881. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +2 -1
  882. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +5 -4
  883. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +2 -1
  884. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +5 -4
  885. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +2 -1
  886. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +5 -4
  887. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +2 -1
  888. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +5 -4
  889. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +41 -34
  890. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +5 -4
  891. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +2 -1
  892. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +5 -4
  893. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +2 -1
  894. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +5 -4
  895. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +2 -1
  896. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +5 -4
  897. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -1
  898. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +5 -4
  899. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +2 -1
  900. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +5 -4
  901. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +2 -1
  902. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +5 -4
  903. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +2 -1
  904. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +5 -4
  905. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +2 -1
  906. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +5 -4
  907. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +2 -1
  908. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +5 -4
  909. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +2 -1
  910. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +5 -4
  911. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +2 -1
  912. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +5 -4
  913. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +2 -1
  914. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +5 -4
  915. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +2 -1
  916. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +5 -4
  917. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
  918. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +5 -4
  919. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +110 -108
  920. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +5 -4
  921. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +103 -79
  922. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +15 -4
  923. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
  924. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +5 -4
  925. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
  926. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +5 -4
  927. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
  928. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +5 -4
  929. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +485 -458
  930. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +10 -4
  931. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
  932. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +5 -4
  933. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
  934. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +5 -4
  935. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
  936. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +5 -4
  937. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
  938. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +5 -4
  939. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
  940. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +5 -4
  941. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
  942. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +5 -4
  943. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +2 -1
  944. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +5 -4
  945. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
  946. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +5 -4
  947. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
  948. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +5 -4
  949. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
  950. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +5 -4
  951. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
  952. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +5 -4
  953. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
  954. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +5 -4
  955. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
  956. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +5 -4
  957. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +2 -1
  958. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +5 -4
  959. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +2 -1
  960. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +5 -4
  961. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +2 -1
  962. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +5 -4
  963. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +2 -1
  964. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +5 -4
  965. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +2 -1
  966. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +5 -4
  967. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +2 -1
  968. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +5 -4
  969. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +2 -1
  970. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +5 -4
  971. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +2 -1
  972. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +5 -4
  973. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +2 -1
  974. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +5 -4
  975. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +2 -1
  976. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +5 -4
  977. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +2 -1
  978. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +5 -4
  979. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +2 -1
  980. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +5 -4
  981. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +2 -1
  982. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +5 -4
  983. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +2 -1
  984. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +5 -4
  985. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +2 -1
  986. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +5 -4
  987. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +2 -1
  988. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +5 -4
  989. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +2 -1
  990. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +5 -4
  991. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +2 -1
  992. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +5 -4
  993. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +2 -1
  994. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +5 -4
  995. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +2 -1
  996. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +5 -4
  997. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +2 -1
  998. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +5 -4
  999. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +2 -1
  1000. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +5 -4
  1001. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +2 -1
  1002. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +5 -4
  1003. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +2 -1
  1004. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +5 -4
  1005. data/src/core/filter/blackboard.cc +33 -0
  1006. data/src/core/filter/blackboard.h +70 -0
  1007. data/src/core/filter/filter_args.h +112 -0
  1008. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +13 -12
  1009. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +1 -1
  1010. data/src/core/handshaker/handshaker.cc +124 -159
  1011. data/src/core/handshaker/handshaker.h +58 -52
  1012. data/src/core/handshaker/handshaker_registry.cc +1 -2
  1013. data/src/core/handshaker/handshaker_registry.h +2 -2
  1014. data/src/core/handshaker/http_connect/http_connect_handshaker.cc +120 -162
  1015. data/src/core/handshaker/http_connect/http_connect_handshaker.h +1 -1
  1016. data/src/core/handshaker/http_connect/http_proxy_mapper.cc +61 -69
  1017. data/src/core/handshaker/http_connect/http_proxy_mapper.h +7 -8
  1018. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +57 -0
  1019. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +46 -0
  1020. data/src/core/handshaker/proxy_mapper.h +6 -7
  1021. data/src/core/handshaker/proxy_mapper_registry.cc +7 -8
  1022. data/src/core/handshaker/proxy_mapper_registry.h +6 -7
  1023. data/src/core/handshaker/security/secure_endpoint.cc +97 -84
  1024. data/src/core/handshaker/security/secure_endpoint.h +6 -7
  1025. data/src/core/handshaker/security/security_handshaker.cc +168 -224
  1026. data/src/core/handshaker/security/security_handshaker.h +3 -4
  1027. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +54 -66
  1028. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.h +1 -1
  1029. data/src/core/lib/address_utils/parse_address.cc +30 -43
  1030. data/src/core/lib/address_utils/parse_address.h +2 -4
  1031. data/src/core/lib/address_utils/sockaddr_utils.cc +9 -12
  1032. data/src/core/lib/address_utils/sockaddr_utils.h +1 -3
  1033. data/src/core/lib/channel/call_finalization.h +2 -2
  1034. data/src/core/lib/channel/channel_args.cc +30 -36
  1035. data/src/core/lib/channel/channel_args.h +43 -29
  1036. data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
  1037. data/src/core/lib/channel/channel_args_preconditioning.h +4 -4
  1038. data/src/core/lib/channel/channel_stack.cc +13 -76
  1039. data/src/core/lib/channel/channel_stack.h +26 -61
  1040. data/src/core/lib/channel/channel_stack_builder.cc +2 -2
  1041. data/src/core/lib/channel/channel_stack_builder.h +3 -9
  1042. data/src/core/lib/channel/channel_stack_builder_impl.cc +5 -150
  1043. data/src/core/lib/channel/channel_stack_builder_impl.h +14 -4
  1044. data/src/core/lib/channel/connected_channel.cc +48 -690
  1045. data/src/core/lib/channel/promise_based_filter.cc +190 -260
  1046. data/src/core/lib/channel/promise_based_filter.h +214 -625
  1047. data/src/core/lib/channel/status_util.cc +2 -4
  1048. data/src/core/lib/channel/status_util.h +3 -3
  1049. data/src/core/lib/compression/compression.cc +9 -10
  1050. data/src/core/lib/compression/compression_internal.cc +14 -17
  1051. data/src/core/lib/compression/compression_internal.h +6 -8
  1052. data/src/core/lib/compression/message_compress.cc +9 -12
  1053. data/src/core/lib/debug/trace.cc +48 -66
  1054. data/src/core/lib/debug/trace.h +2 -97
  1055. data/src/core/lib/debug/trace_flags.cc +245 -0
  1056. data/src/core/lib/debug/trace_flags.h +132 -0
  1057. data/src/core/lib/debug/trace_impl.h +125 -0
  1058. data/src/core/lib/event_engine/ares_resolver.cc +158 -86
  1059. data/src/core/lib/event_engine/ares_resolver.h +19 -30
  1060. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +15 -20
  1061. data/src/core/lib/event_engine/cf_engine/cf_engine.h +3 -5
  1062. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +50 -38
  1063. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +6 -10
  1064. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +3 -5
  1065. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +27 -35
  1066. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +5 -9
  1067. data/src/core/lib/event_engine/channel_args_endpoint_config.cc +7 -10
  1068. data/src/core/lib/event_engine/channel_args_endpoint_config.h +7 -9
  1069. data/src/core/lib/event_engine/common_closures.h +5 -7
  1070. data/src/core/lib/event_engine/default_event_engine.cc +69 -42
  1071. data/src/core/lib/event_engine/default_event_engine.h +27 -36
  1072. data/src/core/lib/event_engine/default_event_engine_factory.cc +8 -14
  1073. data/src/core/lib/event_engine/default_event_engine_factory.h +4 -6
  1074. data/src/core/lib/event_engine/event_engine.cc +37 -8
  1075. data/src/core/lib/event_engine/event_engine_context.h +4 -2
  1076. data/src/core/lib/event_engine/extensions/can_track_errors.h +4 -6
  1077. data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +3 -6
  1078. data/src/core/lib/event_engine/extensions/supports_fd.h +29 -7
  1079. data/src/core/lib/event_engine/extensions/tcp_trace.h +40 -0
  1080. data/src/core/lib/event_engine/forkable.cc +9 -13
  1081. data/src/core/lib/event_engine/forkable.h +4 -18
  1082. data/src/core/lib/event_engine/grpc_polled_fd.h +5 -8
  1083. data/src/core/lib/event_engine/handle_containers.h +4 -7
  1084. data/src/core/lib/event_engine/memory_allocator_factory.h +5 -8
  1085. data/src/core/lib/event_engine/nameser.h +1 -1
  1086. data/src/core/lib/event_engine/poller.h +4 -6
  1087. data/src/core/lib/event_engine/posix.h +2 -4
  1088. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +25 -73
  1089. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +10 -13
  1090. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +21 -72
  1091. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +6 -9
  1092. data/src/core/lib/event_engine/posix_engine/event_poller.h +5 -8
  1093. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +6 -9
  1094. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +4 -6
  1095. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +6 -10
  1096. data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +6 -8
  1097. data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +3 -6
  1098. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +7 -11
  1099. data/src/core/lib/event_engine/posix_engine/lockfree_event.h +4 -7
  1100. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +5 -8
  1101. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +4 -7
  1102. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +93 -89
  1103. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +13 -16
  1104. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +84 -62
  1105. data/src/core/lib/event_engine/posix_engine/posix_engine.h +20 -20
  1106. data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +5 -7
  1107. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +27 -33
  1108. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +16 -17
  1109. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +24 -32
  1110. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +3 -6
  1111. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +49 -44
  1112. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +12 -14
  1113. data/src/core/lib/event_engine/posix_engine/timer.cc +9 -11
  1114. data/src/core/lib/event_engine/posix_engine/timer.h +9 -13
  1115. data/src/core/lib/event_engine/posix_engine/timer_heap.cc +4 -7
  1116. data/src/core/lib/event_engine/posix_engine/timer_heap.h +4 -6
  1117. data/src/core/lib/event_engine/posix_engine/timer_manager.cc +17 -28
  1118. data/src/core/lib/event_engine/posix_engine/timer_manager.h +9 -13
  1119. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +11 -17
  1120. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +27 -30
  1121. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +7 -10
  1122. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +4 -7
  1123. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +6 -9
  1124. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +4 -7
  1125. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +4 -6
  1126. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +4 -7
  1127. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +4 -6
  1128. data/src/core/lib/event_engine/query_extensions.h +4 -6
  1129. data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +5 -9
  1130. data/src/core/lib/event_engine/resolved_address.cc +7 -9
  1131. data/src/core/lib/event_engine/resolved_address_internal.h +2 -4
  1132. data/src/core/lib/event_engine/shim.cc +3 -5
  1133. data/src/core/lib/event_engine/shim.h +2 -4
  1134. data/src/core/lib/event_engine/slice.cc +5 -10
  1135. data/src/core/lib/event_engine/slice_buffer.cc +3 -6
  1136. data/src/core/lib/event_engine/tcp_socket_utils.cc +15 -26
  1137. data/src/core/lib/event_engine/tcp_socket_utils.h +8 -10
  1138. data/src/core/lib/event_engine/thread_local.cc +2 -4
  1139. data/src/core/lib/event_engine/thread_local.h +3 -5
  1140. data/src/core/lib/event_engine/thread_pool/thread_count.cc +7 -11
  1141. data/src/core/lib/event_engine/thread_pool/thread_count.h +10 -25
  1142. data/src/core/lib/event_engine/thread_pool/thread_pool.h +4 -8
  1143. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +4 -7
  1144. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +43 -52
  1145. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +12 -19
  1146. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +52 -27
  1147. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +11 -12
  1148. data/src/core/lib/event_engine/time_util.cc +4 -6
  1149. data/src/core/lib/event_engine/time_util.h +3 -6
  1150. data/src/core/lib/event_engine/utils.cc +21 -9
  1151. data/src/core/lib/event_engine/utils.h +12 -8
  1152. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +128 -105
  1153. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +6 -10
  1154. data/src/core/lib/event_engine/windows/iocp.cc +16 -18
  1155. data/src/core/lib/event_engine/windows/iocp.h +4 -7
  1156. data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +6 -10
  1157. data/src/core/lib/event_engine/windows/native_windows_dns_resolver.h +2 -4
  1158. data/src/core/lib/event_engine/windows/win_socket.cc +44 -37
  1159. data/src/core/lib/event_engine/windows/win_socket.h +10 -14
  1160. data/src/core/lib/event_engine/windows/windows_endpoint.cc +48 -37
  1161. data/src/core/lib/event_engine/windows/windows_endpoint.h +4 -6
  1162. data/src/core/lib/event_engine/windows/windows_engine.cc +245 -138
  1163. data/src/core/lib/event_engine/windows/windows_engine.h +145 -37
  1164. data/src/core/lib/event_engine/windows/windows_listener.cc +24 -41
  1165. data/src/core/lib/event_engine/windows/windows_listener.h +6 -9
  1166. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +5 -7
  1167. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +5 -9
  1168. data/src/core/lib/event_engine/work_queue/work_queue.h +4 -7
  1169. data/src/core/lib/experiments/config.cc +55 -28
  1170. data/src/core/lib/experiments/config.h +56 -3
  1171. data/src/core/lib/experiments/experiments.cc +308 -366
  1172. data/src/core/lib/experiments/experiments.h +144 -155
  1173. data/src/core/lib/iomgr/buffer_list.cc +6 -6
  1174. data/src/core/lib/iomgr/buffer_list.h +23 -23
  1175. data/src/core/lib/iomgr/call_combiner.cc +39 -66
  1176. data/src/core/lib/iomgr/call_combiner.h +13 -17
  1177. data/src/core/lib/iomgr/cfstream_handle.cc +14 -22
  1178. data/src/core/lib/iomgr/cfstream_handle.h +1 -1
  1179. data/src/core/lib/iomgr/closure.cc +2 -2
  1180. data/src/core/lib/iomgr/closure.h +13 -21
  1181. data/src/core/lib/iomgr/combiner.cc +33 -49
  1182. data/src/core/lib/iomgr/combiner.h +2 -5
  1183. data/src/core/lib/iomgr/endpoint.cc +0 -6
  1184. data/src/core/lib/iomgr/endpoint.h +3 -4
  1185. data/src/core/lib/iomgr/endpoint_cfstream.cc +40 -73
  1186. data/src/core/lib/iomgr/endpoint_pair_posix.cc +3 -6
  1187. data/src/core/lib/iomgr/endpoint_pair_windows.cc +6 -8
  1188. data/src/core/lib/iomgr/error.cc +24 -34
  1189. data/src/core/lib/iomgr/error.h +7 -10
  1190. data/src/core/lib/iomgr/error_cfstream.cc +1 -3
  1191. data/src/core/lib/iomgr/ev_apple.cc +16 -24
  1192. data/src/core/lib/iomgr/ev_epoll1_linux.cc +69 -115
  1193. data/src/core/lib/iomgr/ev_poll_posix.cc +53 -53
  1194. data/src/core/lib/iomgr/ev_posix.cc +67 -58
  1195. data/src/core/lib/iomgr/ev_posix.h +9 -12
  1196. data/src/core/lib/iomgr/event_engine_shims/closure.cc +10 -14
  1197. data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -2
  1198. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +34 -54
  1199. data/src/core/lib/iomgr/event_engine_shims/endpoint.h +2 -2
  1200. data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +9 -14
  1201. data/src/core/lib/iomgr/exec_ctx.cc +11 -21
  1202. data/src/core/lib/iomgr/exec_ctx.h +23 -146
  1203. data/src/core/lib/iomgr/executor.cc +55 -64
  1204. data/src/core/lib/iomgr/executor.h +2 -2
  1205. data/src/core/lib/iomgr/fork_posix.cc +11 -15
  1206. data/src/core/lib/iomgr/fork_windows.cc +3 -2
  1207. data/src/core/lib/iomgr/internal_errqueue.cc +4 -4
  1208. data/src/core/lib/iomgr/iocp_windows.cc +8 -10
  1209. data/src/core/lib/iomgr/iomgr.cc +18 -24
  1210. data/src/core/lib/iomgr/iomgr.h +1 -2
  1211. data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
  1212. data/src/core/lib/iomgr/iomgr_internal.h +1 -2
  1213. data/src/core/lib/iomgr/iomgr_posix.cc +2 -1
  1214. data/src/core/lib/iomgr/iomgr_windows.cc +4 -5
  1215. data/src/core/lib/iomgr/lockfree_event.cc +10 -20
  1216. data/src/core/lib/iomgr/nameser.h +1 -1
  1217. data/src/core/lib/iomgr/polling_entity.cc +13 -7
  1218. data/src/core/lib/iomgr/pollset.h +0 -2
  1219. data/src/core/lib/iomgr/pollset_set_windows.cc +1 -2
  1220. data/src/core/lib/iomgr/pollset_windows.cc +2 -6
  1221. data/src/core/lib/iomgr/port.h +2 -2
  1222. data/src/core/lib/iomgr/resolve_address.cc +3 -5
  1223. data/src/core/lib/iomgr/resolve_address.h +4 -6
  1224. data/src/core/lib/iomgr/resolve_address_impl.h +1 -2
  1225. data/src/core/lib/iomgr/resolve_address_posix.cc +12 -23
  1226. data/src/core/lib/iomgr/resolve_address_posix.h +2 -2
  1227. data/src/core/lib/iomgr/resolve_address_windows.cc +9 -14
  1228. data/src/core/lib/iomgr/resolve_address_windows.h +2 -2
  1229. data/src/core/lib/iomgr/resolved_address.h +1 -2
  1230. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +3 -6
  1231. data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
  1232. data/src/core/lib/iomgr/socket_mutator.cc +2 -3
  1233. data/src/core/lib/iomgr/socket_mutator.h +1 -2
  1234. data/src/core/lib/iomgr/socket_utils.h +1 -2
  1235. data/src/core/lib/iomgr/socket_utils_common_posix.cc +43 -52
  1236. data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
  1237. data/src/core/lib/iomgr/socket_utils_posix.cc +6 -8
  1238. data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
  1239. data/src/core/lib/iomgr/socket_windows.cc +7 -11
  1240. data/src/core/lib/iomgr/socket_windows.h +1 -2
  1241. data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -20
  1242. data/src/core/lib/iomgr/tcp_client_posix.cc +19 -32
  1243. data/src/core/lib/iomgr/tcp_client_windows.cc +8 -13
  1244. data/src/core/lib/iomgr/tcp_posix.cc +89 -158
  1245. data/src/core/lib/iomgr/tcp_posix.h +1 -3
  1246. data/src/core/lib/iomgr/tcp_server.h +2 -2
  1247. data/src/core/lib/iomgr/tcp_server_posix.cc +41 -61
  1248. data/src/core/lib/iomgr/tcp_server_utils_posix.h +2 -3
  1249. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +7 -11
  1250. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +11 -13
  1251. data/src/core/lib/iomgr/tcp_server_windows.cc +20 -29
  1252. data/src/core/lib/iomgr/tcp_windows.cc +32 -62
  1253. data/src/core/lib/iomgr/timer.h +2 -2
  1254. data/src/core/lib/iomgr/timer_generic.cc +72 -105
  1255. data/src/core/lib/iomgr/timer_heap.cc +3 -4
  1256. data/src/core/lib/iomgr/timer_manager.cc +26 -52
  1257. data/src/core/lib/iomgr/timer_manager.h +1 -2
  1258. data/src/core/lib/iomgr/unix_sockets_posix.cc +4 -6
  1259. data/src/core/lib/iomgr/unix_sockets_posix.h +3 -4
  1260. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -4
  1261. data/src/core/lib/iomgr/vsock.cc +3 -6
  1262. data/src/core/lib/iomgr/vsock.h +3 -4
  1263. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -4
  1264. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +6 -7
  1265. data/src/core/lib/promise/activity.cc +4 -4
  1266. data/src/core/lib/promise/activity.h +81 -29
  1267. data/src/core/lib/promise/all_ok.h +54 -11
  1268. data/src/core/lib/promise/arena_promise.h +2 -4
  1269. data/src/core/lib/promise/cancel_callback.h +34 -6
  1270. data/src/core/lib/promise/context.h +19 -10
  1271. data/src/core/lib/promise/detail/basic_seq.h +33 -20
  1272. data/src/core/lib/promise/detail/join_state.h +556 -814
  1273. data/src/core/lib/promise/detail/promise_factory.h +124 -48
  1274. data/src/core/lib/promise/detail/promise_like.h +50 -21
  1275. data/src/core/lib/promise/detail/seq_state.h +1378 -2254
  1276. data/src/core/lib/promise/detail/status.h +36 -15
  1277. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +2 -3
  1278. data/src/core/lib/promise/for_each.h +46 -40
  1279. data/src/core/lib/promise/if.h +69 -37
  1280. data/src/core/lib/promise/interceptor_list.h +30 -44
  1281. data/src/core/lib/promise/latch.h +33 -40
  1282. data/src/core/lib/promise/loop.h +82 -29
  1283. data/src/core/lib/promise/map.h +186 -22
  1284. data/src/core/lib/promise/observable.h +181 -0
  1285. data/src/core/lib/promise/party.cc +326 -149
  1286. data/src/core/lib/promise/party.h +390 -395
  1287. data/src/core/lib/promise/pipe.h +33 -56
  1288. data/src/core/lib/promise/poll.h +120 -40
  1289. data/src/core/lib/promise/prioritized_race.h +17 -23
  1290. data/src/core/lib/promise/promise.h +15 -10
  1291. data/src/core/lib/promise/race.h +14 -17
  1292. data/src/core/lib/promise/seq.h +99 -71
  1293. data/src/core/lib/promise/sleep.cc +6 -6
  1294. data/src/core/lib/promise/sleep.h +19 -6
  1295. data/src/core/lib/promise/status_flag.h +173 -51
  1296. data/src/core/lib/promise/try_join.h +156 -26
  1297. data/src/core/lib/promise/try_seq.h +151 -89
  1298. data/src/core/lib/resource_quota/api.cc +4 -6
  1299. data/src/core/lib/resource_quota/api.h +2 -3
  1300. data/src/core/lib/resource_quota/arena.cc +64 -86
  1301. data/src/core/lib/resource_quota/arena.h +225 -210
  1302. data/src/core/lib/resource_quota/connection_quota.cc +2 -3
  1303. data/src/core/lib/resource_quota/connection_quota.h +9 -6
  1304. data/src/core/lib/resource_quota/memory_quota.cc +93 -90
  1305. data/src/core/lib/resource_quota/memory_quota.h +29 -23
  1306. data/src/core/lib/resource_quota/periodic_update.cc +5 -5
  1307. data/src/core/lib/resource_quota/periodic_update.h +2 -4
  1308. data/src/core/lib/resource_quota/resource_quota.h +8 -9
  1309. data/src/core/lib/resource_quota/thread_quota.cc +2 -3
  1310. data/src/core/lib/resource_quota/thread_quota.h +5 -6
  1311. data/src/core/lib/security/authorization/audit_logging.cc +5 -7
  1312. data/src/core/lib/security/authorization/audit_logging.h +5 -6
  1313. data/src/core/lib/security/authorization/authorization_engine.h +3 -3
  1314. data/src/core/lib/security/authorization/authorization_policy_provider.h +4 -5
  1315. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +2 -2
  1316. data/src/core/lib/security/authorization/evaluate_args.cc +13 -17
  1317. data/src/core/lib/security/authorization/evaluate_args.h +6 -7
  1318. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +2 -4
  1319. data/src/core/lib/security/authorization/grpc_authorization_engine.h +2 -3
  1320. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +21 -36
  1321. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +10 -8
  1322. data/src/core/lib/security/authorization/matchers.cc +5 -7
  1323. data/src/core/lib/security/authorization/matchers.h +5 -7
  1324. data/src/core/lib/security/authorization/rbac_policy.cc +3 -3
  1325. data/src/core/lib/security/authorization/rbac_policy.h +6 -8
  1326. data/src/core/lib/security/authorization/stdout_logger.cc +4 -5
  1327. data/src/core/lib/security/authorization/stdout_logger.h +4 -4
  1328. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +8 -9
  1329. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +4 -5
  1330. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +2 -3
  1331. data/src/core/lib/security/context/security_context.cc +48 -48
  1332. data/src/core/lib/security/context/security_context.h +47 -18
  1333. data/src/core/lib/security/credentials/alts/alts_credentials.cc +5 -5
  1334. data/src/core/lib/security/credentials/alts/alts_credentials.h +9 -5
  1335. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -4
  1336. data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +1 -2
  1337. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +3 -5
  1338. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +3 -5
  1339. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +4 -5
  1340. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +3 -3
  1341. data/src/core/lib/security/credentials/call_creds_util.cc +8 -7
  1342. data/src/core/lib/security/credentials/call_creds_util.h +2 -2
  1343. data/src/core/lib/security/credentials/channel_creds_registry.h +7 -8
  1344. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +15 -14
  1345. data/src/core/lib/security/credentials/composite/composite_credentials.cc +10 -14
  1346. data/src/core/lib/security/credentials/composite/composite_credentials.h +11 -10
  1347. data/src/core/lib/security/credentials/credentials.cc +18 -19
  1348. data/src/core/lib/security/credentials/credentials.h +12 -14
  1349. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +335 -340
  1350. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +60 -48
  1351. data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
  1352. data/src/core/lib/security/credentials/external/aws_request_signer.h +3 -3
  1353. data/src/core/lib/security/credentials/external/external_account_credentials.cc +407 -374
  1354. data/src/core/lib/security/credentials/external/external_account_credentials.h +128 -60
  1355. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +89 -52
  1356. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +32 -11
  1357. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +102 -129
  1358. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +22 -24
  1359. data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
  1360. data/src/core/lib/security/credentials/fake/fake_credentials.h +9 -8
  1361. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +195 -0
  1362. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
  1363. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +7 -8
  1364. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +58 -76
  1365. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +8 -6
  1366. data/src/core/lib/security/credentials/iam/iam_credentials.cc +6 -11
  1367. data/src/core/lib/security/credentials/iam/iam_credentials.h +9 -8
  1368. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
  1369. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +2 -2
  1370. data/src/core/lib/security/credentials/jwt/json_token.cc +25 -29
  1371. data/src/core/lib/security/credentials/jwt/json_token.h +2 -3
  1372. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +23 -31
  1373. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +12 -12
  1374. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +68 -76
  1375. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +3 -4
  1376. data/src/core/lib/security/credentials/local/local_credentials.cc +2 -2
  1377. data/src/core/lib/security/credentials/local/local_credentials.h +3 -3
  1378. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +196 -297
  1379. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +51 -74
  1380. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +20 -34
  1381. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +12 -14
  1382. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +37 -49
  1383. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +5 -8
  1384. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +15 -17
  1385. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +18 -19
  1386. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +1 -3
  1387. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +122 -54
  1388. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +17 -16
  1389. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +6 -10
  1390. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -11
  1391. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +10 -13
  1392. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +1 -1
  1393. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +6 -11
  1394. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +9 -12
  1395. data/src/core/lib/security/credentials/tls/tls_credentials.cc +21 -24
  1396. data/src/core/lib/security/credentials/tls/tls_credentials.h +5 -3
  1397. data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -6
  1398. data/src/core/lib/security/credentials/tls/tls_utils.h +3 -3
  1399. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +304 -0
  1400. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +181 -0
  1401. data/src/core/lib/security/credentials/xds/xds_credentials.cc +16 -13
  1402. data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
  1403. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +23 -28
  1404. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +1 -1
  1405. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +27 -27
  1406. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +1 -1
  1407. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +4 -7
  1408. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
  1409. data/src/core/lib/security/security_connector/load_system_roots_supported.cc +10 -12
  1410. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +4 -6
  1411. data/src/core/lib/security/security_connector/local/local_security_connector.cc +26 -26
  1412. data/src/core/lib/security/security_connector/local/local_security_connector.h +1 -1
  1413. data/src/core/lib/security/security_connector/security_connector.cc +6 -11
  1414. data/src/core/lib/security/security_connector/security_connector.h +8 -11
  1415. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +23 -27
  1416. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +2 -3
  1417. data/src/core/lib/security/security_connector/ssl_utils.cc +34 -35
  1418. data/src/core/lib/security/security_connector/ssl_utils.h +7 -9
  1419. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +46 -59
  1420. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +20 -21
  1421. data/src/core/lib/security/transport/auth_filters.h +101 -9
  1422. data/src/core/lib/security/transport/client_auth_filter.cc +113 -32
  1423. data/src/core/lib/security/transport/server_auth_filter.cc +19 -38
  1424. data/src/core/lib/security/util/json_util.cc +4 -5
  1425. data/src/core/lib/security/util/json_util.h +1 -1
  1426. data/src/core/lib/slice/percent_encoding.cc +2 -5
  1427. data/src/core/lib/slice/slice.cc +4 -7
  1428. data/src/core/lib/slice/slice.h +6 -9
  1429. data/src/core/lib/slice/slice_buffer.cc +7 -9
  1430. data/src/core/lib/slice/slice_buffer.h +5 -6
  1431. data/src/core/lib/slice/slice_internal.h +3 -6
  1432. data/src/core/lib/slice/slice_refcount.h +8 -15
  1433. data/src/core/lib/slice/slice_string_helpers.cc +1 -1
  1434. data/src/core/lib/slice/slice_string_helpers.h +1 -2
  1435. data/src/core/lib/surface/byte_buffer.cc +1 -2
  1436. data/src/core/lib/surface/byte_buffer_reader.cc +3 -6
  1437. data/src/core/lib/surface/call.cc +158 -3826
  1438. data/src/core/lib/surface/call.h +67 -160
  1439. data/src/core/lib/surface/call_details.cc +4 -3
  1440. data/src/core/lib/surface/call_log_batch.cc +8 -11
  1441. data/src/core/lib/surface/call_test_only.h +1 -2
  1442. data/src/core/lib/surface/call_utils.cc +231 -0
  1443. data/src/core/lib/surface/call_utils.h +492 -0
  1444. data/src/core/lib/surface/channel.cc +47 -54
  1445. data/src/core/lib/surface/channel.h +24 -22
  1446. data/src/core/lib/surface/channel_create.cc +28 -13
  1447. data/src/core/lib/surface/channel_create.h +5 -5
  1448. data/src/core/lib/surface/channel_init.cc +270 -267
  1449. data/src/core/lib/surface/channel_init.h +173 -119
  1450. data/src/core/lib/surface/client_call.cc +456 -0
  1451. data/src/core/lib/surface/client_call.h +192 -0
  1452. data/src/core/lib/surface/completion_queue.cc +103 -138
  1453. data/src/core/lib/surface/completion_queue.h +4 -13
  1454. data/src/core/lib/surface/completion_queue_factory.cc +1 -3
  1455. data/src/core/lib/surface/connection_context.cc +77 -0
  1456. data/src/core/lib/surface/connection_context.h +156 -0
  1457. data/src/core/lib/surface/event_string.cc +9 -3
  1458. data/src/core/lib/surface/event_string.h +2 -2
  1459. data/src/core/lib/surface/filter_stack_call.cc +1154 -0
  1460. data/src/core/lib/surface/filter_stack_call.h +366 -0
  1461. data/src/core/lib/surface/init.cc +73 -28
  1462. data/src/core/lib/surface/init.h +5 -0
  1463. data/src/core/lib/surface/init_internally.h +13 -2
  1464. data/src/core/lib/surface/lame_client.cc +12 -15
  1465. data/src/core/lib/surface/lame_client.h +6 -5
  1466. data/src/core/lib/surface/legacy_channel.cc +67 -51
  1467. data/src/core/lib/surface/legacy_channel.h +16 -26
  1468. data/src/core/lib/surface/metadata_array.cc +5 -5
  1469. data/src/core/lib/surface/server_call.cc +259 -0
  1470. data/src/core/lib/surface/server_call.h +169 -0
  1471. data/src/core/lib/surface/validate_metadata.cc +3 -4
  1472. data/src/core/lib/surface/validate_metadata.h +2 -5
  1473. data/src/core/lib/surface/version.cc +2 -2
  1474. data/src/core/lib/transport/bdp_estimator.cc +12 -20
  1475. data/src/core/lib/transport/bdp_estimator.h +10 -16
  1476. data/src/core/lib/transport/call_arena_allocator.cc +4 -18
  1477. data/src/core/lib/transport/call_arena_allocator.h +30 -12
  1478. data/src/core/lib/transport/call_destination.h +76 -0
  1479. data/src/core/lib/transport/call_filters.cc +67 -405
  1480. data/src/core/lib/transport/call_filters.h +877 -778
  1481. data/src/core/lib/transport/call_final_info.cc +2 -2
  1482. data/src/core/lib/transport/call_final_info.h +3 -3
  1483. data/src/core/lib/transport/call_spine.cc +58 -74
  1484. data/src/core/lib/transport/call_spine.h +331 -361
  1485. data/src/core/lib/transport/call_state.cc +39 -0
  1486. data/src/core/lib/transport/call_state.h +1154 -0
  1487. data/src/core/lib/transport/connectivity_state.cc +43 -52
  1488. data/src/core/lib/transport/connectivity_state.h +7 -12
  1489. data/src/core/lib/transport/error_utils.cc +3 -4
  1490. data/src/core/lib/transport/error_utils.h +4 -5
  1491. data/src/core/lib/transport/http2_errors.h +5 -3
  1492. data/src/core/lib/transport/interception_chain.cc +155 -0
  1493. data/src/core/lib/transport/interception_chain.h +282 -0
  1494. data/src/core/lib/transport/message.cc +2 -2
  1495. data/src/core/lib/transport/message.h +5 -0
  1496. data/src/core/lib/transport/metadata.cc +27 -3
  1497. data/src/core/lib/transport/metadata.h +125 -2
  1498. data/src/core/lib/transport/metadata_batch.cc +14 -7
  1499. data/src/core/lib/transport/metadata_batch.h +152 -31
  1500. data/src/core/lib/transport/metadata_compression_traits.h +3 -4
  1501. data/src/core/lib/transport/metadata_info.h +1 -1
  1502. data/src/core/lib/transport/parsed_metadata.h +3 -5
  1503. data/src/core/lib/transport/simple_slice_based_metadata.h +1 -2
  1504. data/src/core/lib/transport/status_conversion.h +1 -1
  1505. data/src/core/lib/transport/timeout_encoding.cc +22 -23
  1506. data/src/core/lib/transport/timeout_encoding.h +4 -5
  1507. data/src/core/lib/transport/transport.cc +7 -13
  1508. data/src/core/lib/transport/transport.h +71 -63
  1509. data/src/core/lib/transport/transport_framing_endpoint_extension.h +47 -0
  1510. data/src/core/lib/transport/transport_op_string.cc +4 -6
  1511. data/src/core/load_balancing/address_filtering.cc +2 -4
  1512. data/src/core/load_balancing/address_filtering.h +4 -5
  1513. data/src/core/load_balancing/backend_metric_data.h +2 -2
  1514. data/src/core/load_balancing/backend_metric_parser.cc +22 -30
  1515. data/src/core/load_balancing/backend_metric_parser.h +1 -3
  1516. data/src/core/load_balancing/child_policy_handler.cc +37 -41
  1517. data/src/core/load_balancing/child_policy_handler.h +4 -5
  1518. data/src/core/load_balancing/delegating_helper.h +6 -7
  1519. data/src/core/load_balancing/endpoint_list.cc +23 -15
  1520. data/src/core/load_balancing/endpoint_list.h +27 -22
  1521. data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +12 -11
  1522. data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +8 -5
  1523. data/src/core/load_balancing/grpclb/grpclb.cc +175 -226
  1524. data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
  1525. data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +2 -3
  1526. data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -7
  1527. data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -10
  1528. data/src/core/load_balancing/grpclb/load_balancer_api.h +4 -6
  1529. data/src/core/load_balancing/health_check_client.cc +76 -128
  1530. data/src/core/load_balancing/health_check_client.h +3 -3
  1531. data/src/core/load_balancing/health_check_client_internal.h +15 -16
  1532. data/src/core/load_balancing/lb_policy.cc +9 -14
  1533. data/src/core/load_balancing/lb_policy.h +77 -51
  1534. data/src/core/load_balancing/lb_policy_factory.h +5 -6
  1535. data/src/core/load_balancing/lb_policy_registry.cc +15 -15
  1536. data/src/core/load_balancing/lb_policy_registry.h +5 -6
  1537. data/src/core/load_balancing/oob_backend_metric.cc +19 -25
  1538. data/src/core/load_balancing/oob_backend_metric.h +3 -3
  1539. data/src/core/load_balancing/oob_backend_metric_internal.h +8 -9
  1540. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +191 -247
  1541. data/src/core/load_balancing/outlier_detection/outlier_detection.h +9 -10
  1542. data/src/core/load_balancing/pick_first/pick_first.cc +333 -381
  1543. data/src/core/load_balancing/priority/priority.cc +102 -151
  1544. data/src/core/load_balancing/ring_hash/ring_hash.cc +254 -226
  1545. data/src/core/load_balancing/ring_hash/ring_hash.h +10 -18
  1546. data/src/core/load_balancing/rls/rls.cc +434 -528
  1547. data/src/core/load_balancing/rls/rls.h +97 -1
  1548. data/src/core/load_balancing/round_robin/round_robin.cc +71 -103
  1549. data/src/core/load_balancing/subchannel_interface.h +17 -6
  1550. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +8 -9
  1551. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +4 -5
  1552. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +159 -185
  1553. data/src/core/load_balancing/weighted_target/weighted_target.cc +79 -123
  1554. data/src/core/load_balancing/xds/cds.cc +65 -85
  1555. data/src/core/load_balancing/xds/xds_cluster_impl.cc +192 -172
  1556. data/src/core/load_balancing/xds/xds_cluster_manager.cc +63 -103
  1557. data/src/core/load_balancing/xds/xds_override_host.cc +163 -272
  1558. data/src/core/load_balancing/xds/xds_override_host.h +6 -7
  1559. data/src/core/load_balancing/xds/xds_wrr_locality.cc +48 -60
  1560. data/src/core/plugin_registry/grpc_plugin_registry.cc +6 -8
  1561. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +6 -1
  1562. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +98 -73
  1563. data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +2 -3
  1564. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +4 -6
  1565. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -6
  1566. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +119 -101
  1567. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +166 -151
  1568. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -18
  1569. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
  1570. data/src/core/resolver/dns/dns_resolver_plugin.cc +10 -11
  1571. data/src/core/resolver/dns/dns_resolver_plugin.h +1 -1
  1572. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +62 -74
  1573. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +3 -4
  1574. data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
  1575. data/src/core/resolver/dns/event_engine/service_config_helper.h +2 -2
  1576. data/src/core/resolver/dns/native/dns_resolver.cc +23 -32
  1577. data/src/core/resolver/dns/native/dns_resolver.h +1 -1
  1578. data/src/core/resolver/endpoint_addresses.cc +2 -5
  1579. data/src/core/resolver/endpoint_addresses.h +5 -3
  1580. data/src/core/resolver/fake/fake_resolver.cc +18 -21
  1581. data/src/core/resolver/fake/fake_resolver.h +10 -11
  1582. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +33 -38
  1583. data/src/core/resolver/polling_resolver.cc +41 -60
  1584. data/src/core/resolver/polling_resolver.h +11 -12
  1585. data/src/core/resolver/resolver.cc +2 -6
  1586. data/src/core/resolver/resolver.h +4 -10
  1587. data/src/core/resolver/resolver_factory.h +4 -5
  1588. data/src/core/resolver/resolver_registry.cc +12 -13
  1589. data/src/core/resolver/resolver_registry.h +4 -5
  1590. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +8 -9
  1591. data/src/core/resolver/xds/xds_config.cc +95 -0
  1592. data/src/core/resolver/xds/xds_config.h +108 -0
  1593. data/src/core/resolver/xds/xds_dependency_manager.cc +260 -342
  1594. data/src/core/resolver/xds/xds_dependency_manager.h +34 -89
  1595. data/src/core/resolver/xds/xds_resolver.cc +188 -210
  1596. data/src/core/resolver/xds/xds_resolver_attributes.h +7 -4
  1597. data/src/core/server/server.cc +658 -501
  1598. data/src/core/server/server.h +261 -97
  1599. data/src/core/server/server_call_tracer_filter.cc +22 -25
  1600. data/src/core/server/server_call_tracer_filter.h +1 -1
  1601. data/src/core/server/server_config_selector.h +6 -7
  1602. data/src/core/server/server_config_selector_filter.cc +23 -25
  1603. data/src/core/server/server_interface.h +2 -0
  1604. data/src/core/server/xds_channel_stack_modifier.cc +5 -5
  1605. data/src/core/server/xds_channel_stack_modifier.h +6 -7
  1606. data/src/core/server/xds_server_config_fetcher.cc +147 -223
  1607. data/src/core/service_config/service_config.h +4 -6
  1608. data/src/core/service_config/service_config_call_data.h +21 -20
  1609. data/src/core/service_config/service_config_channel_arg_filter.cc +21 -29
  1610. data/src/core/service_config/service_config_impl.cc +12 -14
  1611. data/src/core/service_config/service_config_impl.h +5 -8
  1612. data/src/core/service_config/service_config_parser.cc +4 -8
  1613. data/src/core/service_config/service_config_parser.h +3 -5
  1614. data/src/core/telemetry/call_tracer.cc +386 -0
  1615. data/src/core/telemetry/call_tracer.h +264 -0
  1616. data/src/core/telemetry/histogram_view.cc +69 -0
  1617. data/src/core/telemetry/histogram_view.h +36 -0
  1618. data/src/core/telemetry/metrics.cc +180 -0
  1619. data/src/core/telemetry/metrics.h +563 -0
  1620. data/src/core/telemetry/stats.cc +67 -0
  1621. data/src/core/telemetry/stats.h +62 -0
  1622. data/src/core/telemetry/stats_data.cc +931 -0
  1623. data/src/core/telemetry/stats_data.h +705 -0
  1624. data/src/core/telemetry/tcp_tracer.h +143 -0
  1625. data/src/core/tsi/alts/crypt/aes_gcm.cc +5 -8
  1626. data/src/core/tsi/alts/crypt/gsec.cc +2 -3
  1627. data/src/core/tsi/alts/crypt/gsec.h +3 -4
  1628. data/src/core/tsi/alts/frame_protector/alts_counter.cc +1 -2
  1629. data/src/core/tsi/alts/frame_protector/alts_counter.h +3 -4
  1630. data/src/core/tsi/alts/frame_protector/alts_crypter.cc +1 -2
  1631. data/src/core/tsi/alts/frame_protector/alts_crypter.h +2 -3
  1632. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -18
  1633. data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +1 -2
  1634. data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +1 -1
  1635. data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -1
  1636. data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -12
  1637. data/src/core/tsi/alts/frame_protector/frame_handler.h +1 -2
  1638. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +43 -48
  1639. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +2 -4
  1640. data/src/core/tsi/alts/handshaker/alts_shared_resource.h +1 -1
  1641. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +69 -71
  1642. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +3 -3
  1643. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
  1644. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +3 -4
  1645. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +14 -17
  1646. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +1 -2
  1647. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +11 -12
  1648. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +1 -2
  1649. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +9 -11
  1650. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -5
  1651. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +1 -2
  1652. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +10 -14
  1653. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +1 -2
  1654. data/src/core/tsi/fake_transport_security.cc +32 -32
  1655. data/src/core/tsi/local_transport_security.cc +9 -10
  1656. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +9 -12
  1657. data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +8 -10
  1658. data/src/core/tsi/ssl/session_cache/ssl_session.h +4 -5
  1659. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +7 -9
  1660. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +7 -8
  1661. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -4
  1662. data/src/core/tsi/ssl_transport_security.cc +135 -113
  1663. data/src/core/tsi/ssl_transport_security.h +6 -8
  1664. data/src/core/tsi/ssl_transport_security_utils.cc +77 -24
  1665. data/src/core/tsi/ssl_transport_security_utils.h +14 -5
  1666. data/src/core/tsi/ssl_types.h +1 -2
  1667. data/src/core/tsi/transport_security.cc +2 -7
  1668. data/src/core/tsi/transport_security.h +1 -4
  1669. data/src/core/tsi/transport_security_interface.h +3 -8
  1670. data/src/core/util/alloc.cc +69 -0
  1671. data/src/core/util/alloc.h +28 -0
  1672. data/src/core/util/atomic_utils.h +47 -0
  1673. data/src/core/util/avl.h +324 -0
  1674. data/src/core/util/backoff.cc +57 -0
  1675. data/src/core/util/backoff.h +86 -0
  1676. data/src/core/util/bitset.h +224 -0
  1677. data/src/core/util/chunked_vector.h +256 -0
  1678. data/src/core/util/construct_destruct.h +41 -0
  1679. data/src/core/util/cpp_impl_of.h +49 -0
  1680. data/src/core/util/crash.cc +40 -0
  1681. data/src/core/util/crash.h +36 -0
  1682. data/src/core/util/debug_location.h +106 -0
  1683. data/src/core/util/directory_reader.h +48 -0
  1684. data/src/core/util/down_cast.h +48 -0
  1685. data/src/core/util/dual_ref_counted.h +376 -0
  1686. data/src/core/util/dump_args.cc +54 -0
  1687. data/src/core/util/dump_args.h +114 -0
  1688. data/src/core/util/env.h +52 -0
  1689. data/src/core/util/event_log.cc +87 -0
  1690. data/src/core/util/event_log.h +79 -0
  1691. data/src/core/util/examine_stack.cc +43 -0
  1692. data/src/core/util/examine_stack.h +44 -0
  1693. data/src/core/util/fork.cc +241 -0
  1694. data/src/core/util/fork.h +98 -0
  1695. data/src/core/util/gcp_metadata_query.cc +132 -0
  1696. data/src/core/util/gcp_metadata_query.h +86 -0
  1697. data/src/core/util/gethostname.h +26 -0
  1698. data/src/core/util/gethostname_fallback.cc +30 -0
  1699. data/src/core/util/gethostname_host_name_max.cc +39 -0
  1700. data/src/core/util/gethostname_sysconf.cc +39 -0
  1701. data/src/core/util/glob.cc +70 -0
  1702. data/src/core/util/glob.h +29 -0
  1703. data/src/core/util/gpr_time.cc +266 -0
  1704. data/src/core/util/grpc_if_nametoindex.h +29 -0
  1705. data/src/core/util/grpc_if_nametoindex_posix.cc +41 -0
  1706. data/src/core/util/grpc_if_nametoindex_unsupported.cc +36 -0
  1707. data/src/core/util/host_port.cc +114 -0
  1708. data/src/core/util/host_port.h +57 -0
  1709. data/src/core/util/http_client/format_request.cc +134 -0
  1710. data/src/core/util/http_client/format_request.h +37 -0
  1711. data/src/core/util/http_client/httpcli.cc +427 -0
  1712. data/src/core/util/http_client/httpcli.h +279 -0
  1713. data/src/core/util/http_client/httpcli_security_connector.cc +210 -0
  1714. data/src/core/util/http_client/httpcli_ssl_credentials.h +38 -0
  1715. data/src/core/util/http_client/parser.cc +447 -0
  1716. data/src/core/util/http_client/parser.h +126 -0
  1717. data/src/core/util/if_list.h +4530 -0
  1718. data/src/core/util/iphone/cpu.cc +43 -0
  1719. data/src/core/util/json/json.h +29 -0
  1720. data/src/core/util/json/json_args.h +34 -0
  1721. data/src/core/util/json/json_channel_args.h +42 -0
  1722. data/src/core/util/json/json_object_loader.cc +215 -0
  1723. data/src/core/util/json/json_object_loader.h +644 -0
  1724. data/src/core/util/json/json_reader.cc +953 -0
  1725. data/src/core/util/json/json_reader.h +33 -0
  1726. data/src/core/util/json/json_util.cc +101 -0
  1727. data/src/core/util/json/json_util.h +163 -0
  1728. data/src/core/util/json/json_writer.cc +337 -0
  1729. data/src/core/util/json/json_writer.h +33 -0
  1730. data/src/core/util/latent_see.cc +163 -0
  1731. data/src/core/util/latent_see.h +334 -0
  1732. data/src/core/util/linux/cpu.cc +86 -0
  1733. data/src/core/util/linux/env.cc +61 -0
  1734. data/src/core/util/load_file.cc +75 -0
  1735. data/src/core/util/load_file.h +33 -0
  1736. data/src/core/util/log.cc +127 -0
  1737. data/src/core/util/lru_cache.h +122 -0
  1738. data/src/core/util/manual_constructor.h +145 -0
  1739. data/src/core/util/match.h +74 -0
  1740. data/src/core/util/matchers.cc +336 -0
  1741. data/src/core/util/matchers.h +162 -0
  1742. data/src/core/util/memory.h +52 -0
  1743. data/src/core/util/mpscq.cc +108 -0
  1744. data/src/core/util/mpscq.h +98 -0
  1745. data/src/core/util/msys/tmpfile.cc +57 -0
  1746. data/src/core/util/no_destruct.h +95 -0
  1747. data/src/core/util/notification.h +66 -0
  1748. data/src/core/util/orphanable.h +153 -0
  1749. data/src/core/util/overload.h +59 -0
  1750. data/src/core/util/packed_table.h +40 -0
  1751. data/src/core/util/per_cpu.cc +34 -0
  1752. data/src/core/util/per_cpu.h +102 -0
  1753. data/src/core/util/posix/cpu.cc +83 -0
  1754. data/src/core/util/posix/directory_reader.cc +82 -0
  1755. data/src/core/util/posix/env.cc +47 -0
  1756. data/src/core/util/posix/stat.cc +54 -0
  1757. data/src/core/util/posix/string.cc +71 -0
  1758. data/src/core/util/posix/sync.cc +157 -0
  1759. data/src/core/util/posix/thd.cc +243 -0
  1760. data/src/core/util/posix/time.cc +122 -0
  1761. data/src/core/util/posix/tmpfile.cc +71 -0
  1762. data/src/core/util/random_early_detection.cc +33 -0
  1763. data/src/core/util/random_early_detection.h +61 -0
  1764. data/src/core/util/ref_counted.h +403 -0
  1765. data/src/core/util/ref_counted_ptr.h +443 -0
  1766. data/src/core/util/ref_counted_string.cc +42 -0
  1767. data/src/core/util/ref_counted_string.h +159 -0
  1768. data/src/core/util/ring_buffer.h +122 -0
  1769. data/src/core/util/single_set_ptr.h +89 -0
  1770. data/src/core/util/sorted_pack.h +89 -0
  1771. data/src/core/util/spinlock.h +51 -0
  1772. data/src/core/util/stat.h +35 -0
  1773. data/src/core/util/status_helper.cc +427 -0
  1774. data/src/core/util/status_helper.h +160 -0
  1775. data/src/core/util/strerror.cc +40 -0
  1776. data/src/core/util/strerror.h +29 -0
  1777. data/src/core/util/string.cc +341 -0
  1778. data/src/core/util/string.h +110 -0
  1779. data/src/core/util/sync.cc +123 -0
  1780. data/src/core/util/sync.h +199 -0
  1781. data/src/core/util/sync_abseil.cc +106 -0
  1782. data/src/core/util/table.h +471 -0
  1783. data/src/core/util/tchar.cc +49 -0
  1784. data/src/core/util/tchar.h +33 -0
  1785. data/src/core/util/thd.h +193 -0
  1786. data/src/core/util/time.cc +240 -0
  1787. data/src/core/util/time.h +385 -0
  1788. data/src/core/util/time_averaged_stats.cc +60 -0
  1789. data/src/core/util/time_averaged_stats.h +79 -0
  1790. data/src/core/util/time_precise.cc +167 -0
  1791. data/src/core/util/time_precise.h +68 -0
  1792. data/src/core/util/time_util.cc +80 -0
  1793. data/src/core/util/time_util.h +41 -0
  1794. data/src/core/util/tmpfile.h +31 -0
  1795. data/src/core/util/type_list.h +88 -0
  1796. data/src/core/util/unique_ptr_with_bitset.h +86 -0
  1797. data/src/core/util/unique_type_name.h +123 -0
  1798. data/src/core/util/upb_utils.h +43 -0
  1799. data/src/core/util/uri.cc +378 -0
  1800. data/src/core/util/uri.h +112 -0
  1801. data/src/core/util/useful.h +153 -0
  1802. data/src/core/util/uuid_v4.cc +37 -0
  1803. data/src/core/util/uuid_v4.h +35 -0
  1804. data/src/core/util/validation_errors.cc +73 -0
  1805. data/src/core/util/validation_errors.h +144 -0
  1806. data/src/core/util/wait_for_single_owner.h +62 -0
  1807. data/src/core/util/windows/cpu.cc +34 -0
  1808. data/src/core/util/windows/directory_reader.cc +79 -0
  1809. data/src/core/util/windows/env.cc +56 -0
  1810. data/src/core/util/windows/stat.cc +50 -0
  1811. data/src/core/util/windows/string.cc +68 -0
  1812. data/src/core/util/windows/string_util.cc +53 -0
  1813. data/src/core/util/windows/sync.cc +121 -0
  1814. data/src/core/util/windows/thd.cc +182 -0
  1815. data/src/core/util/windows/time.cc +104 -0
  1816. data/src/core/util/windows/tmpfile.cc +66 -0
  1817. data/src/core/util/work_serializer.cc +298 -0
  1818. data/src/core/util/work_serializer.h +81 -0
  1819. data/src/core/util/xxhash_inline.h +29 -0
  1820. data/src/core/xds/grpc/certificate_provider_store.cc +15 -21
  1821. data/src/core/xds/grpc/certificate_provider_store.h +13 -14
  1822. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +8 -9
  1823. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +9 -10
  1824. data/src/core/xds/grpc/xds_audit_logger_registry.cc +6 -6
  1825. data/src/core/xds/grpc/xds_audit_logger_registry.h +4 -5
  1826. data/src/core/xds/grpc/xds_bootstrap_grpc.cc +18 -179
  1827. data/src/core/xds/grpc/xds_bootstrap_grpc.h +11 -41
  1828. data/src/core/xds/grpc/xds_certificate_provider.cc +19 -20
  1829. data/src/core/xds/grpc/xds_certificate_provider.h +12 -11
  1830. data/src/core/xds/grpc/xds_client_grpc.cc +104 -83
  1831. data/src/core/xds/grpc/xds_client_grpc.h +16 -10
  1832. data/src/core/xds/grpc/xds_cluster.cc +12 -737
  1833. data/src/core/xds/grpc/xds_cluster.h +40 -49
  1834. data/src/core/xds/grpc/xds_cluster_parser.cc +772 -0
  1835. data/src/core/xds/grpc/xds_cluster_parser.h +61 -0
  1836. data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +10 -13
  1837. data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +5 -6
  1838. data/src/core/xds/grpc/xds_common_types.cc +33 -438
  1839. data/src/core/xds/grpc/xds_common_types.h +12 -30
  1840. data/src/core/xds/grpc/xds_common_types_parser.cc +501 -0
  1841. data/src/core/xds/grpc/xds_common_types_parser.h +77 -0
  1842. data/src/core/xds/grpc/xds_endpoint.cc +3 -424
  1843. data/src/core/xds/grpc/xds_endpoint.h +7 -29
  1844. data/src/core/xds/grpc/xds_endpoint_parser.cc +475 -0
  1845. data/src/core/xds/grpc/xds_endpoint_parser.h +47 -0
  1846. data/src/core/xds/grpc/xds_health_status.cc +4 -6
  1847. data/src/core/xds/grpc/xds_health_status.h +4 -6
  1848. data/src/core/xds/grpc/xds_http_fault_filter.cc +46 -36
  1849. data/src/core/xds/grpc/xds_http_fault_filter.h +15 -10
  1850. data/src/core/xds/grpc/xds_http_filter.h +134 -0
  1851. data/src/core/xds/grpc/xds_http_filter_registry.cc +122 -0
  1852. data/src/core/xds/grpc/xds_http_filter_registry.h +104 -0
  1853. data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +141 -0
  1854. data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +61 -0
  1855. data/src/core/xds/grpc/xds_http_rbac_filter.cc +93 -71
  1856. data/src/core/xds/grpc/xds_http_rbac_filter.h +15 -10
  1857. data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +34 -21
  1858. data/src/core/xds/grpc/xds_http_stateful_session_filter.h +15 -10
  1859. data/src/core/xds/grpc/xds_lb_policy_registry.cc +27 -32
  1860. data/src/core/xds/grpc/xds_lb_policy_registry.h +5 -6
  1861. data/src/core/xds/grpc/xds_listener.cc +20 -989
  1862. data/src/core/xds/grpc/xds_listener.h +12 -45
  1863. data/src/core/xds/grpc/xds_listener_parser.cc +1000 -0
  1864. data/src/core/xds/grpc/xds_listener_parser.h +60 -0
  1865. data/src/core/xds/grpc/xds_metadata.cc +62 -0
  1866. data/src/core/xds/grpc/xds_metadata.h +158 -0
  1867. data/src/core/xds/grpc/xds_metadata_parser.cc +197 -0
  1868. data/src/core/xds/grpc/xds_metadata_parser.h +35 -0
  1869. data/src/core/xds/grpc/xds_route_config.cc +12 -934
  1870. data/src/core/xds/grpc/xds_route_config.h +17 -50
  1871. data/src/core/xds/grpc/xds_route_config_parser.cc +960 -0
  1872. data/src/core/xds/grpc/xds_route_config_parser.h +77 -0
  1873. data/src/core/xds/grpc/xds_routing.cc +66 -33
  1874. data/src/core/xds/grpc/xds_routing.h +17 -11
  1875. data/src/core/xds/grpc/xds_server_grpc.cc +181 -0
  1876. data/src/core/xds/grpc/xds_server_grpc.h +66 -0
  1877. data/src/core/xds/grpc/xds_server_grpc_interface.h +33 -0
  1878. data/src/core/xds/grpc/xds_transport_grpc.cc +101 -59
  1879. data/src/core/xds/grpc/xds_transport_grpc.h +34 -23
  1880. data/src/core/xds/xds_client/lrs_client.cc +1280 -0
  1881. data/src/core/xds/xds_client/lrs_client.h +394 -0
  1882. data/src/core/xds/xds_client/xds_api.cc +28 -469
  1883. data/src/core/xds/xds_client/xds_api.h +6 -161
  1884. data/src/core/xds/xds_client/xds_backend_metric_propagation.cc +63 -0
  1885. data/src/core/xds/xds_client/xds_backend_metric_propagation.h +59 -0
  1886. data/src/core/xds/xds_client/xds_bootstrap.cc +13 -4
  1887. data/src/core/xds/xds_client/xds_bootstrap.h +10 -3
  1888. data/src/core/xds/xds_client/xds_client.cc +1122 -1414
  1889. data/src/core/xds/xds_client/xds_client.h +167 -117
  1890. data/src/core/xds/xds_client/xds_locality.h +102 -0
  1891. data/src/core/xds/xds_client/xds_metrics.h +2 -2
  1892. data/src/core/xds/xds_client/xds_resource_type.h +6 -8
  1893. data/src/core/xds/xds_client/xds_resource_type_impl.h +15 -11
  1894. data/src/core/xds/xds_client/xds_transport.h +29 -14
  1895. data/src/ruby/bin/math_pb.rb +1 -22
  1896. data/src/ruby/ext/grpc/extconf.rb +2 -1
  1897. data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -3
  1898. data/src/ruby/ext/grpc/rb_call.c +15 -8
  1899. data/src/ruby/ext/grpc/rb_call_credentials.c +39 -33
  1900. data/src/ruby/ext/grpc/rb_channel.c +42 -37
  1901. data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
  1902. data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -6
  1903. data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -2
  1904. data/src/ruby/ext/grpc/rb_completion_queue.c +18 -36
  1905. data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
  1906. data/src/ruby/ext/grpc/rb_compression_options.c +9 -10
  1907. data/src/ruby/ext/grpc/rb_event_thread.c +9 -9
  1908. data/src/ruby/ext/grpc/rb_grpc.c +16 -16
  1909. data/src/ruby/ext/grpc/rb_grpc.h +8 -1
  1910. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -14
  1911. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -21
  1912. data/src/ruby/ext/grpc/rb_server.c +47 -28
  1913. data/src/ruby/ext/grpc/rb_server_credentials.c +3 -3
  1914. data/src/ruby/ext/grpc/rb_server_credentials.h +1 -2
  1915. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -6
  1916. data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
  1917. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +4 -4
  1918. data/src/ruby/ext/grpc/rb_xds_server_credentials.h +1 -2
  1919. data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
  1920. data/src/ruby/lib/grpc/logconfig.rb +13 -0
  1921. data/src/ruby/lib/grpc/version.rb +1 -1
  1922. data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
  1923. data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
  1924. data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
  1925. data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
  1926. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
  1927. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
  1928. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
  1929. data/src/ruby/spec/call_spec.rb +53 -40
  1930. data/src/ruby/spec/channel_spec.rb +4 -2
  1931. data/src/ruby/spec/client_server_spec.rb +148 -507
  1932. data/src/ruby/spec/generic/active_call_spec.rb +64 -86
  1933. data/src/ruby/spec/generic/client_stub_spec.rb +20 -20
  1934. data/src/ruby/spec/logconfig_spec.rb +30 -0
  1935. data/src/ruby/spec/support/services.rb +3 -0
  1936. data/third_party/abseil-cpp/absl/algorithm/container.h +57 -18
  1937. data/third_party/abseil-cpp/absl/base/attributes.h +84 -0
  1938. data/third_party/abseil-cpp/absl/base/config.h +32 -51
  1939. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +0 -16
  1940. data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +3 -1
  1941. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +13 -3
  1942. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -12
  1943. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +4 -4
  1944. data/third_party/abseil-cpp/absl/base/macros.h +48 -0
  1945. data/third_party/abseil-cpp/absl/base/no_destructor.h +35 -40
  1946. data/third_party/abseil-cpp/absl/base/nullability.h +33 -7
  1947. data/third_party/abseil-cpp/absl/base/optimization.h +11 -0
  1948. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  1949. data/third_party/abseil-cpp/absl/base/prefetch.h +1 -1
  1950. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +68 -12
  1951. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +60 -6
  1952. data/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
  1953. data/third_party/abseil-cpp/absl/container/inlined_vector.h +13 -0
  1954. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +20 -11
  1955. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +15 -16
  1956. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +34 -1
  1957. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +68 -1
  1958. data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +50 -0
  1959. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +22 -7
  1960. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +26 -8
  1961. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +39 -35
  1962. data/third_party/abseil-cpp/absl/container/internal/layout.h +190 -74
  1963. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +8 -6
  1964. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +334 -71
  1965. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1299 -458
  1966. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +19 -17
  1967. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +4 -3
  1968. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +2 -1
  1969. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +12 -8
  1970. data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +1 -1
  1971. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +11 -7
  1972. data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +18 -17
  1973. data/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
  1974. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
  1975. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
  1976. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1057 -86
  1977. data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +3 -0
  1978. data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
  1979. data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +42 -0
  1980. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +43 -16
  1981. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +8 -7
  1982. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +10 -7
  1983. data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
  1984. data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
  1985. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +11 -0
  1986. data/third_party/abseil-cpp/absl/flags/flag.h +2 -0
  1987. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +117 -30
  1988. data/third_party/abseil-cpp/absl/flags/internal/flag.h +192 -30
  1989. data/third_party/abseil-cpp/absl/flags/reflection.cc +10 -0
  1990. data/third_party/abseil-cpp/absl/functional/any_invocable.h +13 -3
  1991. data/third_party/abseil-cpp/absl/functional/bind_front.h +3 -2
  1992. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +7 -7
  1993. data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +9 -9
  1994. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +1 -1
  1995. data/third_party/abseil-cpp/absl/hash/internal/hash.h +13 -3
  1996. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +60 -28
  1997. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +4 -0
  1998. data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +3 -3
  1999. data/third_party/abseil-cpp/absl/log/globals.h +28 -15
  2000. data/third_party/abseil-cpp/absl/log/internal/check_op.cc +20 -0
  2001. data/third_party/abseil-cpp/absl/log/internal/check_op.h +63 -21
  2002. data/third_party/abseil-cpp/absl/log/internal/conditions.h +2 -2
  2003. data/third_party/abseil-cpp/absl/log/internal/log_impl.h +23 -23
  2004. data/third_party/abseil-cpp/absl/log/internal/log_message.cc +104 -47
  2005. data/third_party/abseil-cpp/absl/log/internal/log_message.h +23 -4
  2006. data/third_party/abseil-cpp/absl/log/internal/nullstream.h +1 -10
  2007. data/third_party/abseil-cpp/absl/log/internal/strip.h +36 -0
  2008. data/third_party/abseil-cpp/absl/log/log.h +5 -1
  2009. data/third_party/abseil-cpp/absl/log/log_sink.h +11 -4
  2010. data/third_party/abseil-cpp/absl/log/vlog_is_on.h +3 -3
  2011. data/third_party/abseil-cpp/absl/meta/type_traits.h +138 -42
  2012. data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -3
  2013. data/third_party/abseil-cpp/absl/numeric/int128.h +35 -5
  2014. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +14 -0
  2015. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +18 -0
  2016. data/third_party/abseil-cpp/absl/numeric/internal/bits.h +6 -2
  2017. data/third_party/abseil-cpp/absl/random/beta_distribution.h +8 -8
  2018. data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +9 -7
  2019. data/third_party/abseil-cpp/absl/random/distributions.h +11 -11
  2020. data/third_party/abseil-cpp/absl/random/seed_sequences.h +2 -0
  2021. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +61 -2
  2022. data/third_party/abseil-cpp/absl/status/status.cc +0 -4
  2023. data/third_party/abseil-cpp/absl/status/status.h +4 -4
  2024. data/third_party/abseil-cpp/absl/status/statusor.h +108 -142
  2025. data/third_party/abseil-cpp/absl/strings/ascii.cc +32 -71
  2026. data/third_party/abseil-cpp/absl/strings/cord.cc +20 -15
  2027. data/third_party/abseil-cpp/absl/strings/cord.h +68 -7
  2028. data/third_party/abseil-cpp/absl/strings/escaping.cc +96 -21
  2029. data/third_party/abseil-cpp/absl/strings/escaping.h +25 -8
  2030. data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +1 -0
  2031. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +10 -0
  2032. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +29 -9
  2033. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +2 -2
  2034. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +19 -13
  2035. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +23 -13
  2036. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +24 -24
  2037. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +12 -7
  2038. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +9 -4
  2039. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +5 -2
  2040. data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +23 -2
  2041. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +5 -1
  2042. data/third_party/abseil-cpp/absl/strings/numbers.cc +107 -333
  2043. data/third_party/abseil-cpp/absl/strings/numbers.h +12 -151
  2044. data/third_party/abseil-cpp/absl/strings/str_cat.cc +49 -142
  2045. data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -85
  2046. data/third_party/abseil-cpp/absl/strings/str_format.h +1 -1
  2047. data/third_party/abseil-cpp/absl/strings/str_join.h +19 -5
  2048. data/third_party/abseil-cpp/absl/strings/str_split.h +2 -2
  2049. data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
  2050. data/third_party/abseil-cpp/absl/strings/substitute.cc +4 -0
  2051. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -2
  2052. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +5 -0
  2053. data/third_party/abseil-cpp/absl/synchronization/mutex.h +5 -4
  2054. data/third_party/abseil-cpp/absl/time/civil_time.h +2 -2
  2055. data/third_party/abseil-cpp/absl/time/clock.cc +15 -1
  2056. data/third_party/abseil-cpp/absl/time/duration.cc +58 -53
  2057. data/third_party/abseil-cpp/absl/time/format.cc +2 -1
  2058. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
  2059. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +0 -29
  2060. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
  2061. data/third_party/abseil-cpp/absl/time/time.h +73 -29
  2062. data/third_party/abseil-cpp/absl/types/compare.h +505 -0
  2063. data/third_party/abseil-cpp/absl/types/internal/optional.h +2 -2
  2064. data/third_party/abseil-cpp/absl/types/internal/variant.h +55 -67
  2065. data/third_party/abseil-cpp/absl/types/optional.h +15 -18
  2066. data/third_party/abseil-cpp/absl/types/span.h +3 -2
  2067. data/third_party/abseil-cpp/absl/types/variant.h +19 -24
  2068. data/third_party/abseil-cpp/absl/utility/utility.h +3 -41
  2069. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.cc +243 -0
  2070. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.cc +53 -0
  2071. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.cc +47 -0
  2072. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.cc +42 -0
  2073. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.cc +109 -0
  2074. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.cc +43 -0
  2075. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.cc +424 -0
  2076. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.cc +239 -0
  2077. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.cc +193 -0
  2078. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.cc +32 -0
  2079. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.cc +415 -0
  2080. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.cc +206 -0
  2081. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.cc +224 -0
  2082. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.cc +172 -0
  2083. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.cc +109 -0
  2084. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.cc +355 -0
  2085. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.cc +61 -0
  2086. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.cc +56 -0
  2087. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.cc +63 -0
  2088. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.cc +52 -0
  2089. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +13 -57
  2090. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.cc +241 -0
  2091. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.cc +932 -0
  2092. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.cc +669 -0
  2093. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.cc +164 -0
  2094. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.cc +276 -0
  2095. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.cc +84 -0
  2096. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.cc +229 -0
  2097. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.cc +434 -0
  2098. data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +119 -0
  2099. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.cc +658 -0
  2100. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.cc +268 -0
  2101. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.cc +511 -0
  2102. data/third_party/boringssl-with-bazel/src/crypto/bio/errno.cc +50 -0
  2103. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.cc +193 -0
  2104. data/third_party/boringssl-with-bazel/src/crypto/bio/file.cc +292 -0
  2105. data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.cc +152 -0
  2106. data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +13 -55
  2107. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.cc +446 -0
  2108. data/third_party/boringssl-with-bazel/src/crypto/bio/printf.cc +59 -0
  2109. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.cc +147 -0
  2110. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.cc +133 -0
  2111. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.cc +169 -0
  2112. data/third_party/boringssl-with-bazel/src/crypto/bn/bn_asn1.cc +57 -0
  2113. data/third_party/boringssl-with-bazel/src/crypto/bn/convert.cc +423 -0
  2114. data/third_party/boringssl-with-bazel/src/crypto/buf/buf.cc +118 -0
  2115. data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.cc +53 -0
  2116. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.cc +266 -0
  2117. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.cc +702 -0
  2118. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.cc +912 -0
  2119. data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +13 -13
  2120. data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.cc +156 -0
  2121. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.cc +224 -0
  2122. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +18 -18
  2123. data/third_party/boringssl-with-bazel/src/crypto/cipher/derive_key.cc +110 -0
  2124. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aesctrhmac.cc +279 -0
  2125. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aesgcmsiv.cc +845 -0
  2126. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_chacha20poly1305.cc +341 -0
  2127. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_des.cc +198 -0
  2128. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_null.cc +51 -0
  2129. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_rc2.cc +417 -0
  2130. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_rc4.cc +54 -0
  2131. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_tls.cc +599 -0
  2132. data/third_party/boringssl-with-bazel/src/crypto/cipher/get_cipher.cc +85 -0
  2133. data/third_party/boringssl-with-bazel/src/crypto/cipher/internal.h +240 -0
  2134. data/third_party/boringssl-with-bazel/src/crypto/cipher/tls_cbc.cc +476 -0
  2135. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.cc +631 -0
  2136. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +13 -13
  2137. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.cc +75 -0
  2138. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.cc +55 -0
  2139. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.cc +62 -0
  2140. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.cc +61 -0
  2141. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.cc +94 -0
  2142. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.cc +41 -0
  2143. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.cc +54 -0
  2144. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.cc +151 -0
  2145. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.h +13 -13
  2146. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.cc +287 -0
  2147. data/third_party/boringssl-with-bazel/src/crypto/crypto.cc +183 -0
  2148. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.cc +2154 -0
  2149. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.cc +18 -0
  2150. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +13 -13
  2151. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +13 -13
  2152. data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.cc +529 -0
  2153. data/third_party/boringssl-with-bazel/src/crypto/des/des.cc +829 -0
  2154. data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +27 -69
  2155. data/third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.cc +124 -0
  2156. data/third_party/boringssl-with-bazel/src/crypto/dh/params.cc +442 -0
  2157. data/third_party/boringssl-with-bazel/src/crypto/digest/digest_extra.cc +306 -0
  2158. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.cc +951 -0
  2159. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.cc +379 -0
  2160. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +13 -13
  2161. data/third_party/boringssl-with-bazel/src/crypto/ec/ec_asn1.cc +570 -0
  2162. data/third_party/boringssl-with-bazel/src/crypto/ec/ec_derive.cc +96 -0
  2163. data/third_party/boringssl-with-bazel/src/crypto/ec/hash_to_curve.cc +510 -0
  2164. data/third_party/boringssl-with-bazel/src/crypto/ec/internal.h +78 -0
  2165. data/third_party/boringssl-with-bazel/src/crypto/ecdh/ecdh.cc +73 -0
  2166. data/third_party/boringssl-with-bazel/src/crypto/ecdsa/ecdsa_asn1.cc +357 -0
  2167. data/third_party/boringssl-with-bazel/src/crypto/engine/engine.cc +95 -0
  2168. data/third_party/boringssl-with-bazel/src/crypto/err/err.cc +810 -0
  2169. data/third_party/boringssl-with-bazel/src/crypto/err/internal.h +13 -13
  2170. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.cc +379 -0
  2171. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.cc +471 -0
  2172. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.cc +440 -0
  2173. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +13 -55
  2174. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.cc +153 -0
  2175. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.cc +142 -0
  2176. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.cc +279 -0
  2177. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.cc +230 -0
  2178. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.cc +286 -0
  2179. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.cc +103 -0
  2180. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.cc +225 -0
  2181. data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.cc +236 -0
  2182. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.cc +609 -0
  2183. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.cc +198 -0
  2184. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.cc +109 -0
  2185. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.cc +237 -0
  2186. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.cc +98 -0
  2187. data/third_party/boringssl-with-bazel/src/crypto/evp/print.cc +342 -0
  2188. data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.cc +216 -0
  2189. data/third_party/boringssl-with-bazel/src/crypto/evp/sign.cc +114 -0
  2190. data/third_party/boringssl-with-bazel/src/crypto/ex_data.cc +141 -0
  2191. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.cc.inc +191 -0
  2192. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.cc.inc +1281 -0
  2193. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/cbc.cc.inc +130 -0
  2194. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/cfb.cc.inc +166 -0
  2195. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ctr.cc.inc +100 -0
  2196. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm.cc.inc +604 -0
  2197. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm_nohw.cc.inc +302 -0
  2198. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +450 -75
  2199. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.cc.inc +208 -0
  2200. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.cc.inc +84 -0
  2201. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ofb.cc.inc +53 -0
  2202. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/polyval.cc.inc +89 -0
  2203. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.cc +282 -0
  2204. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +729 -0
  2205. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.cc.inc +269 -0
  2206. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.cc.inc +554 -0
  2207. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.cc.inc +374 -0
  2208. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.cc.inc +225 -0
  2209. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.cc.inc +159 -0
  2210. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.cc.inc +191 -0
  2211. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.cc.inc +825 -0
  2212. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.cc.inc +87 -0
  2213. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.cc.inc +1227 -0
  2214. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.cc.inc +300 -0
  2215. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.cc.inc +339 -0
  2216. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.cc.inc +582 -0
  2217. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +52 -151
  2218. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.cc.inc +108 -0
  2219. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.cc.inc +430 -0
  2220. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.cc.inc +222 -0
  2221. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.cc.inc +698 -0
  2222. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.cc.inc +980 -0
  2223. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.cc.inc +260 -0
  2224. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.cc.inc +142 -0
  2225. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +20 -17
  2226. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.cc.inc +320 -0
  2227. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.cc.inc +459 -0
  2228. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.cc.inc +295 -0
  2229. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.cc.inc +672 -0
  2230. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.cc.inc +1242 -0
  2231. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.cc.inc +409 -0
  2232. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +14 -65
  2233. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.cc.inc +288 -0
  2234. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +26 -22
  2235. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.cc.inc +203 -0
  2236. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.cc.inc +443 -0
  2237. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +13 -15
  2238. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.cc.inc +250 -0
  2239. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.cc.inc +178 -0
  2240. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h +13 -55
  2241. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +13 -47
  2242. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.cc.inc +226 -0
  2243. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +91 -91
  2244. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.cc.inc +986 -0
  2245. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.cc.inc +501 -0
  2246. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.cc.inc +439 -0
  2247. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.cc.inc +104 -0
  2248. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +19 -66
  2249. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.cc.inc +306 -0
  2250. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.cc.inc +1163 -0
  2251. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz-table.h +15 -10
  2252. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.cc.inc +741 -0
  2253. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +87 -25
  2254. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.cc.inc +749 -0
  2255. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +13 -13
  2256. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.cc.inc +179 -0
  2257. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.cc.inc +284 -0
  2258. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.cc.inc +269 -0
  2259. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.cc.inc +255 -0
  2260. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.cc.inc +221 -0
  2261. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.cc.inc +88 -0
  2262. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.cc.inc +278 -0
  2263. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +41 -24
  2264. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.cc +28 -0
  2265. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.cc.inc +112 -0
  2266. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.cc.inc +215 -0
  2267. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/internal.h +70 -0
  2268. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/keccak.cc.inc +279 -0
  2269. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/mldsa.cc.inc +1993 -0
  2270. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/mlkem.cc.inc +1165 -0
  2271. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.cc.inc +214 -0
  2272. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +19 -104
  2273. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.cc.inc +483 -0
  2274. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.cc.inc +147 -0
  2275. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +13 -56
  2276. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.cc.inc +379 -0
  2277. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.cc.inc +983 -0
  2278. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.cc.inc +1296 -0
  2279. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.cc.inc +129 -0
  2280. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.cc.inc +1042 -0
  2281. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +36 -36
  2282. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.cc.inc +327 -0
  2283. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +51 -60
  2284. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.cc.inc +390 -0
  2285. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.cc.inc +299 -0
  2286. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.cc.inc +473 -0
  2287. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/address.h +119 -0
  2288. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.cc.inc +169 -0
  2289. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.h +58 -0
  2290. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.cc.inc +161 -0
  2291. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.h +70 -0
  2292. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/params.h +78 -0
  2293. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/slhdsa.cc.inc +329 -0
  2294. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.cc.inc +173 -0
  2295. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.h +85 -0
  2296. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.cc.inc +171 -0
  2297. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.h +50 -0
  2298. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +13 -13
  2299. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.cc.inc +180 -0
  2300. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.cc +1095 -0
  2301. data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.cc +2185 -0
  2302. data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +13 -13
  2303. data/third_party/boringssl-with-bazel/src/crypto/internal.h +323 -449
  2304. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +13 -13
  2305. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.cc +869 -0
  2306. data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +31 -75
  2307. data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.cc +309 -0
  2308. data/third_party/boringssl-with-bazel/src/crypto/md4/md4.cc +194 -0
  2309. data/third_party/boringssl-with-bazel/src/crypto/md5/internal.h +37 -0
  2310. data/third_party/boringssl-with-bazel/src/crypto/md5/md5.cc +243 -0
  2311. data/third_party/boringssl-with-bazel/src/crypto/mem.cc +583 -0
  2312. data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.cc +90 -0
  2313. data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +152 -0
  2314. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.cc +519 -0
  2315. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +18 -57
  2316. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.cc +80 -0
  2317. data/third_party/boringssl-with-bazel/src/crypto/pem/internal.h +44 -0
  2318. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.cc +149 -0
  2319. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.cc +254 -0
  2320. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.cc +741 -0
  2321. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.cc +45 -0
  2322. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.cc +208 -0
  2323. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.cc +141 -0
  2324. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.cc +22 -0
  2325. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.cc +22 -0
  2326. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +13 -13
  2327. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.cc +193 -0
  2328. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.cc +526 -0
  2329. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +14 -54
  2330. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.cc +275 -0
  2331. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.cc +487 -0
  2332. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.cc +1304 -0
  2333. data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +13 -13
  2334. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.cc +314 -0
  2335. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.cc +310 -0
  2336. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.cc +850 -0
  2337. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +13 -13
  2338. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.cc +262 -0
  2339. data/third_party/boringssl-with-bazel/src/crypto/rand/deterministic.cc +65 -0
  2340. data/third_party/boringssl-with-bazel/src/crypto/rand/fork_detect.cc +194 -0
  2341. data/third_party/boringssl-with-bazel/src/crypto/rand/forkunsafe.cc +44 -0
  2342. data/third_party/boringssl-with-bazel/src/crypto/rand/getentropy.cc +60 -0
  2343. data/third_party/boringssl-with-bazel/src/crypto/rand/getrandom_fillin.h +64 -0
  2344. data/third_party/boringssl-with-bazel/src/crypto/rand/ios.cc +42 -0
  2345. data/third_party/boringssl-with-bazel/src/crypto/rand/passive.cc +178 -0
  2346. data/third_party/boringssl-with-bazel/src/crypto/rand/rand.cc +77 -0
  2347. data/third_party/boringssl-with-bazel/src/crypto/rand/sysrand_internal.h +37 -0
  2348. data/third_party/boringssl-with-bazel/src/crypto/rand/trusty.cc +46 -0
  2349. data/third_party/boringssl-with-bazel/src/crypto/rand/urandom.cc +328 -0
  2350. data/third_party/boringssl-with-bazel/src/crypto/rand/windows.cc +102 -0
  2351. data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.cc +56 -0
  2352. data/third_party/boringssl-with-bazel/src/crypto/refcount.cc +59 -0
  2353. data/third_party/boringssl-with-bazel/src/crypto/rsa/internal.h +36 -0
  2354. data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_asn1.cc +283 -0
  2355. data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_crypt.cc +531 -0
  2356. data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_extra.cc +19 -0
  2357. data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_print.cc +27 -0
  2358. data/third_party/boringssl-with-bazel/src/crypto/sha/sha1.cc +52 -0
  2359. data/third_party/boringssl-with-bazel/src/crypto/sha/sha256.cc +87 -0
  2360. data/third_party/boringssl-with-bazel/src/crypto/sha/sha512.cc +104 -0
  2361. data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.cc +79 -0
  2362. data/third_party/boringssl-with-bazel/src/crypto/slhdsa/slhdsa.cc +113 -0
  2363. data/third_party/boringssl-with-bazel/src/crypto/spake2plus/internal.h +204 -0
  2364. data/third_party/boringssl-with-bazel/src/crypto/spake2plus/spake2plus.cc +501 -0
  2365. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.cc +496 -0
  2366. data/third_party/boringssl-with-bazel/src/crypto/thread.cc +68 -0
  2367. data/third_party/boringssl-with-bazel/src/crypto/thread_none.cc +51 -0
  2368. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.cc +151 -0
  2369. data/third_party/boringssl-with-bazel/src/crypto/thread_win.cc +240 -0
  2370. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +13 -13
  2371. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.cc +1656 -0
  2372. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.cc +685 -0
  2373. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.cc +1263 -0
  2374. data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.cc +52 -0
  2375. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.cc +97 -0
  2376. data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.cc +74 -0
  2377. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.cc +136 -0
  2378. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.cc +542 -0
  2379. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.cc +355 -0
  2380. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.cc +227 -0
  2381. data/third_party/boringssl-with-bazel/src/crypto/x509/ext_dat.h +13 -55
  2382. data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.cc +37 -0
  2383. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +13 -61
  2384. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.cc +185 -0
  2385. data/third_party/boringssl-with-bazel/src/crypto/x509/policy.cc +796 -0
  2386. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.cc +364 -0
  2387. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.cc +103 -0
  2388. data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.cc +203 -0
  2389. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.cc +287 -0
  2390. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.cc +79 -0
  2391. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.cc +181 -0
  2392. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.cc +31 -0
  2393. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.cc +593 -0
  2394. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.cc +95 -0
  2395. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.cc +102 -0
  2396. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.cc +374 -0
  2397. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.cc +444 -0
  2398. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.cc +557 -0
  2399. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.cc +73 -0
  2400. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.cc +114 -0
  2401. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.cc +228 -0
  2402. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.cc +79 -0
  2403. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.cc +164 -0
  2404. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.cc +81 -0
  2405. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.cc +304 -0
  2406. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.cc +514 -0
  2407. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.cc +89 -0
  2408. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.cc +101 -0
  2409. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.cc +109 -0
  2410. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.cc +183 -0
  2411. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.cc +590 -0
  2412. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.cc +131 -0
  2413. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.cc +1342 -0
  2414. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.cc +47 -0
  2415. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.cc +186 -0
  2416. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.cc +238 -0
  2417. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.cc +66 -0
  2418. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.cc +44 -0
  2419. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.cc +139 -0
  2420. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.cc +554 -0
  2421. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.cc +164 -0
  2422. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.cc +257 -0
  2423. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.cc +198 -0
  2424. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.cc +118 -0
  2425. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.cc +147 -0
  2426. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.cc +249 -0
  2427. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.cc +1600 -0
  2428. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.cc +440 -0
  2429. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.cc +235 -0
  2430. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.cc +365 -0
  2431. data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.cc +67 -0
  2432. data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.cc +91 -0
  2433. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.cc +107 -0
  2434. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.cc +318 -0
  2435. data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.cc +55 -0
  2436. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.cc +342 -0
  2437. data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.cc +36 -0
  2438. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.cc +492 -0
  2439. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.cc +170 -0
  2440. data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.cc +74 -0
  2441. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.cc +51 -0
  2442. data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.cc +34 -0
  2443. data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.cc +28 -0
  2444. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.cc +506 -0
  2445. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.cc +169 -0
  2446. data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.cc +1529 -0
  2447. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +13 -13
  2448. data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +13 -47
  2449. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +13 -51
  2450. data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +14 -14
  2451. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +37 -63
  2452. data/third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h +13 -13
  2453. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +248 -328
  2454. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +24 -55
  2455. data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +13 -55
  2456. data/third_party/boringssl-with-bazel/src/include/openssl/bcm_public.h +82 -0
  2457. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +21 -61
  2458. data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +13 -13
  2459. data/third_party/boringssl-with-bazel/src/include/openssl/blowfish.h +13 -55
  2460. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +28 -130
  2461. data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +13 -55
  2462. data/third_party/boringssl-with-bazel/src/include/openssl/buffer.h +13 -13
  2463. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +31 -16
  2464. data/third_party/boringssl-with-bazel/src/include/openssl/cast.h +13 -55
  2465. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +13 -13
  2466. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +31 -59
  2467. data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +13 -13
  2468. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +13 -55
  2469. data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +13 -13
  2470. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +34 -25
  2471. data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +13 -13
  2472. data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +13 -13
  2473. data/third_party/boringssl-with-bazel/src/include/openssl/des.h +13 -55
  2474. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +17 -55
  2475. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +19 -56
  2476. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +17 -58
  2477. data/third_party/boringssl-with-bazel/src/include/openssl/dtls1.h +13 -13
  2478. data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +13 -13
  2479. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +14 -66
  2480. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +31 -72
  2481. data/third_party/boringssl-with-bazel/src/include/openssl/ecdh.h +14 -65
  2482. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +13 -51
  2483. data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +13 -13
  2484. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +13 -107
  2485. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +14 -56
  2486. data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +13 -55
  2487. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +13 -107
  2488. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +23 -13
  2489. data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +13 -13
  2490. data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +13 -55
  2491. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +21 -19
  2492. data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +13 -13
  2493. data/third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h +13 -13
  2494. data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +13 -13
  2495. data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +13 -55
  2496. data/third_party/boringssl-with-bazel/src/include/openssl/md4.h +13 -55
  2497. data/third_party/boringssl-with-bazel/src/include/openssl/md5.h +13 -55
  2498. data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +13 -55
  2499. data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +130 -0
  2500. data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +222 -0
  2501. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +30 -69
  2502. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +13 -55
  2503. data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +13 -13
  2504. data/third_party/boringssl-with-bazel/src/include/openssl/objects.h +13 -13
  2505. data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +13 -13
  2506. data/third_party/boringssl-with-bazel/src/include/openssl/opensslv.h +13 -13
  2507. data/third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h +13 -13
  2508. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +25 -64
  2509. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h +13 -13
  2510. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +13 -13
  2511. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +13 -55
  2512. data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +13 -13
  2513. data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +13 -13
  2514. data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +13 -13
  2515. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +13 -13
  2516. data/third_party/boringssl-with-bazel/src/include/openssl/rc4.h +13 -55
  2517. data/third_party/boringssl-with-bazel/src/include/openssl/ripemd.h +13 -55
  2518. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +23 -63
  2519. data/third_party/boringssl-with-bazel/src/include/openssl/safestack.h +13 -13
  2520. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +15 -15
  2521. data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +15 -95
  2522. data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +13 -13
  2523. data/third_party/boringssl-with-bazel/src/include/openssl/slhdsa.h +174 -0
  2524. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +60 -32
  2525. data/third_party/boringssl-with-bazel/src/include/openssl/srtp.h +13 -13
  2526. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +465 -317
  2527. data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +15 -114
  2528. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +13 -55
  2529. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +23 -13
  2530. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +15 -57
  2531. data/third_party/boringssl-with-bazel/src/include/openssl/time.h +13 -13
  2532. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +27 -156
  2533. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +15 -15
  2534. data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +13 -55
  2535. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +14 -84
  2536. data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +13 -13
  2537. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +13 -13
  2538. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3_errors.h +13 -53
  2539. data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +15 -14
  2540. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +684 -441
  2541. data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +129 -168
  2542. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +177 -127
  2543. data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +21 -127
  2544. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +112 -97
  2545. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +456 -222
  2546. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +54 -47
  2547. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +701 -491
  2548. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +66 -73
  2549. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +61 -153
  2550. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +234 -335
  2551. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +104 -216
  2552. data/third_party/boringssl-with-bazel/src/ssl/internal.h +1009 -504
  2553. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +87 -169
  2554. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +29 -159
  2555. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +39 -113
  2556. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +103 -111
  2557. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +52 -145
  2558. data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +22 -24
  2559. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +117 -157
  2560. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +229 -365
  2561. data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +216 -31
  2562. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +13 -109
  2563. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +128 -32
  2564. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +244 -360
  2565. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +97 -103
  2566. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +101 -236
  2567. data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +17 -91
  2568. data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +109 -157
  2569. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +48 -28
  2570. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +66 -195
  2571. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +45 -176
  2572. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +60 -43
  2573. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +152 -86
  2574. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +296 -163
  2575. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +247 -108
  2576. data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +64 -117
  2577. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +55 -157
  2578. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +6 -0
  2579. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +6 -0
  2580. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +4 -1
  2581. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +1 -1
  2582. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +3 -0
  2583. data/third_party/upb/upb/base/string_view.h +1 -1
  2584. data/third_party/upb/upb/json/decode.c +60 -13
  2585. data/third_party/upb/upb/json/decode.h +26 -3
  2586. data/third_party/upb/upb/json/encode.c +2 -2
  2587. data/third_party/upb/upb/lex/round_trip.c +10 -0
  2588. data/third_party/upb/upb/mem/arena.c +80 -4
  2589. data/third_party/upb/upb/mem/arena.h +20 -9
  2590. data/third_party/upb/upb/mem/arena.hpp +5 -1
  2591. data/third_party/upb/upb/mem/internal/arena.h +11 -8
  2592. data/third_party/upb/upb/message/accessors.c +6 -7
  2593. data/third_party/upb/upb/message/accessors.h +186 -376
  2594. data/third_party/upb/upb/message/array.c +26 -3
  2595. data/third_party/upb/upb/message/array.h +17 -9
  2596. data/third_party/upb/upb/message/compat.c +5 -5
  2597. data/third_party/upb/upb/message/compat.h +3 -3
  2598. data/third_party/upb/upb/message/copy.c +23 -20
  2599. data/third_party/upb/upb/message/internal/accessors.h +617 -55
  2600. data/third_party/upb/upb/message/internal/array.h +23 -15
  2601. data/third_party/upb/upb/message/internal/compare_unknown.c +289 -0
  2602. data/third_party/upb/upb/message/internal/compare_unknown.h +49 -0
  2603. data/third_party/upb/upb/message/internal/extension.c +12 -12
  2604. data/third_party/upb/upb/message/internal/extension.h +9 -12
  2605. data/third_party/upb/upb/message/internal/map.h +15 -0
  2606. data/third_party/upb/upb/message/internal/map_sorter.h +4 -5
  2607. data/third_party/upb/upb/message/internal/message.c +22 -6
  2608. data/third_party/upb/upb/message/internal/message.h +11 -0
  2609. data/third_party/upb/upb/message/internal/tagged_ptr.h +5 -5
  2610. data/third_party/upb/upb/message/internal/types.h +41 -1
  2611. data/third_party/upb/upb/message/map.c +25 -0
  2612. data/third_party/upb/upb/message/map.h +11 -7
  2613. data/third_party/upb/upb/message/merge.c +38 -0
  2614. data/third_party/upb/upb/message/merge.h +26 -0
  2615. data/third_party/upb/upb/message/message.c +83 -4
  2616. data/third_party/upb/upb/message/message.h +16 -1
  2617. data/third_party/upb/upb/message/tagged_ptr.h +4 -8
  2618. data/third_party/upb/upb/message/value.h +26 -0
  2619. data/third_party/upb/upb/mini_descriptor/build_enum.c +3 -3
  2620. data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
  2621. data/third_party/upb/upb/mini_descriptor/decode.c +19 -3
  2622. data/third_party/upb/upb/mini_descriptor/link.c +23 -21
  2623. data/third_party/upb/upb/mini_table/enum.h +2 -4
  2624. data/third_party/upb/upb/mini_table/extension.h +4 -12
  2625. data/third_party/upb/upb/mini_table/extension_registry.c +18 -0
  2626. data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
  2627. data/third_party/upb/upb/mini_table/field.h +12 -38
  2628. data/third_party/upb/upb/mini_table/file.h +6 -19
  2629. data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
  2630. data/third_party/upb/upb/mini_table/internal/extension.h +18 -9
  2631. data/third_party/upb/upb/mini_table/internal/field.h +23 -23
  2632. data/third_party/upb/upb/mini_table/internal/file.h +7 -7
  2633. data/third_party/upb/upb/mini_table/internal/message.c +21 -1
  2634. data/third_party/upb/upb/mini_table/internal/message.h +80 -36
  2635. data/third_party/upb/upb/mini_table/internal/sub.h +9 -4
  2636. data/third_party/upb/upb/mini_table/message.h +23 -22
  2637. data/third_party/upb/upb/mini_table/sub.h +4 -12
  2638. data/third_party/upb/upb/port/def.inc +108 -12
  2639. data/third_party/upb/upb/port/undef.inc +8 -1
  2640. data/third_party/upb/upb/reflection/common.h +1 -11
  2641. data/third_party/upb/upb/reflection/def.hpp +35 -0
  2642. data/third_party/upb/upb/reflection/def_pool.h +2 -2
  2643. data/third_party/upb/upb/reflection/descriptor_bootstrap.h +19 -0
  2644. data/third_party/upb/upb/reflection/enum_def.c +5 -1
  2645. data/third_party/upb/upb/reflection/enum_def.h +1 -0
  2646. data/third_party/upb/upb/reflection/enum_value_def.c +3 -8
  2647. data/third_party/upb/upb/reflection/field_def.c +72 -46
  2648. data/third_party/upb/upb/reflection/field_def.h +4 -0
  2649. data/third_party/upb/upb/reflection/file_def.c +30 -4
  2650. data/third_party/upb/upb/reflection/file_def.h +3 -0
  2651. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
  2652. data/third_party/upb/upb/reflection/message.c +26 -9
  2653. data/third_party/upb/upb/reflection/message.h +2 -2
  2654. data/third_party/upb/upb/reflection/message_def.c +14 -9
  2655. data/third_party/upb/upb/reflection/method_def.h +8 -7
  2656. data/third_party/upb/upb/reflection/service_def.h +6 -5
  2657. data/third_party/upb/upb/text/encode.c +53 -389
  2658. data/third_party/upb/upb/text/encode.h +1 -11
  2659. data/third_party/upb/upb/text/internal/encode.c +180 -0
  2660. data/third_party/upb/upb/text/internal/encode.h +240 -0
  2661. data/third_party/upb/upb/text/options.h +22 -0
  2662. data/third_party/upb/upb/wire/decode.c +160 -94
  2663. data/third_party/upb/upb/wire/decode.h +15 -2
  2664. data/third_party/upb/upb/wire/encode.c +89 -48
  2665. data/third_party/upb/upb/wire/encode.h +12 -1
  2666. data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
  2667. data/third_party/upb/upb/wire/internal/decode_fast.c +28 -29
  2668. data/third_party/upb/upb/wire/internal/reader.h +3 -3
  2669. data/third_party/upb/upb/wire/reader.c +1 -2
  2670. data/third_party/upb/upb/wire/reader.h +4 -8
  2671. metadata +642 -545
  2672. data/src/core/client_channel/config_selector.cc +0 -60
  2673. data/src/core/ext/gcp/metadata_query.cc +0 -137
  2674. data/src/core/ext/gcp/metadata_query.h +0 -87
  2675. data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
  2676. data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
  2677. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -45
  2678. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
  2679. data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
  2680. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +0 -419
  2681. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +0 -81
  2682. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +0 -30
  2683. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +0 -400
  2684. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +0 -106
  2685. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +0 -33
  2686. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +0 -104
  2687. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +0 -32
  2688. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +0 -66
  2689. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +0 -47
  2690. data/src/core/handshaker/security/tsi_error.cc +0 -31
  2691. data/src/core/handshaker/security/tsi_error.h +0 -30
  2692. data/src/core/lib/avl/avl.h +0 -325
  2693. data/src/core/lib/backoff/backoff.cc +0 -47
  2694. data/src/core/lib/backoff/backoff.h +0 -89
  2695. data/src/core/lib/backoff/random_early_detection.cc +0 -33
  2696. data/src/core/lib/backoff/random_early_detection.h +0 -62
  2697. data/src/core/lib/channel/call_tracer.cc +0 -364
  2698. data/src/core/lib/channel/call_tracer.h +0 -226
  2699. data/src/core/lib/channel/channel_stack_trace.cc +0 -19
  2700. data/src/core/lib/channel/channel_stack_trace.h +0 -24
  2701. data/src/core/lib/channel/context.h +0 -105
  2702. data/src/core/lib/channel/metrics.cc +0 -334
  2703. data/src/core/lib/channel/metrics.h +0 -365
  2704. data/src/core/lib/channel/tcp_tracer.h +0 -144
  2705. data/src/core/lib/config/config_vars.cc +0 -154
  2706. data/src/core/lib/config/config_vars.h +0 -131
  2707. data/src/core/lib/config/config_vars_non_generated.cc +0 -49
  2708. data/src/core/lib/config/core_configuration.cc +0 -112
  2709. data/src/core/lib/config/core_configuration.h +0 -244
  2710. data/src/core/lib/config/load_config.cc +0 -79
  2711. data/src/core/lib/config/load_config.h +0 -55
  2712. data/src/core/lib/debug/event_log.cc +0 -88
  2713. data/src/core/lib/debug/event_log.h +0 -81
  2714. data/src/core/lib/debug/histogram_view.cc +0 -69
  2715. data/src/core/lib/debug/histogram_view.h +0 -37
  2716. data/src/core/lib/debug/stats.cc +0 -68
  2717. data/src/core/lib/debug/stats.h +0 -64
  2718. data/src/core/lib/debug/stats_data.cc +0 -752
  2719. data/src/core/lib/debug/stats_data.h +0 -579
  2720. data/src/core/lib/event_engine/trace.cc +0 -25
  2721. data/src/core/lib/event_engine/trace.h +0 -48
  2722. data/src/core/lib/gpr/alloc.cc +0 -73
  2723. data/src/core/lib/gpr/alloc.h +0 -28
  2724. data/src/core/lib/gpr/android/log.cc +0 -79
  2725. data/src/core/lib/gpr/atm.cc +0 -35
  2726. data/src/core/lib/gpr/iphone/cpu.cc +0 -44
  2727. data/src/core/lib/gpr/linux/cpu.cc +0 -87
  2728. data/src/core/lib/gpr/linux/log.cc +0 -114
  2729. data/src/core/lib/gpr/log.cc +0 -166
  2730. data/src/core/lib/gpr/msys/tmpfile.cc +0 -59
  2731. data/src/core/lib/gpr/posix/cpu.cc +0 -84
  2732. data/src/core/lib/gpr/posix/log.cc +0 -111
  2733. data/src/core/lib/gpr/posix/string.cc +0 -72
  2734. data/src/core/lib/gpr/posix/sync.cc +0 -161
  2735. data/src/core/lib/gpr/posix/time.cc +0 -125
  2736. data/src/core/lib/gpr/posix/tmpfile.cc +0 -73
  2737. data/src/core/lib/gpr/spinlock.h +0 -53
  2738. data/src/core/lib/gpr/string.cc +0 -344
  2739. data/src/core/lib/gpr/string.h +0 -112
  2740. data/src/core/lib/gpr/sync.cc +0 -126
  2741. data/src/core/lib/gpr/sync_abseil.cc +0 -110
  2742. data/src/core/lib/gpr/time.cc +0 -271
  2743. data/src/core/lib/gpr/time_precise.cc +0 -168
  2744. data/src/core/lib/gpr/time_precise.h +0 -69
  2745. data/src/core/lib/gpr/tmpfile.h +0 -32
  2746. data/src/core/lib/gpr/useful.h +0 -184
  2747. data/src/core/lib/gpr/windows/cpu.cc +0 -35
  2748. data/src/core/lib/gpr/windows/log.cc +0 -116
  2749. data/src/core/lib/gpr/windows/string.cc +0 -69
  2750. data/src/core/lib/gpr/windows/string_util.cc +0 -55
  2751. data/src/core/lib/gpr/windows/sync.cc +0 -124
  2752. data/src/core/lib/gpr/windows/time.cc +0 -108
  2753. data/src/core/lib/gpr/windows/tmpfile.cc +0 -68
  2754. data/src/core/lib/gprpp/atomic_utils.h +0 -47
  2755. data/src/core/lib/gprpp/bitset.h +0 -225
  2756. data/src/core/lib/gprpp/chunked_vector.h +0 -258
  2757. data/src/core/lib/gprpp/construct_destruct.h +0 -40
  2758. data/src/core/lib/gprpp/cpp_impl_of.h +0 -49
  2759. data/src/core/lib/gprpp/crash.cc +0 -42
  2760. data/src/core/lib/gprpp/crash.h +0 -37
  2761. data/src/core/lib/gprpp/debug_location.h +0 -99
  2762. data/src/core/lib/gprpp/directory_reader.h +0 -48
  2763. data/src/core/lib/gprpp/down_cast.h +0 -49
  2764. data/src/core/lib/gprpp/dual_ref_counted.h +0 -365
  2765. data/src/core/lib/gprpp/env.h +0 -53
  2766. data/src/core/lib/gprpp/examine_stack.cc +0 -43
  2767. data/src/core/lib/gprpp/examine_stack.h +0 -45
  2768. data/src/core/lib/gprpp/fork.cc +0 -241
  2769. data/src/core/lib/gprpp/fork.h +0 -98
  2770. data/src/core/lib/gprpp/host_port.cc +0 -116
  2771. data/src/core/lib/gprpp/host_port.h +0 -57
  2772. data/src/core/lib/gprpp/if_list.h +0 -4530
  2773. data/src/core/lib/gprpp/linux/env.cc +0 -62
  2774. data/src/core/lib/gprpp/load_file.cc +0 -77
  2775. data/src/core/lib/gprpp/load_file.h +0 -34
  2776. data/src/core/lib/gprpp/manual_constructor.h +0 -146
  2777. data/src/core/lib/gprpp/match.h +0 -75
  2778. data/src/core/lib/gprpp/memory.h +0 -52
  2779. data/src/core/lib/gprpp/mpscq.cc +0 -108
  2780. data/src/core/lib/gprpp/mpscq.h +0 -100
  2781. data/src/core/lib/gprpp/no_destruct.h +0 -95
  2782. data/src/core/lib/gprpp/notification.h +0 -67
  2783. data/src/core/lib/gprpp/orphanable.h +0 -153
  2784. data/src/core/lib/gprpp/overload.h +0 -59
  2785. data/src/core/lib/gprpp/packed_table.h +0 -40
  2786. data/src/core/lib/gprpp/per_cpu.cc +0 -34
  2787. data/src/core/lib/gprpp/per_cpu.h +0 -103
  2788. data/src/core/lib/gprpp/posix/directory_reader.cc +0 -82
  2789. data/src/core/lib/gprpp/posix/env.cc +0 -47
  2790. data/src/core/lib/gprpp/posix/stat.cc +0 -56
  2791. data/src/core/lib/gprpp/posix/thd.cc +0 -247
  2792. data/src/core/lib/gprpp/ref_counted.h +0 -395
  2793. data/src/core/lib/gprpp/ref_counted_ptr.h +0 -445
  2794. data/src/core/lib/gprpp/ref_counted_string.cc +0 -43
  2795. data/src/core/lib/gprpp/ref_counted_string.h +0 -161
  2796. data/src/core/lib/gprpp/single_set_ptr.h +0 -88
  2797. data/src/core/lib/gprpp/sorted_pack.h +0 -89
  2798. data/src/core/lib/gprpp/stat.h +0 -36
  2799. data/src/core/lib/gprpp/status_helper.cc +0 -453
  2800. data/src/core/lib/gprpp/status_helper.h +0 -190
  2801. data/src/core/lib/gprpp/strerror.cc +0 -41
  2802. data/src/core/lib/gprpp/strerror.h +0 -29
  2803. data/src/core/lib/gprpp/sync.h +0 -200
  2804. data/src/core/lib/gprpp/table.h +0 -452
  2805. data/src/core/lib/gprpp/tchar.cc +0 -49
  2806. data/src/core/lib/gprpp/tchar.h +0 -33
  2807. data/src/core/lib/gprpp/thd.h +0 -195
  2808. data/src/core/lib/gprpp/time.cc +0 -242
  2809. data/src/core/lib/gprpp/time.h +0 -384
  2810. data/src/core/lib/gprpp/time_averaged_stats.cc +0 -60
  2811. data/src/core/lib/gprpp/time_averaged_stats.h +0 -79
  2812. data/src/core/lib/gprpp/time_util.cc +0 -82
  2813. data/src/core/lib/gprpp/time_util.h +0 -41
  2814. data/src/core/lib/gprpp/type_list.h +0 -32
  2815. data/src/core/lib/gprpp/unique_type_name.h +0 -104
  2816. data/src/core/lib/gprpp/uuid_v4.cc +0 -37
  2817. data/src/core/lib/gprpp/uuid_v4.h +0 -36
  2818. data/src/core/lib/gprpp/validation_errors.cc +0 -65
  2819. data/src/core/lib/gprpp/validation_errors.h +0 -134
  2820. data/src/core/lib/gprpp/windows/directory_reader.cc +0 -81
  2821. data/src/core/lib/gprpp/windows/env.cc +0 -56
  2822. data/src/core/lib/gprpp/windows/stat.cc +0 -52
  2823. data/src/core/lib/gprpp/windows/thd.cc +0 -184
  2824. data/src/core/lib/gprpp/work_serializer.cc +0 -558
  2825. data/src/core/lib/gprpp/work_serializer.h +0 -106
  2826. data/src/core/lib/gprpp/xxhash_inline.h +0 -29
  2827. data/src/core/lib/http/format_request.cc +0 -136
  2828. data/src/core/lib/http/format_request.h +0 -37
  2829. data/src/core/lib/http/httpcli.cc +0 -392
  2830. data/src/core/lib/http/httpcli.h +0 -267
  2831. data/src/core/lib/http/httpcli_security_connector.cc +0 -213
  2832. data/src/core/lib/http/httpcli_ssl_credentials.h +0 -38
  2833. data/src/core/lib/http/parser.cc +0 -451
  2834. data/src/core/lib/http/parser.h +0 -129
  2835. data/src/core/lib/iomgr/ev_windows.cc +0 -30
  2836. data/src/core/lib/iomgr/gethostname.h +0 -26
  2837. data/src/core/lib/iomgr/gethostname_fallback.cc +0 -30
  2838. data/src/core/lib/iomgr/gethostname_host_name_max.cc +0 -40
  2839. data/src/core/lib/iomgr/gethostname_sysconf.cc +0 -40
  2840. data/src/core/lib/iomgr/grpc_if_nametoindex.h +0 -30
  2841. data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +0 -43
  2842. data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +0 -39
  2843. data/src/core/lib/json/json.h +0 -29
  2844. data/src/core/lib/json/json_args.h +0 -34
  2845. data/src/core/lib/json/json_channel_args.h +0 -42
  2846. data/src/core/lib/json/json_object_loader.cc +0 -215
  2847. data/src/core/lib/json/json_object_loader.h +0 -645
  2848. data/src/core/lib/json/json_reader.cc +0 -956
  2849. data/src/core/lib/json/json_reader.h +0 -34
  2850. data/src/core/lib/json/json_util.cc +0 -101
  2851. data/src/core/lib/json/json_util.h +0 -164
  2852. data/src/core/lib/json/json_writer.cc +0 -339
  2853. data/src/core/lib/json/json_writer.h +0 -33
  2854. data/src/core/lib/matchers/matchers.cc +0 -330
  2855. data/src/core/lib/matchers/matchers.h +0 -163
  2856. data/src/core/lib/promise/trace.cc +0 -20
  2857. data/src/core/lib/promise/trace.h +0 -24
  2858. data/src/core/lib/resource_quota/trace.cc +0 -19
  2859. data/src/core/lib/resource_quota/trace.h +0 -24
  2860. data/src/core/lib/slice/slice_refcount.cc +0 -20
  2861. data/src/core/lib/surface/api_trace.cc +0 -25
  2862. data/src/core/lib/surface/api_trace.h +0 -52
  2863. data/src/core/lib/surface/call_trace.h +0 -24
  2864. data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
  2865. data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
  2866. data/src/core/lib/transport/batch_builder.cc +0 -172
  2867. data/src/core/lib/transport/batch_builder.h +0 -474
  2868. data/src/core/lib/uri/uri_parser.cc +0 -372
  2869. data/src/core/lib/uri/uri_parser.h +0 -101
  2870. data/src/core/resolver/binder/binder_resolver.cc +0 -154
  2871. data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
  2872. data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
  2873. data/src/core/xds/grpc/upb_utils.h +0 -45
  2874. data/src/core/xds/grpc/xds_http_filters.cc +0 -116
  2875. data/src/core/xds/grpc/xds_http_filters.h +0 -182
  2876. data/src/core/xds/xds_client/xds_client_stats.cc +0 -174
  2877. data/src/core/xds/xds_client/xds_client_stats.h +0 -258
  2878. data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
  2879. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +0 -284
  2880. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +0 -95
  2881. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +0 -89
  2882. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +0 -84
  2883. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +0 -151
  2884. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +0 -85
  2885. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +0 -465
  2886. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +0 -279
  2887. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +0 -235
  2888. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +0 -74
  2889. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +0 -457
  2890. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +0 -245
  2891. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +0 -259
  2892. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +0 -214
  2893. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +0 -183
  2894. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +0 -397
  2895. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +0 -103
  2896. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +0 -98
  2897. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +0 -105
  2898. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +0 -94
  2899. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +0 -241
  2900. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +0 -973
  2901. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +0 -708
  2902. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +0 -212
  2903. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +0 -317
  2904. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +0 -126
  2905. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +0 -268
  2906. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +0 -475
  2907. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +0 -726
  2908. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +0 -309
  2909. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +0 -544
  2910. data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +0 -92
  2911. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +0 -235
  2912. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +0 -334
  2913. data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c +0 -192
  2914. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +0 -480
  2915. data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +0 -102
  2916. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +0 -189
  2917. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +0 -133
  2918. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +0 -169
  2919. data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +0 -57
  2920. data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +0 -465
  2921. data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +0 -158
  2922. data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +0 -53
  2923. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +0 -266
  2924. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +0 -718
  2925. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +0 -913
  2926. data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +0 -156
  2927. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +0 -224
  2928. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +0 -127
  2929. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +0 -152
  2930. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +0 -284
  2931. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +0 -841
  2932. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +0 -341
  2933. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +0 -228
  2934. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +0 -90
  2935. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +0 -455
  2936. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +0 -94
  2937. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +0 -598
  2938. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +0 -237
  2939. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +0 -514
  2940. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +0 -647
  2941. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
  2942. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +0 -75
  2943. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -55
  2944. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -62
  2945. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +0 -61
  2946. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +0 -93
  2947. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +0 -41
  2948. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -54
  2949. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -148
  2950. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +0 -292
  2951. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +0 -242
  2952. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +0 -2157
  2953. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +0 -18
  2954. data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +0 -523
  2955. data/third_party/boringssl-with-bazel/src/crypto/des/des.c +0 -871
  2956. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +0 -165
  2957. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +0 -480
  2958. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +0 -266
  2959. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +0 -990
  2960. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +0 -421
  2961. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +0 -572
  2962. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +0 -96
  2963. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +0 -508
  2964. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +0 -78
  2965. data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +0 -124
  2966. data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +0 -265
  2967. data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +0 -91
  2968. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +0 -903
  2969. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +0 -430
  2970. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +0 -547
  2971. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +0 -483
  2972. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c +0 -137
  2973. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c +0 -120
  2974. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +0 -338
  2975. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +0 -274
  2976. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +0 -332
  2977. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +0 -100
  2978. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +0 -224
  2979. data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +0 -232
  2980. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +0 -646
  2981. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +0 -241
  2982. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +0 -106
  2983. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +0 -236
  2984. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +0 -146
  2985. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +0 -381
  2986. data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +0 -209
  2987. data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +0 -156
  2988. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +0 -236
  2989. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -106
  2990. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +0 -1281
  2991. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +0 -242
  2992. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +0 -124
  2993. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +0 -275
  2994. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c +0 -310
  2995. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c +0 -541
  2996. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +0 -428
  2997. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +0 -267
  2998. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c +0 -201
  2999. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +0 -234
  3000. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +0 -909
  3001. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +0 -87
  3002. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +0 -1276
  3003. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +0 -397
  3004. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +0 -331
  3005. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +0 -624
  3006. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.c +0 -146
  3007. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +0 -532
  3008. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +0 -222
  3009. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +0 -744
  3010. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +0 -1077
  3011. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +0 -356
  3012. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +0 -137
  3013. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +0 -363
  3014. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +0 -499
  3015. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +0 -287
  3016. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +0 -717
  3017. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +0 -1463
  3018. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.c +0 -446
  3019. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.c +0 -322
  3020. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +0 -245
  3021. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +0 -489
  3022. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +0 -288
  3023. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +0 -304
  3024. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.c +0 -267
  3025. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +0 -1043
  3026. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +0 -557
  3027. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +0 -491
  3028. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +0 -104
  3029. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +0 -359
  3030. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +0 -1163
  3031. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +0 -637
  3032. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +0 -749
  3033. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +0 -173
  3034. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +0 -336
  3035. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +0 -269
  3036. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +0 -255
  3037. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +0 -264
  3038. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +0 -130
  3039. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +0 -372
  3040. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +0 -32
  3041. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c +0 -112
  3042. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +0 -256
  3043. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +0 -240
  3044. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h +0 -37
  3045. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +0 -284
  3046. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +0 -164
  3047. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +0 -200
  3048. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +0 -196
  3049. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +0 -743
  3050. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +0 -302
  3051. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +0 -428
  3052. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +0 -87
  3053. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +0 -90
  3054. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +0 -220
  3055. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +0 -197
  3056. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +0 -68
  3057. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +0 -64
  3058. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +0 -493
  3059. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +0 -328
  3060. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +0 -241
  3061. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +0 -423
  3062. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +0 -1038
  3063. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +0 -1351
  3064. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +0 -119
  3065. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +0 -1064
  3066. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +0 -328
  3067. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +0 -439
  3068. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +0 -359
  3069. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +0 -537
  3070. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +0 -218
  3071. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +0 -801
  3072. data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +0 -2234
  3073. data/third_party/boringssl-with-bazel/src/crypto/keccak/internal.h +0 -70
  3074. data/third_party/boringssl-with-bazel/src/crypto/keccak/keccak.c +0 -279
  3075. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +0 -844
  3076. data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +0 -350
  3077. data/third_party/boringssl-with-bazel/src/crypto/mem.c +0 -609
  3078. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +0 -564
  3079. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c +0 -122
  3080. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +0 -243
  3081. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +0 -294
  3082. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +0 -790
  3083. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +0 -87
  3084. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +0 -251
  3085. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +0 -183
  3086. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +0 -64
  3087. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +0 -64
  3088. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +0 -193
  3089. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +0 -523
  3090. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +0 -316
  3091. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +0 -527
  3092. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +0 -1352
  3093. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +0 -314
  3094. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +0 -308
  3095. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +0 -847
  3096. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +0 -261
  3097. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +0 -57
  3098. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +0 -44
  3099. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +0 -52
  3100. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +0 -34
  3101. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +0 -158
  3102. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +0 -74
  3103. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +0 -38
  3104. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +0 -95
  3105. data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c +0 -98
  3106. data/third_party/boringssl-with-bazel/src/crypto/refcount.c +0 -59
  3107. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +0 -77
  3108. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +0 -324
  3109. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +0 -570
  3110. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c +0 -22
  3111. data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +0 -79
  3112. data/third_party/boringssl-with-bazel/src/crypto/spx/address.c +0 -101
  3113. data/third_party/boringssl-with-bazel/src/crypto/spx/address.h +0 -50
  3114. data/third_party/boringssl-with-bazel/src/crypto/spx/fors.c +0 -133
  3115. data/third_party/boringssl-with-bazel/src/crypto/spx/fors.h +0 -54
  3116. data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.c +0 -150
  3117. data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.h +0 -61
  3118. data/third_party/boringssl-with-bazel/src/crypto/spx/params.h +0 -71
  3119. data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +0 -140
  3120. data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.c +0 -53
  3121. data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.h +0 -44
  3122. data/third_party/boringssl-with-bazel/src/crypto/spx/thash.c +0 -136
  3123. data/third_party/boringssl-with-bazel/src/crypto/spx/thash.h +0 -70
  3124. data/third_party/boringssl-with-bazel/src/crypto/spx/wots.c +0 -135
  3125. data/third_party/boringssl-with-bazel/src/crypto/spx/wots.h +0 -45
  3126. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +0 -534
  3127. data/third_party/boringssl-with-bazel/src/crypto/thread.c +0 -110
  3128. data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -51
  3129. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +0 -150
  3130. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +0 -236
  3131. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +0 -1668
  3132. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +0 -687
  3133. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +0 -1267
  3134. data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +0 -94
  3135. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +0 -136
  3136. data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +0 -116
  3137. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +0 -178
  3138. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +0 -585
  3139. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +0 -400
  3140. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -269
  3141. data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +0 -79
  3142. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +0 -227
  3143. data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +0 -786
  3144. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +0 -401
  3145. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +0 -145
  3146. data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +0 -245
  3147. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +0 -329
  3148. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +0 -121
  3149. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.c +0 -221
  3150. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.c +0 -73
  3151. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.c +0 -634
  3152. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.c +0 -135
  3153. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.c +0 -141
  3154. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.c +0 -416
  3155. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +0 -482
  3156. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +0 -598
  3157. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.c +0 -112
  3158. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.c +0 -154
  3159. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.c +0 -270
  3160. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.c +0 -122
  3161. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +0 -211
  3162. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.c +0 -121
  3163. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +0 -344
  3164. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.c +0 -555
  3165. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.c +0 -81
  3166. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.c +0 -142
  3167. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.c +0 -150
  3168. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.c +0 -224
  3169. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +0 -624
  3170. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.c +0 -170
  3171. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +0 -1357
  3172. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -89
  3173. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +0 -227
  3174. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +0 -280
  3175. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +0 -108
  3176. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +0 -86
  3177. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +0 -181
  3178. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +0 -609
  3179. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +0 -206
  3180. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +0 -299
  3181. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +0 -240
  3182. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +0 -160
  3183. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +0 -189
  3184. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +0 -291
  3185. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +0 -1648
  3186. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +0 -440
  3187. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +0 -277
  3188. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +0 -407
  3189. data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +0 -109
  3190. data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +0 -133
  3191. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +0 -149
  3192. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +0 -356
  3193. data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +0 -97
  3194. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +0 -384
  3195. data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +0 -78
  3196. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +0 -527
  3197. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -210
  3198. data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +0 -116
  3199. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +0 -93
  3200. data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +0 -79
  3201. data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +0 -70
  3202. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +0 -544
  3203. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +0 -209
  3204. data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.c +0 -1514
  3205. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h +0 -90
@@ -3,15 +3,17 @@
3
3
  * google/protobuf/descriptor.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 GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_
9
- #define GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_
9
+ #ifndef GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H__UPB_H_
10
+ #define GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H__UPB_H_
10
11
 
11
12
  #include "upb/generated_code_support.h"
12
13
 
13
14
  #include "google/protobuf/descriptor.upb_minitable.h"
14
15
 
16
+
15
17
  // Must be last.
16
18
  #include "upb/port/def.inc"
17
19
 
@@ -37,6 +39,7 @@ typedef struct google_protobuf_FileOptions { upb_Message UPB_PRIVATE(base); } go
37
39
  typedef struct google_protobuf_MessageOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_MessageOptions;
38
40
  typedef struct google_protobuf_FieldOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions;
39
41
  typedef struct google_protobuf_FieldOptions_EditionDefault { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions_EditionDefault;
42
+ typedef struct google_protobuf_FieldOptions_FeatureSupport { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions_FeatureSupport;
40
43
  typedef struct google_protobuf_OneofOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_OneofOptions;
41
44
  typedef struct google_protobuf_EnumOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumOptions;
42
45
  typedef struct google_protobuf_EnumValueOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumValueOptions;
@@ -56,6 +59,7 @@ typedef enum {
56
59
  google_protobuf_EDITION_UNKNOWN = 0,
57
60
  google_protobuf_EDITION_1_TEST_ONLY = 1,
58
61
  google_protobuf_EDITION_2_TEST_ONLY = 2,
62
+ google_protobuf_EDITION_LEGACY = 900,
59
63
  google_protobuf_EDITION_PROTO2 = 998,
60
64
  google_protobuf_EDITION_PROTO3 = 999,
61
65
  google_protobuf_EDITION_2023 = 1000,
@@ -228,6 +232,7 @@ UPB_INLINE void google_protobuf_FileDescriptorSet_clear_file(google_protobuf_Fil
228
232
  }
229
233
  UPB_INLINE const google_protobuf_FileDescriptorProto* const* google_protobuf_FileDescriptorSet_file(const google_protobuf_FileDescriptorSet* msg, size_t* size) {
230
234
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
235
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
231
236
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
232
237
  if (arr) {
233
238
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -239,6 +244,7 @@ UPB_INLINE const google_protobuf_FileDescriptorProto* const* google_protobuf_Fil
239
244
  }
240
245
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorSet_file_upb_array(const google_protobuf_FileDescriptorSet* msg, size_t* size) {
241
246
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
247
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
242
248
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
243
249
  if (size) {
244
250
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -247,6 +253,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorSet_file_upb_array(co
247
253
  }
248
254
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorSet_file_mutable_upb_array(google_protobuf_FileDescriptorSet* msg, size_t* size, upb_Arena* arena) {
249
255
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
256
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
250
257
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
251
258
  &field, arena);
252
259
  if (size) {
@@ -257,6 +264,7 @@ UPB_INLINE upb_Array* _google_protobuf_FileDescriptorSet_file_mutable_upb_array(
257
264
 
258
265
  UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorSet_mutable_file(google_protobuf_FileDescriptorSet* msg, size_t* size) {
259
266
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
267
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
260
268
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
261
269
  if (arr) {
262
270
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -273,6 +281,7 @@ UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorS
273
281
  }
274
282
  UPB_INLINE struct google_protobuf_FileDescriptorProto* google_protobuf_FileDescriptorSet_add_file(google_protobuf_FileDescriptorSet* msg, upb_Arena* arena) {
275
283
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
284
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
276
285
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
277
286
  UPB_UPCAST(msg), &field, arena);
278
287
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -392,6 +401,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_message_type(google_pr
392
401
  }
393
402
  UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDescriptorProto_message_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
394
403
  const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
404
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
395
405
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
396
406
  if (arr) {
397
407
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -403,6 +413,7 @@ UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDes
403
413
  }
404
414
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_message_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
405
415
  const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
416
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
406
417
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
407
418
  if (size) {
408
419
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -411,6 +422,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_message_type_up
411
422
  }
412
423
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_message_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
413
424
  const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
425
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
414
426
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
415
427
  &field, arena);
416
428
  if (size) {
@@ -424,6 +436,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_enum_type(google_proto
424
436
  }
425
437
  UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_FileDescriptorProto_enum_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
426
438
  const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
439
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
427
440
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
428
441
  if (arr) {
429
442
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -435,6 +448,7 @@ UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_Fil
435
448
  }
436
449
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_enum_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
437
450
  const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
451
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
438
452
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
439
453
  if (size) {
440
454
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -443,6 +457,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_enum_type_upb_a
443
457
  }
444
458
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_enum_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
445
459
  const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
460
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
446
461
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
447
462
  &field, arena);
448
463
  if (size) {
@@ -456,6 +471,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_service(google_protobu
456
471
  }
457
472
  UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_FileDescriptorProto_service(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
458
473
  const upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
474
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
459
475
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
460
476
  if (arr) {
461
477
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -467,6 +483,7 @@ UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_
467
483
  }
468
484
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_service_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
469
485
  const upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
486
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
470
487
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
471
488
  if (size) {
472
489
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -475,6 +492,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_service_upb_arr
475
492
  }
476
493
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_service_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
477
494
  const upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
495
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
478
496
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
479
497
  &field, arena);
480
498
  if (size) {
@@ -488,6 +506,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_extension(google_proto
488
506
  }
489
507
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_FileDescriptorProto_extension(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
490
508
  const upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
509
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
491
510
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
492
511
  if (arr) {
493
512
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -499,6 +518,7 @@ UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_Fi
499
518
  }
500
519
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_extension_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
501
520
  const upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
521
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
502
522
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
503
523
  if (size) {
504
524
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -507,6 +527,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_extension_upb_a
507
527
  }
508
528
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_extension_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
509
529
  const upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
530
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
510
531
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
511
532
  &field, arena);
512
533
  if (size) {
@@ -522,6 +543,7 @@ UPB_INLINE const google_protobuf_FileOptions* google_protobuf_FileDescriptorProt
522
543
  const google_protobuf_FileOptions* default_val = NULL;
523
544
  const google_protobuf_FileOptions* ret;
524
545
  const upb_MiniTableField field = {8, UPB_SIZE(32, 88), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
546
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileOptions_msg_init);
525
547
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
526
548
  &default_val, &ret);
527
549
  return ret;
@@ -538,6 +560,7 @@ UPB_INLINE const google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorP
538
560
  const google_protobuf_SourceCodeInfo* default_val = NULL;
539
561
  const google_protobuf_SourceCodeInfo* ret;
540
562
  const upb_MiniTableField field = {9, UPB_SIZE(36, 96), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
563
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo_msg_init);
541
564
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
542
565
  &default_val, &ret);
543
566
  return ret;
@@ -645,11 +668,11 @@ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_edition(const google_pro
645
668
 
646
669
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_name(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
647
670
  const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
648
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
671
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
649
672
  }
650
673
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_package(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
651
674
  const upb_MiniTableField field = {2, UPB_SIZE(60, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
652
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
675
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
653
676
  }
654
677
  UPB_INLINE upb_StringView* google_protobuf_FileDescriptorProto_mutable_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) {
655
678
  upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -681,6 +704,7 @@ UPB_INLINE bool google_protobuf_FileDescriptorProto_add_dependency(google_protob
681
704
  }
682
705
  UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_mutable_message_type(google_protobuf_FileDescriptorProto* msg, size_t* size) {
683
706
  upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
707
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
684
708
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
685
709
  if (arr) {
686
710
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -697,6 +721,7 @@ UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto
697
721
  }
698
722
  UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
699
723
  upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
724
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
700
725
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
701
726
  UPB_UPCAST(msg), &field, arena);
702
727
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -711,6 +736,7 @@ UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescripto
711
736
  }
712
737
  UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_mutable_enum_type(google_protobuf_FileDescriptorProto* msg, size_t* size) {
713
738
  upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
739
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
714
740
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
715
741
  if (arr) {
716
742
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -727,6 +753,7 @@ UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorP
727
753
  }
728
754
  UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
729
755
  upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
756
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
730
757
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
731
758
  UPB_UPCAST(msg), &field, arena);
732
759
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -741,6 +768,7 @@ UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescr
741
768
  }
742
769
  UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_mutable_service(google_protobuf_FileDescriptorProto* msg, size_t* size) {
743
770
  upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
771
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
744
772
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
745
773
  if (arr) {
746
774
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -757,6 +785,7 @@ UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescript
757
785
  }
758
786
  UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
759
787
  upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
788
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
760
789
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
761
790
  UPB_UPCAST(msg), &field, arena);
762
791
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -771,6 +800,7 @@ UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDe
771
800
  }
772
801
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_mutable_extension(google_protobuf_FileDescriptorProto* msg, size_t* size) {
773
802
  upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
803
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
774
804
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
775
805
  if (arr) {
776
806
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -787,6 +817,7 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptor
787
817
  }
788
818
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
789
819
  upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
820
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
790
821
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
791
822
  UPB_UPCAST(msg), &field, arena);
792
823
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -801,7 +832,8 @@ UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDesc
801
832
  }
802
833
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_options(google_protobuf_FileDescriptorProto *msg, google_protobuf_FileOptions* value) {
803
834
  const upb_MiniTableField field = {8, UPB_SIZE(32, 88), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
804
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
835
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileOptions_msg_init);
836
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
805
837
  }
806
838
  UPB_INLINE struct google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_mutable_options(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
807
839
  struct google_protobuf_FileOptions* sub = (struct google_protobuf_FileOptions*)google_protobuf_FileDescriptorProto_options(msg);
@@ -813,7 +845,8 @@ UPB_INLINE struct google_protobuf_FileOptions* google_protobuf_FileDescriptorPro
813
845
  }
814
846
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_source_code_info(google_protobuf_FileDescriptorProto *msg, google_protobuf_SourceCodeInfo* value) {
815
847
  const upb_MiniTableField field = {9, UPB_SIZE(36, 96), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
816
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
848
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo_msg_init);
849
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
817
850
  }
818
851
  UPB_INLINE struct google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_mutable_source_code_info(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
819
852
  struct google_protobuf_SourceCodeInfo* sub = (struct google_protobuf_SourceCodeInfo*)google_protobuf_FileDescriptorProto_source_code_info(msg);
@@ -881,11 +914,11 @@ UPB_INLINE bool google_protobuf_FileDescriptorProto_add_weak_dependency(google_p
881
914
  }
882
915
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_syntax(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
883
916
  const upb_MiniTableField field = {12, UPB_SIZE(68, 120), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
884
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
917
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
885
918
  }
886
919
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_edition(google_protobuf_FileDescriptorProto *msg, int32_t value) {
887
920
  const upb_MiniTableField field = {14, UPB_SIZE(48, 12), 69, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
888
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
921
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
889
922
  }
890
923
 
891
924
  /* google.protobuf.DescriptorProto */
@@ -946,6 +979,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_field(google_protobuf_Desc
946
979
  }
947
980
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_field(const google_protobuf_DescriptorProto* msg, size_t* size) {
948
981
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
982
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
949
983
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
950
984
  if (arr) {
951
985
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -957,6 +991,7 @@ UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_De
957
991
  }
958
992
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_field_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
959
993
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
994
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
960
995
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
961
996
  if (size) {
962
997
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -965,6 +1000,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_field_upb_array(con
965
1000
  }
966
1001
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_field_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
967
1002
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1003
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
968
1004
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
969
1005
  &field, arena);
970
1006
  if (size) {
@@ -978,6 +1014,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_nested_type(google_protobu
978
1014
  }
979
1015
  UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_DescriptorProto_nested_type(const google_protobuf_DescriptorProto* msg, size_t* size) {
980
1016
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1017
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
981
1018
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
982
1019
  if (arr) {
983
1020
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -989,6 +1026,7 @@ UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_Descrip
989
1026
  }
990
1027
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_nested_type_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
991
1028
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1029
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
992
1030
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
993
1031
  if (size) {
994
1032
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -997,6 +1035,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_nested_type_upb_arr
997
1035
  }
998
1036
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_nested_type_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
999
1037
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1038
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
1000
1039
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1001
1040
  &field, arena);
1002
1041
  if (size) {
@@ -1010,6 +1049,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_enum_type(google_protobuf_
1010
1049
  }
1011
1050
  UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_DescriptorProto_enum_type(const google_protobuf_DescriptorProto* msg, size_t* size) {
1012
1051
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1052
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
1013
1053
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1014
1054
  if (arr) {
1015
1055
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1021,6 +1061,7 @@ UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_Des
1021
1061
  }
1022
1062
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_enum_type_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1023
1063
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1064
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
1024
1065
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1025
1066
  if (size) {
1026
1067
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1029,6 +1070,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_enum_type_upb_array
1029
1070
  }
1030
1071
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_enum_type_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1031
1072
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1073
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
1032
1074
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1033
1075
  &field, arena);
1034
1076
  if (size) {
@@ -1042,6 +1084,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_extension_range(google_pro
1042
1084
  }
1043
1085
  UPB_INLINE const google_protobuf_DescriptorProto_ExtensionRange* const* google_protobuf_DescriptorProto_extension_range(const google_protobuf_DescriptorProto* msg, size_t* size) {
1044
1086
  const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1087
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
1045
1088
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1046
1089
  if (arr) {
1047
1090
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1053,6 +1096,7 @@ UPB_INLINE const google_protobuf_DescriptorProto_ExtensionRange* const* google_p
1053
1096
  }
1054
1097
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_range_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1055
1098
  const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1099
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
1056
1100
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1057
1101
  if (size) {
1058
1102
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1061,6 +1105,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_range_upb
1061
1105
  }
1062
1106
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_extension_range_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1063
1107
  const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1108
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
1064
1109
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1065
1110
  &field, arena);
1066
1111
  if (size) {
@@ -1074,6 +1119,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_extension(google_protobuf_
1074
1119
  }
1075
1120
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_extension(const google_protobuf_DescriptorProto* msg, size_t* size) {
1076
1121
  const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1122
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1077
1123
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1078
1124
  if (arr) {
1079
1125
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1085,6 +1131,7 @@ UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_De
1085
1131
  }
1086
1132
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1087
1133
  const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1134
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1088
1135
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1089
1136
  if (size) {
1090
1137
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1093,6 +1140,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_upb_array
1093
1140
  }
1094
1141
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_extension_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1095
1142
  const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1143
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1096
1144
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1097
1145
  &field, arena);
1098
1146
  if (size) {
@@ -1108,6 +1156,7 @@ UPB_INLINE const google_protobuf_MessageOptions* google_protobuf_DescriptorProto
1108
1156
  const google_protobuf_MessageOptions* default_val = NULL;
1109
1157
  const google_protobuf_MessageOptions* ret;
1110
1158
  const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 65, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1159
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MessageOptions_msg_init);
1111
1160
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1112
1161
  &default_val, &ret);
1113
1162
  return ret;
@@ -1122,6 +1171,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_oneof_decl(google_protobuf
1122
1171
  }
1123
1172
  UPB_INLINE const google_protobuf_OneofDescriptorProto* const* google_protobuf_DescriptorProto_oneof_decl(const google_protobuf_DescriptorProto* msg, size_t* size) {
1124
1173
  const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1174
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
1125
1175
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1126
1176
  if (arr) {
1127
1177
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1133,6 +1183,7 @@ UPB_INLINE const google_protobuf_OneofDescriptorProto* const* google_protobuf_De
1133
1183
  }
1134
1184
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_oneof_decl_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1135
1185
  const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1186
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
1136
1187
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1137
1188
  if (size) {
1138
1189
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1141,6 +1192,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_oneof_decl_upb_arra
1141
1192
  }
1142
1193
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_oneof_decl_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1143
1194
  const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1195
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
1144
1196
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1145
1197
  &field, arena);
1146
1198
  if (size) {
@@ -1154,6 +1206,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_reserved_range(google_prot
1154
1206
  }
1155
1207
  UPB_INLINE const google_protobuf_DescriptorProto_ReservedRange* const* google_protobuf_DescriptorProto_reserved_range(const google_protobuf_DescriptorProto* msg, size_t* size) {
1156
1208
  const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1209
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
1157
1210
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1158
1211
  if (arr) {
1159
1212
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1165,6 +1218,7 @@ UPB_INLINE const google_protobuf_DescriptorProto_ReservedRange* const* google_pr
1165
1218
  }
1166
1219
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_reserved_range_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1167
1220
  const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1221
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
1168
1222
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1169
1223
  if (size) {
1170
1224
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1173,6 +1227,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_reserved_range_upb_
1173
1227
  }
1174
1228
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_reserved_range_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1175
1229
  const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1230
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
1176
1231
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1177
1232
  &field, arena);
1178
1233
  if (size) {
@@ -1215,10 +1270,11 @@ UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_reserved_name_mutable_upb
1215
1270
 
1216
1271
  UPB_INLINE void google_protobuf_DescriptorProto_set_name(google_protobuf_DescriptorProto *msg, upb_StringView value) {
1217
1272
  const upb_MiniTableField field = {1, UPB_SIZE(48, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1218
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1273
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1219
1274
  }
1220
1275
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_field(google_protobuf_DescriptorProto* msg, size_t* size) {
1221
1276
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1277
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1222
1278
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1223
1279
  if (arr) {
1224
1280
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1235,6 +1291,7 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProt
1235
1291
  }
1236
1292
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_field(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1237
1293
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1294
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1238
1295
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1239
1296
  UPB_UPCAST(msg), &field, arena);
1240
1297
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1249,6 +1306,7 @@ UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_Descript
1249
1306
  }
1250
1307
  UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_mutable_nested_type(google_protobuf_DescriptorProto* msg, size_t* size) {
1251
1308
  upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1309
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
1252
1310
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1253
1311
  if (arr) {
1254
1312
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1265,6 +1323,7 @@ UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_res
1265
1323
  }
1266
1324
  UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_DescriptorProto_add_nested_type(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1267
1325
  upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1326
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
1268
1327
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1269
1328
  UPB_UPCAST(msg), &field, arena);
1270
1329
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1279,6 +1338,7 @@ UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_DescriptorPro
1279
1338
  }
1280
1339
  UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto_mutable_enum_type(google_protobuf_DescriptorProto* msg, size_t* size) {
1281
1340
  upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1341
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
1282
1342
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1283
1343
  if (arr) {
1284
1344
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1295,6 +1355,7 @@ UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto
1295
1355
  }
1296
1356
  UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_DescriptorProto_add_enum_type(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1297
1357
  upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1358
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
1298
1359
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1299
1360
  UPB_UPCAST(msg), &field, arena);
1300
1361
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1309,6 +1370,7 @@ UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_Descripto
1309
1370
  }
1310
1371
  UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_DescriptorProto_mutable_extension_range(google_protobuf_DescriptorProto* msg, size_t* size) {
1311
1372
  upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1373
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
1312
1374
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1313
1375
  if (arr) {
1314
1376
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1325,6 +1387,7 @@ UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_Desc
1325
1387
  }
1326
1388
  UPB_INLINE struct google_protobuf_DescriptorProto_ExtensionRange* google_protobuf_DescriptorProto_add_extension_range(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1327
1389
  upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1390
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
1328
1391
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1329
1392
  UPB_UPCAST(msg), &field, arena);
1330
1393
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1339,6 +1402,7 @@ UPB_INLINE struct google_protobuf_DescriptorProto_ExtensionRange* google_protobu
1339
1402
  }
1340
1403
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_extension(google_protobuf_DescriptorProto* msg, size_t* size) {
1341
1404
  upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1405
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1342
1406
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1343
1407
  if (arr) {
1344
1408
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1355,6 +1419,7 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProt
1355
1419
  }
1356
1420
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_extension(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1357
1421
  upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1422
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1358
1423
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1359
1424
  UPB_UPCAST(msg), &field, arena);
1360
1425
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1369,7 +1434,8 @@ UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_Descript
1369
1434
  }
1370
1435
  UPB_INLINE void google_protobuf_DescriptorProto_set_options(google_protobuf_DescriptorProto *msg, google_protobuf_MessageOptions* value) {
1371
1436
  const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 65, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1372
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1437
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MessageOptions_msg_init);
1438
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1373
1439
  }
1374
1440
  UPB_INLINE struct google_protobuf_MessageOptions* google_protobuf_DescriptorProto_mutable_options(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1375
1441
  struct google_protobuf_MessageOptions* sub = (struct google_protobuf_MessageOptions*)google_protobuf_DescriptorProto_options(msg);
@@ -1381,6 +1447,7 @@ UPB_INLINE struct google_protobuf_MessageOptions* google_protobuf_DescriptorProt
1381
1447
  }
1382
1448
  UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProto_mutable_oneof_decl(google_protobuf_DescriptorProto* msg, size_t* size) {
1383
1449
  upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1450
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
1384
1451
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1385
1452
  if (arr) {
1386
1453
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1397,6 +1464,7 @@ UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProt
1397
1464
  }
1398
1465
  UPB_INLINE struct google_protobuf_OneofDescriptorProto* google_protobuf_DescriptorProto_add_oneof_decl(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1399
1466
  upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1467
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
1400
1468
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1401
1469
  UPB_UPCAST(msg), &field, arena);
1402
1470
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1411,6 +1479,7 @@ UPB_INLINE struct google_protobuf_OneofDescriptorProto* google_protobuf_Descript
1411
1479
  }
1412
1480
  UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_DescriptorProto_mutable_reserved_range(google_protobuf_DescriptorProto* msg, size_t* size) {
1413
1481
  upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1482
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
1414
1483
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1415
1484
  if (arr) {
1416
1485
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1427,6 +1496,7 @@ UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_Descr
1427
1496
  }
1428
1497
  UPB_INLINE struct google_protobuf_DescriptorProto_ReservedRange* google_protobuf_DescriptorProto_add_reserved_range(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1429
1498
  upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1499
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
1430
1500
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1431
1501
  UPB_UPCAST(msg), &field, arena);
1432
1502
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1544,6 +1614,7 @@ UPB_INLINE const google_protobuf_ExtensionRangeOptions* google_protobuf_Descript
1544
1614
  const google_protobuf_ExtensionRangeOptions* default_val = NULL;
1545
1615
  const google_protobuf_ExtensionRangeOptions* ret;
1546
1616
  const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1617
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions_msg_init);
1547
1618
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1548
1619
  &default_val, &ret);
1549
1620
  return ret;
@@ -1555,15 +1626,16 @@ UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_options(const
1555
1626
 
1556
1627
  UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_start(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) {
1557
1628
  const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1558
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1629
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1559
1630
  }
1560
1631
  UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_end(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) {
1561
1632
  const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1562
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1633
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1563
1634
  }
1564
1635
  UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_options(google_protobuf_DescriptorProto_ExtensionRange *msg, google_protobuf_ExtensionRangeOptions* value) {
1565
1636
  const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1566
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1637
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions_msg_init);
1638
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1567
1639
  }
1568
1640
  UPB_INLINE struct google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_mutable_options(google_protobuf_DescriptorProto_ExtensionRange* msg, upb_Arena* arena) {
1569
1641
  struct google_protobuf_ExtensionRangeOptions* sub = (struct google_protobuf_ExtensionRangeOptions*)google_protobuf_DescriptorProto_ExtensionRange_options(msg);
@@ -1645,11 +1717,11 @@ UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_end(const goog
1645
1717
 
1646
1718
  UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_start(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) {
1647
1719
  const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1648
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1720
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1649
1721
  }
1650
1722
  UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_end(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) {
1651
1723
  const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1652
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1724
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1653
1725
  }
1654
1726
 
1655
1727
  /* google.protobuf.ExtensionRangeOptions */
@@ -1694,6 +1766,7 @@ UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_declaration(google_p
1694
1766
  }
1695
1767
  UPB_INLINE const google_protobuf_ExtensionRangeOptions_Declaration* const* google_protobuf_ExtensionRangeOptions_declaration(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1696
1768
  const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1769
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
1697
1770
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1698
1771
  if (arr) {
1699
1772
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1705,6 +1778,7 @@ UPB_INLINE const google_protobuf_ExtensionRangeOptions_Declaration* const* googl
1705
1778
  }
1706
1779
  UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_upb_array(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1707
1780
  const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1781
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
1708
1782
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1709
1783
  if (size) {
1710
1784
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1713,6 +1787,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_u
1713
1787
  }
1714
1788
  UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_mutable_upb_array(google_protobuf_ExtensionRangeOptions* msg, size_t* size, upb_Arena* arena) {
1715
1789
  const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1790
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
1716
1791
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1717
1792
  &field, arena);
1718
1793
  if (size) {
@@ -1744,6 +1819,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_ExtensionRangeOptio
1744
1819
  const google_protobuf_FeatureSet* default_val = NULL;
1745
1820
  const google_protobuf_FeatureSet* ret;
1746
1821
  const upb_MiniTableField field = {50, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1822
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
1747
1823
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1748
1824
  &default_val, &ret);
1749
1825
  return ret;
@@ -1758,6 +1834,7 @@ UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_uninterpreted_option
1758
1834
  }
1759
1835
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ExtensionRangeOptions_uninterpreted_option(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1760
1836
  const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1837
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
1761
1838
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1762
1839
  if (arr) {
1763
1840
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1769,6 +1846,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Ext
1769
1846
  }
1770
1847
  UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_option_upb_array(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1771
1848
  const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1849
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
1772
1850
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1773
1851
  if (size) {
1774
1852
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1777,6 +1855,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted
1777
1855
  }
1778
1856
  UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_option_mutable_upb_array(google_protobuf_ExtensionRangeOptions* msg, size_t* size, upb_Arena* arena) {
1779
1857
  const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1858
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
1780
1859
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1781
1860
  &field, arena);
1782
1861
  if (size) {
@@ -1787,6 +1866,7 @@ UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_optio
1787
1866
 
1788
1867
  UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration** google_protobuf_ExtensionRangeOptions_mutable_declaration(google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1789
1868
  upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1869
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
1790
1870
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1791
1871
  if (arr) {
1792
1872
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1803,6 +1883,7 @@ UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration** google_protobuf_E
1803
1883
  }
1804
1884
  UPB_INLINE struct google_protobuf_ExtensionRangeOptions_Declaration* google_protobuf_ExtensionRangeOptions_add_declaration(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
1805
1885
  upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1886
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
1806
1887
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1807
1888
  UPB_UPCAST(msg), &field, arena);
1808
1889
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1817,11 +1898,12 @@ UPB_INLINE struct google_protobuf_ExtensionRangeOptions_Declaration* google_prot
1817
1898
  }
1818
1899
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_set_verification(google_protobuf_ExtensionRangeOptions *msg, int32_t value) {
1819
1900
  const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1820
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1901
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1821
1902
  }
1822
1903
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_set_features(google_protobuf_ExtensionRangeOptions *msg, google_protobuf_FeatureSet* value) {
1823
1904
  const upb_MiniTableField field = {50, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1824
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1905
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
1906
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1825
1907
  }
1826
1908
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ExtensionRangeOptions_mutable_features(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
1827
1909
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_ExtensionRangeOptions_features(msg);
@@ -1833,6 +1915,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ExtensionRangeOpti
1833
1915
  }
1834
1916
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeOptions_mutable_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1835
1917
  upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1918
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
1836
1919
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1837
1920
  if (arr) {
1838
1921
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1849,6 +1932,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeO
1849
1932
  }
1850
1933
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ExtensionRangeOptions_add_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
1851
1934
  upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1935
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
1852
1936
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1853
1937
  UPB_UPCAST(msg), &field, arena);
1854
1938
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1981,23 +2065,23 @@ UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_repeated(c
1981
2065
 
1982
2066
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_number(google_protobuf_ExtensionRangeOptions_Declaration *msg, int32_t value) {
1983
2067
  const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1984
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2068
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1985
2069
  }
1986
2070
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_full_name(google_protobuf_ExtensionRangeOptions_Declaration *msg, upb_StringView value) {
1987
2071
  const upb_MiniTableField field = {2, UPB_SIZE(20, 24), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1988
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2072
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1989
2073
  }
1990
2074
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_type(google_protobuf_ExtensionRangeOptions_Declaration *msg, upb_StringView value) {
1991
2075
  const upb_MiniTableField field = {3, UPB_SIZE(28, 40), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1992
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2076
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1993
2077
  }
1994
2078
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_reserved(google_protobuf_ExtensionRangeOptions_Declaration *msg, bool value) {
1995
2079
  const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1996
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2080
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1997
2081
  }
1998
2082
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_repeated(google_protobuf_ExtensionRangeOptions_Declaration *msg, bool value) {
1999
2083
  const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2000
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2084
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2001
2085
  }
2002
2086
 
2003
2087
  /* google.protobuf.FieldDescriptorProto */
@@ -2156,6 +2240,7 @@ UPB_INLINE const google_protobuf_FieldOptions* google_protobuf_FieldDescriptorPr
2156
2240
  const google_protobuf_FieldOptions* default_val = NULL;
2157
2241
  const google_protobuf_FieldOptions* ret;
2158
2242
  const upb_MiniTableField field = {8, UPB_SIZE(24, 96), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2243
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions_msg_init);
2159
2244
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2160
2245
  &default_val, &ret);
2161
2246
  return ret;
@@ -2215,35 +2300,36 @@ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_proto3_optional(const g
2215
2300
 
2216
2301
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2217
2302
  const upb_MiniTableField field = {1, UPB_SIZE(36, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2218
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2303
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2219
2304
  }
2220
2305
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_extendee(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2221
2306
  const upb_MiniTableField field = {2, UPB_SIZE(44, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2222
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2307
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2223
2308
  }
2224
2309
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_number(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
2225
2310
  const upb_MiniTableField field = {3, 12, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2226
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2311
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2227
2312
  }
2228
2313
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_label(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
2229
2314
  const upb_MiniTableField field = {4, 16, 67, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2230
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2315
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2231
2316
  }
2232
2317
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
2233
2318
  const upb_MiniTableField field = {5, 20, 68, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2234
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2319
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2235
2320
  }
2236
2321
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2237
2322
  const upb_MiniTableField field = {6, UPB_SIZE(52, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2238
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2323
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2239
2324
  }
2240
2325
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_default_value(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2241
2326
  const upb_MiniTableField field = {7, UPB_SIZE(60, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2242
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2327
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2243
2328
  }
2244
2329
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_options(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldOptions* value) {
2245
2330
  const upb_MiniTableField field = {8, UPB_SIZE(24, 96), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2246
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2331
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions_msg_init);
2332
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2247
2333
  }
2248
2334
  UPB_INLINE struct google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_mutable_options(google_protobuf_FieldDescriptorProto* msg, upb_Arena* arena) {
2249
2335
  struct google_protobuf_FieldOptions* sub = (struct google_protobuf_FieldOptions*)google_protobuf_FieldDescriptorProto_options(msg);
@@ -2255,15 +2341,15 @@ UPB_INLINE struct google_protobuf_FieldOptions* google_protobuf_FieldDescriptorP
2255
2341
  }
2256
2342
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_oneof_index(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
2257
2343
  const upb_MiniTableField field = {9, UPB_SIZE(28, 24), 72, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2258
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2344
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2259
2345
  }
2260
2346
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_json_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2261
2347
  const upb_MiniTableField field = {10, UPB_SIZE(68, 104), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2262
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2348
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2263
2349
  }
2264
2350
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_proto3_optional(google_protobuf_FieldDescriptorProto *msg, bool value) {
2265
2351
  const upb_MiniTableField field = {17, UPB_SIZE(32, 28), 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2266
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2352
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2267
2353
  }
2268
2354
 
2269
2355
  /* google.protobuf.OneofDescriptorProto */
@@ -2326,6 +2412,7 @@ UPB_INLINE const google_protobuf_OneofOptions* google_protobuf_OneofDescriptorPr
2326
2412
  const google_protobuf_OneofOptions* default_val = NULL;
2327
2413
  const google_protobuf_OneofOptions* ret;
2328
2414
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2415
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofOptions_msg_init);
2329
2416
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2330
2417
  &default_val, &ret);
2331
2418
  return ret;
@@ -2337,11 +2424,12 @@ UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_options(const google_pr
2337
2424
 
2338
2425
  UPB_INLINE void google_protobuf_OneofDescriptorProto_set_name(google_protobuf_OneofDescriptorProto *msg, upb_StringView value) {
2339
2426
  const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2340
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2427
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2341
2428
  }
2342
2429
  UPB_INLINE void google_protobuf_OneofDescriptorProto_set_options(google_protobuf_OneofDescriptorProto *msg, google_protobuf_OneofOptions* value) {
2343
2430
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2344
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2431
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofOptions_msg_init);
2432
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2345
2433
  }
2346
2434
  UPB_INLINE struct google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_mutable_options(google_protobuf_OneofDescriptorProto* msg, upb_Arena* arena) {
2347
2435
  struct google_protobuf_OneofOptions* sub = (struct google_protobuf_OneofOptions*)google_protobuf_OneofDescriptorProto_options(msg);
@@ -2410,6 +2498,7 @@ UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_value(google_protobuf_
2410
2498
  }
2411
2499
  UPB_INLINE const google_protobuf_EnumValueDescriptorProto* const* google_protobuf_EnumDescriptorProto_value(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2412
2500
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2501
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
2413
2502
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2414
2503
  if (arr) {
2415
2504
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2421,6 +2510,7 @@ UPB_INLINE const google_protobuf_EnumValueDescriptorProto* const* google_protobu
2421
2510
  }
2422
2511
  UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_value_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2423
2512
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2513
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
2424
2514
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2425
2515
  if (size) {
2426
2516
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -2429,6 +2519,7 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_value_upb_array
2429
2519
  }
2430
2520
  UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_value_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) {
2431
2521
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2522
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
2432
2523
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
2433
2524
  &field, arena);
2434
2525
  if (size) {
@@ -2444,6 +2535,7 @@ UPB_INLINE const google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProt
2444
2535
  const google_protobuf_EnumOptions* default_val = NULL;
2445
2536
  const google_protobuf_EnumOptions* ret;
2446
2537
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2538
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumOptions_msg_init);
2447
2539
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2448
2540
  &default_val, &ret);
2449
2541
  return ret;
@@ -2458,6 +2550,7 @@ UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_reserved_range(google_
2458
2550
  }
2459
2551
  UPB_INLINE const google_protobuf_EnumDescriptorProto_EnumReservedRange* const* google_protobuf_EnumDescriptorProto_reserved_range(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2460
2552
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2553
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
2461
2554
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2462
2555
  if (arr) {
2463
2556
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2469,6 +2562,7 @@ UPB_INLINE const google_protobuf_EnumDescriptorProto_EnumReservedRange* const* g
2469
2562
  }
2470
2563
  UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2471
2564
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2565
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
2472
2566
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2473
2567
  if (size) {
2474
2568
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -2477,6 +2571,7 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_
2477
2571
  }
2478
2572
  UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) {
2479
2573
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2574
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
2480
2575
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
2481
2576
  &field, arena);
2482
2577
  if (size) {
@@ -2519,10 +2614,11 @@ UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_reserved_name_mutable
2519
2614
 
2520
2615
  UPB_INLINE void google_protobuf_EnumDescriptorProto_set_name(google_protobuf_EnumDescriptorProto *msg, upb_StringView value) {
2521
2616
  const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2522
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2617
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2523
2618
  }
2524
2619
  UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_mutable_value(google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2525
2620
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2621
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
2526
2622
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
2527
2623
  if (arr) {
2528
2624
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2539,6 +2635,7 @@ UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescri
2539
2635
  }
2540
2636
  UPB_INLINE struct google_protobuf_EnumValueDescriptorProto* google_protobuf_EnumDescriptorProto_add_value(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
2541
2637
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2638
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
2542
2639
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
2543
2640
  UPB_UPCAST(msg), &field, arena);
2544
2641
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -2553,7 +2650,8 @@ UPB_INLINE struct google_protobuf_EnumValueDescriptorProto* google_protobuf_Enum
2553
2650
  }
2554
2651
  UPB_INLINE void google_protobuf_EnumDescriptorProto_set_options(google_protobuf_EnumDescriptorProto *msg, google_protobuf_EnumOptions* value) {
2555
2652
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2556
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2653
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumOptions_msg_init);
2654
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2557
2655
  }
2558
2656
  UPB_INLINE struct google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_mutable_options(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
2559
2657
  struct google_protobuf_EnumOptions* sub = (struct google_protobuf_EnumOptions*)google_protobuf_EnumDescriptorProto_options(msg);
@@ -2565,6 +2663,7 @@ UPB_INLINE struct google_protobuf_EnumOptions* google_protobuf_EnumDescriptorPro
2565
2663
  }
2566
2664
  UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protobuf_EnumDescriptorProto_mutable_reserved_range(google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2567
2665
  upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2666
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
2568
2667
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
2569
2668
  if (arr) {
2570
2669
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2581,6 +2680,7 @@ UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protob
2581
2680
  }
2582
2681
  UPB_INLINE struct google_protobuf_EnumDescriptorProto_EnumReservedRange* google_protobuf_EnumDescriptorProto_add_reserved_range(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
2583
2682
  upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2683
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
2584
2684
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
2585
2685
  UPB_UPCAST(msg), &field, arena);
2586
2686
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -2693,11 +2793,11 @@ UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_end(co
2693
2793
 
2694
2794
  UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_start(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) {
2695
2795
  const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2696
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2796
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2697
2797
  }
2698
2798
  UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_end(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) {
2699
2799
  const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2700
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2800
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2701
2801
  }
2702
2802
 
2703
2803
  /* google.protobuf.EnumValueDescriptorProto */
@@ -2776,6 +2876,7 @@ UPB_INLINE const google_protobuf_EnumValueOptions* google_protobuf_EnumValueDesc
2776
2876
  const google_protobuf_EnumValueOptions* default_val = NULL;
2777
2877
  const google_protobuf_EnumValueOptions* ret;
2778
2878
  const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2879
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueOptions_msg_init);
2779
2880
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2780
2881
  &default_val, &ret);
2781
2882
  return ret;
@@ -2787,15 +2888,16 @@ UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_options(const googl
2787
2888
 
2788
2889
  UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_name(google_protobuf_EnumValueDescriptorProto *msg, upb_StringView value) {
2789
2890
  const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2790
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2891
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2791
2892
  }
2792
2893
  UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_number(google_protobuf_EnumValueDescriptorProto *msg, int32_t value) {
2793
2894
  const upb_MiniTableField field = {2, 12, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2794
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2895
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2795
2896
  }
2796
2897
  UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_options(google_protobuf_EnumValueDescriptorProto *msg, google_protobuf_EnumValueOptions* value) {
2797
2898
  const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2798
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2899
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueOptions_msg_init);
2900
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2799
2901
  }
2800
2902
  UPB_INLINE struct google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_mutable_options(google_protobuf_EnumValueDescriptorProto* msg, upb_Arena* arena) {
2801
2903
  struct google_protobuf_EnumValueOptions* sub = (struct google_protobuf_EnumValueOptions*)google_protobuf_EnumValueDescriptorProto_options(msg);
@@ -2864,6 +2966,7 @@ UPB_INLINE void google_protobuf_ServiceDescriptorProto_clear_method(google_proto
2864
2966
  }
2865
2967
  UPB_INLINE const google_protobuf_MethodDescriptorProto* const* google_protobuf_ServiceDescriptorProto_method(const google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
2866
2968
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2969
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
2867
2970
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2868
2971
  if (arr) {
2869
2972
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2875,6 +2978,7 @@ UPB_INLINE const google_protobuf_MethodDescriptorProto* const* google_protobuf_S
2875
2978
  }
2876
2979
  UPB_INLINE const upb_Array* _google_protobuf_ServiceDescriptorProto_method_upb_array(const google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
2877
2980
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2981
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
2878
2982
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2879
2983
  if (size) {
2880
2984
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -2883,6 +2987,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ServiceDescriptorProto_method_upb_a
2883
2987
  }
2884
2988
  UPB_INLINE upb_Array* _google_protobuf_ServiceDescriptorProto_method_mutable_upb_array(google_protobuf_ServiceDescriptorProto* msg, size_t* size, upb_Arena* arena) {
2885
2989
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2990
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
2886
2991
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
2887
2992
  &field, arena);
2888
2993
  if (size) {
@@ -2898,6 +3003,7 @@ UPB_INLINE const google_protobuf_ServiceOptions* google_protobuf_ServiceDescript
2898
3003
  const google_protobuf_ServiceOptions* default_val = NULL;
2899
3004
  const google_protobuf_ServiceOptions* ret;
2900
3005
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3006
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceOptions_msg_init);
2901
3007
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2902
3008
  &default_val, &ret);
2903
3009
  return ret;
@@ -2909,10 +3015,11 @@ UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_options(const google_
2909
3015
 
2910
3016
  UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_name(google_protobuf_ServiceDescriptorProto *msg, upb_StringView value) {
2911
3017
  const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2912
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3018
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2913
3019
  }
2914
3020
  UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescriptorProto_mutable_method(google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
2915
3021
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3022
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
2916
3023
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
2917
3024
  if (arr) {
2918
3025
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2929,6 +3036,7 @@ UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescri
2929
3036
  }
2930
3037
  UPB_INLINE struct google_protobuf_MethodDescriptorProto* google_protobuf_ServiceDescriptorProto_add_method(google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena) {
2931
3038
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3039
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
2932
3040
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
2933
3041
  UPB_UPCAST(msg), &field, arena);
2934
3042
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -2943,7 +3051,8 @@ UPB_INLINE struct google_protobuf_MethodDescriptorProto* google_protobuf_Service
2943
3051
  }
2944
3052
  UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_options(google_protobuf_ServiceDescriptorProto *msg, google_protobuf_ServiceOptions* value) {
2945
3053
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2946
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3054
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceOptions_msg_init);
3055
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2947
3056
  }
2948
3057
  UPB_INLINE struct google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_mutable_options(google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena) {
2949
3058
  struct google_protobuf_ServiceOptions* sub = (struct google_protobuf_ServiceOptions*)google_protobuf_ServiceDescriptorProto_options(msg);
@@ -3046,6 +3155,7 @@ UPB_INLINE const google_protobuf_MethodOptions* google_protobuf_MethodDescriptor
3046
3155
  const google_protobuf_MethodOptions* default_val = NULL;
3047
3156
  const google_protobuf_MethodOptions* ret;
3048
3157
  const upb_MiniTableField field = {4, UPB_SIZE(12, 64), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3158
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodOptions_msg_init);
3049
3159
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3050
3160
  &default_val, &ret);
3051
3161
  return ret;
@@ -3089,19 +3199,20 @@ UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_server_streaming(const
3089
3199
 
3090
3200
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_name(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
3091
3201
  const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3092
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3202
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3093
3203
  }
3094
3204
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_input_type(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
3095
3205
  const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3096
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3206
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3097
3207
  }
3098
3208
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_output_type(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
3099
3209
  const upb_MiniTableField field = {3, UPB_SIZE(36, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3100
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3210
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3101
3211
  }
3102
3212
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_options(google_protobuf_MethodDescriptorProto *msg, google_protobuf_MethodOptions* value) {
3103
3213
  const upb_MiniTableField field = {4, UPB_SIZE(12, 64), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3104
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3214
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodOptions_msg_init);
3215
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3105
3216
  }
3106
3217
  UPB_INLINE struct google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_mutable_options(google_protobuf_MethodDescriptorProto* msg, upb_Arena* arena) {
3107
3218
  struct google_protobuf_MethodOptions* sub = (struct google_protobuf_MethodOptions*)google_protobuf_MethodDescriptorProto_options(msg);
@@ -3113,11 +3224,11 @@ UPB_INLINE struct google_protobuf_MethodOptions* google_protobuf_MethodDescripto
3113
3224
  }
3114
3225
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_client_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
3115
3226
  const upb_MiniTableField field = {5, UPB_SIZE(16, 9), 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3116
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3227
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3117
3228
  }
3118
3229
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_server_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
3119
3230
  const upb_MiniTableField field = {6, UPB_SIZE(17, 10), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3120
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3231
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3121
3232
  }
3122
3233
 
3123
3234
  /* google.protobuf.FileOptions */
@@ -3468,6 +3579,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FileOptions_feature
3468
3579
  const google_protobuf_FeatureSet* default_val = NULL;
3469
3580
  const google_protobuf_FeatureSet* ret;
3470
3581
  const upb_MiniTableField field = {50, UPB_SIZE(24, 184), 83, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3582
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
3471
3583
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3472
3584
  &default_val, &ret);
3473
3585
  return ret;
@@ -3482,6 +3594,7 @@ UPB_INLINE void google_protobuf_FileOptions_clear_uninterpreted_option(google_pr
3482
3594
  }
3483
3595
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FileOptions_uninterpreted_option(const google_protobuf_FileOptions* msg, size_t* size) {
3484
3596
  const upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3597
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3485
3598
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3486
3599
  if (arr) {
3487
3600
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3493,6 +3606,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Fil
3493
3606
  }
3494
3607
  UPB_INLINE const upb_Array* _google_protobuf_FileOptions_uninterpreted_option_upb_array(const google_protobuf_FileOptions* msg, size_t* size) {
3495
3608
  const upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3609
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3496
3610
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3497
3611
  if (size) {
3498
3612
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -3501,6 +3615,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileOptions_uninterpreted_option_up
3501
3615
  }
3502
3616
  UPB_INLINE upb_Array* _google_protobuf_FileOptions_uninterpreted_option_mutable_upb_array(google_protobuf_FileOptions* msg, size_t* size, upb_Arena* arena) {
3503
3617
  const upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3618
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3504
3619
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
3505
3620
  &field, arena);
3506
3621
  if (size) {
@@ -3511,83 +3626,84 @@ UPB_INLINE upb_Array* _google_protobuf_FileOptions_uninterpreted_option_mutable_
3511
3626
 
3512
3627
  UPB_INLINE void google_protobuf_FileOptions_set_java_package(google_protobuf_FileOptions *msg, upb_StringView value) {
3513
3628
  const upb_MiniTableField field = {1, UPB_SIZE(32, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3514
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3629
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3515
3630
  }
3516
3631
  UPB_INLINE void google_protobuf_FileOptions_set_java_outer_classname(google_protobuf_FileOptions *msg, upb_StringView value) {
3517
3632
  const upb_MiniTableField field = {8, 40, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3518
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3633
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3519
3634
  }
3520
3635
  UPB_INLINE void google_protobuf_FileOptions_set_optimize_for(google_protobuf_FileOptions *msg, int32_t value) {
3521
3636
  const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3522
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3637
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3523
3638
  }
3524
3639
  UPB_INLINE void google_protobuf_FileOptions_set_java_multiple_files(google_protobuf_FileOptions *msg, bool value) {
3525
3640
  const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3526
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3641
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3527
3642
  }
3528
3643
  UPB_INLINE void google_protobuf_FileOptions_set_go_package(google_protobuf_FileOptions *msg, upb_StringView value) {
3529
3644
  const upb_MiniTableField field = {11, UPB_SIZE(48, 56), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3530
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3645
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3531
3646
  }
3532
3647
  UPB_INLINE void google_protobuf_FileOptions_set_cc_generic_services(google_protobuf_FileOptions *msg, bool value) {
3533
3648
  const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3534
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3649
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3535
3650
  }
3536
3651
  UPB_INLINE void google_protobuf_FileOptions_set_java_generic_services(google_protobuf_FileOptions *msg, bool value) {
3537
3652
  const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3538
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3653
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3539
3654
  }
3540
3655
  UPB_INLINE void google_protobuf_FileOptions_set_py_generic_services(google_protobuf_FileOptions *msg, bool value) {
3541
3656
  const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3542
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3657
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3543
3658
  }
3544
3659
  UPB_INLINE void google_protobuf_FileOptions_set_java_generate_equals_and_hash(google_protobuf_FileOptions *msg, bool value) {
3545
3660
  const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3546
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3661
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3547
3662
  }
3548
3663
  UPB_INLINE void google_protobuf_FileOptions_set_deprecated(google_protobuf_FileOptions *msg, bool value) {
3549
3664
  const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3550
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3665
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3551
3666
  }
3552
3667
  UPB_INLINE void google_protobuf_FileOptions_set_java_string_check_utf8(google_protobuf_FileOptions *msg, bool value) {
3553
3668
  const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3554
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3669
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3555
3670
  }
3556
3671
  UPB_INLINE void google_protobuf_FileOptions_set_cc_enable_arenas(google_protobuf_FileOptions *msg, bool value) {
3557
3672
  const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3558
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3673
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3559
3674
  }
3560
3675
  UPB_INLINE void google_protobuf_FileOptions_set_objc_class_prefix(google_protobuf_FileOptions *msg, upb_StringView value) {
3561
3676
  const upb_MiniTableField field = {36, UPB_SIZE(56, 72), 76, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3562
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3677
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3563
3678
  }
3564
3679
  UPB_INLINE void google_protobuf_FileOptions_set_csharp_namespace(google_protobuf_FileOptions *msg, upb_StringView value) {
3565
3680
  const upb_MiniTableField field = {37, UPB_SIZE(64, 88), 77, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3566
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3681
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3567
3682
  }
3568
3683
  UPB_INLINE void google_protobuf_FileOptions_set_swift_prefix(google_protobuf_FileOptions *msg, upb_StringView value) {
3569
3684
  const upb_MiniTableField field = {39, UPB_SIZE(72, 104), 78, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3570
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3685
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3571
3686
  }
3572
3687
  UPB_INLINE void google_protobuf_FileOptions_set_php_class_prefix(google_protobuf_FileOptions *msg, upb_StringView value) {
3573
3688
  const upb_MiniTableField field = {40, UPB_SIZE(80, 120), 79, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3574
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3689
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3575
3690
  }
3576
3691
  UPB_INLINE void google_protobuf_FileOptions_set_php_namespace(google_protobuf_FileOptions *msg, upb_StringView value) {
3577
3692
  const upb_MiniTableField field = {41, UPB_SIZE(88, 136), 80, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3578
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3693
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3579
3694
  }
3580
3695
  UPB_INLINE void google_protobuf_FileOptions_set_php_metadata_namespace(google_protobuf_FileOptions *msg, upb_StringView value) {
3581
3696
  const upb_MiniTableField field = {44, UPB_SIZE(96, 152), 81, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3582
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3697
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3583
3698
  }
3584
3699
  UPB_INLINE void google_protobuf_FileOptions_set_ruby_package(google_protobuf_FileOptions *msg, upb_StringView value) {
3585
3700
  const upb_MiniTableField field = {45, UPB_SIZE(104, 168), 82, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3586
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3701
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3587
3702
  }
3588
3703
  UPB_INLINE void google_protobuf_FileOptions_set_features(google_protobuf_FileOptions *msg, google_protobuf_FeatureSet* value) {
3589
3704
  const upb_MiniTableField field = {50, UPB_SIZE(24, 184), 83, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3590
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3705
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
3706
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3591
3707
  }
3592
3708
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FileOptions_mutable_features(google_protobuf_FileOptions* msg, upb_Arena* arena) {
3593
3709
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FileOptions_features(msg);
@@ -3599,6 +3715,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FileOptions_mutabl
3599
3715
  }
3600
3716
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_mutable_uninterpreted_option(google_protobuf_FileOptions* msg, size_t* size) {
3601
3717
  upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3718
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3602
3719
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
3603
3720
  if (arr) {
3604
3721
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3615,6 +3732,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_res
3615
3732
  }
3616
3733
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FileOptions_add_uninterpreted_option(google_protobuf_FileOptions* msg, upb_Arena* arena) {
3617
3734
  upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3735
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3618
3736
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
3619
3737
  UPB_UPCAST(msg), &field, arena);
3620
3738
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -3752,6 +3870,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_MessageOptions_feat
3752
3870
  const google_protobuf_FeatureSet* default_val = NULL;
3753
3871
  const google_protobuf_FeatureSet* ret;
3754
3872
  const upb_MiniTableField field = {12, 16, 69, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3873
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
3755
3874
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3756
3875
  &default_val, &ret);
3757
3876
  return ret;
@@ -3766,6 +3885,7 @@ UPB_INLINE void google_protobuf_MessageOptions_clear_uninterpreted_option(google
3766
3885
  }
3767
3886
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MessageOptions_uninterpreted_option(const google_protobuf_MessageOptions* msg, size_t* size) {
3768
3887
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3888
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3769
3889
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3770
3890
  if (arr) {
3771
3891
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3777,6 +3897,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Mes
3777
3897
  }
3778
3898
  UPB_INLINE const upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_upb_array(const google_protobuf_MessageOptions* msg, size_t* size) {
3779
3899
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3900
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3780
3901
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3781
3902
  if (size) {
3782
3903
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -3785,6 +3906,7 @@ UPB_INLINE const upb_Array* _google_protobuf_MessageOptions_uninterpreted_option
3785
3906
  }
3786
3907
  UPB_INLINE upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_mutable_upb_array(google_protobuf_MessageOptions* msg, size_t* size, upb_Arena* arena) {
3787
3908
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3909
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3788
3910
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
3789
3911
  &field, arena);
3790
3912
  if (size) {
@@ -3795,27 +3917,28 @@ UPB_INLINE upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_mutab
3795
3917
 
3796
3918
  UPB_INLINE void google_protobuf_MessageOptions_set_message_set_wire_format(google_protobuf_MessageOptions *msg, bool value) {
3797
3919
  const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3798
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3920
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3799
3921
  }
3800
3922
  UPB_INLINE void google_protobuf_MessageOptions_set_no_standard_descriptor_accessor(google_protobuf_MessageOptions *msg, bool value) {
3801
3923
  const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3802
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3924
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3803
3925
  }
3804
3926
  UPB_INLINE void google_protobuf_MessageOptions_set_deprecated(google_protobuf_MessageOptions *msg, bool value) {
3805
3927
  const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3806
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3928
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3807
3929
  }
3808
3930
  UPB_INLINE void google_protobuf_MessageOptions_set_map_entry(google_protobuf_MessageOptions *msg, bool value) {
3809
3931
  const upb_MiniTableField field = {7, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3810
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3932
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3811
3933
  }
3812
3934
  UPB_INLINE void google_protobuf_MessageOptions_set_deprecated_legacy_json_field_conflicts(google_protobuf_MessageOptions *msg, bool value) {
3813
3935
  const upb_MiniTableField field = {11, 13, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3814
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3936
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3815
3937
  }
3816
3938
  UPB_INLINE void google_protobuf_MessageOptions_set_features(google_protobuf_MessageOptions *msg, google_protobuf_FeatureSet* value) {
3817
3939
  const upb_MiniTableField field = {12, 16, 69, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3818
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3940
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
3941
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3819
3942
  }
3820
3943
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MessageOptions_mutable_features(google_protobuf_MessageOptions* msg, upb_Arena* arena) {
3821
3944
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_MessageOptions_features(msg);
@@ -3827,6 +3950,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MessageOptions_mut
3827
3950
  }
3828
3951
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_mutable_uninterpreted_option(google_protobuf_MessageOptions* msg, size_t* size) {
3829
3952
  upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3953
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3830
3954
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
3831
3955
  if (arr) {
3832
3956
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3843,6 +3967,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_
3843
3967
  }
3844
3968
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MessageOptions_add_uninterpreted_option(google_protobuf_MessageOptions* msg, upb_Arena* arena) {
3845
3969
  upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3970
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3846
3971
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
3847
3972
  UPB_UPCAST(msg), &field, arena);
3848
3973
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -3893,19 +4018,19 @@ UPB_INLINE char* google_protobuf_FieldOptions_serialize_ex(const google_protobuf
3893
4018
  return ptr;
3894
4019
  }
3895
4020
  UPB_INLINE void google_protobuf_FieldOptions_clear_ctype(google_protobuf_FieldOptions* msg) {
3896
- const upb_MiniTableField field = {1, 12, 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4021
+ const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3897
4022
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3898
4023
  }
3899
4024
  UPB_INLINE int32_t google_protobuf_FieldOptions_ctype(const google_protobuf_FieldOptions* msg) {
3900
4025
  int32_t default_val = 0;
3901
4026
  int32_t ret;
3902
- const upb_MiniTableField field = {1, 12, 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4027
+ const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3903
4028
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3904
4029
  &default_val, &ret);
3905
4030
  return ret;
3906
4031
  }
3907
4032
  UPB_INLINE bool google_protobuf_FieldOptions_has_ctype(const google_protobuf_FieldOptions* msg) {
3908
- const upb_MiniTableField field = {1, 12, 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4033
+ const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3909
4034
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3910
4035
  }
3911
4036
  UPB_INLINE void google_protobuf_FieldOptions_clear_packed(google_protobuf_FieldOptions* msg) {
@@ -3957,19 +4082,19 @@ UPB_INLINE bool google_protobuf_FieldOptions_has_lazy(const google_protobuf_Fiel
3957
4082
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3958
4083
  }
3959
4084
  UPB_INLINE void google_protobuf_FieldOptions_clear_jstype(google_protobuf_FieldOptions* msg) {
3960
- const upb_MiniTableField field = {6, 20, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4085
+ const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3961
4086
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3962
4087
  }
3963
4088
  UPB_INLINE int32_t google_protobuf_FieldOptions_jstype(const google_protobuf_FieldOptions* msg) {
3964
4089
  int32_t default_val = 0;
3965
4090
  int32_t ret;
3966
- const upb_MiniTableField field = {6, 20, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4091
+ const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3967
4092
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3968
4093
  &default_val, &ret);
3969
4094
  return ret;
3970
4095
  }
3971
4096
  UPB_INLINE bool google_protobuf_FieldOptions_has_jstype(const google_protobuf_FieldOptions* msg) {
3972
- const upb_MiniTableField field = {6, 20, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4097
+ const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3973
4098
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3974
4099
  }
3975
4100
  UPB_INLINE void google_protobuf_FieldOptions_clear_weak(google_protobuf_FieldOptions* msg) {
@@ -4021,27 +4146,27 @@ UPB_INLINE bool google_protobuf_FieldOptions_has_debug_redact(const google_proto
4021
4146
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4022
4147
  }
4023
4148
  UPB_INLINE void google_protobuf_FieldOptions_clear_retention(google_protobuf_FieldOptions* msg) {
4024
- const upb_MiniTableField field = {17, 28, 72, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4149
+ const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4025
4150
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4026
4151
  }
4027
4152
  UPB_INLINE int32_t google_protobuf_FieldOptions_retention(const google_protobuf_FieldOptions* msg) {
4028
4153
  int32_t default_val = 0;
4029
4154
  int32_t ret;
4030
- const upb_MiniTableField field = {17, 28, 72, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4155
+ const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4031
4156
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4032
4157
  &default_val, &ret);
4033
4158
  return ret;
4034
4159
  }
4035
4160
  UPB_INLINE bool google_protobuf_FieldOptions_has_retention(const google_protobuf_FieldOptions* msg) {
4036
- const upb_MiniTableField field = {17, 28, 72, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4161
+ const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4037
4162
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4038
4163
  }
4039
4164
  UPB_INLINE void google_protobuf_FieldOptions_clear_targets(google_protobuf_FieldOptions* msg) {
4040
- const upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4165
+ const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4041
4166
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4042
4167
  }
4043
4168
  UPB_INLINE int32_t const* google_protobuf_FieldOptions_targets(const google_protobuf_FieldOptions* msg, size_t* size) {
4044
- const upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4169
+ const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4045
4170
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4046
4171
  if (arr) {
4047
4172
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4052,7 +4177,7 @@ UPB_INLINE int32_t const* google_protobuf_FieldOptions_targets(const google_prot
4052
4177
  }
4053
4178
  }
4054
4179
  UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_targets_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
4055
- const upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4180
+ const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4056
4181
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4057
4182
  if (size) {
4058
4183
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4060,7 +4185,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_targets_upb_array(cons
4060
4185
  return arr;
4061
4186
  }
4062
4187
  UPB_INLINE upb_Array* _google_protobuf_FieldOptions_targets_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
4063
- const upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4188
+ const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4064
4189
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4065
4190
  &field, arena);
4066
4191
  if (size) {
@@ -4074,6 +4199,7 @@ UPB_INLINE void google_protobuf_FieldOptions_clear_edition_defaults(google_proto
4074
4199
  }
4075
4200
  UPB_INLINE const google_protobuf_FieldOptions_EditionDefault* const* google_protobuf_FieldOptions_edition_defaults(const google_protobuf_FieldOptions* msg, size_t* size) {
4076
4201
  const upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4202
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4077
4203
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4078
4204
  if (arr) {
4079
4205
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4085,6 +4211,7 @@ UPB_INLINE const google_protobuf_FieldOptions_EditionDefault* const* google_prot
4085
4211
  }
4086
4212
  UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_edition_defaults_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
4087
4213
  const upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4214
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4088
4215
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4089
4216
  if (size) {
4090
4217
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4093,6 +4220,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_edition_defaults_upb_a
4093
4220
  }
4094
4221
  UPB_INLINE upb_Array* _google_protobuf_FieldOptions_edition_defaults_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
4095
4222
  const upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4223
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4096
4224
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4097
4225
  &field, arena);
4098
4226
  if (size) {
@@ -4108,6 +4236,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FieldOptions_featur
4108
4236
  const google_protobuf_FeatureSet* default_val = NULL;
4109
4237
  const google_protobuf_FeatureSet* ret;
4110
4238
  const upb_MiniTableField field = {21, UPB_SIZE(40, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4239
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4111
4240
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4112
4241
  &default_val, &ret);
4113
4242
  return ret;
@@ -4116,12 +4245,30 @@ UPB_INLINE bool google_protobuf_FieldOptions_has_features(const google_protobuf_
4116
4245
  const upb_MiniTableField field = {21, UPB_SIZE(40, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4117
4246
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4118
4247
  }
4248
+ UPB_INLINE void google_protobuf_FieldOptions_clear_feature_support(google_protobuf_FieldOptions* msg) {
4249
+ const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4250
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4251
+ }
4252
+ UPB_INLINE const google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_feature_support(const google_protobuf_FieldOptions* msg) {
4253
+ const google_protobuf_FieldOptions_FeatureSupport* default_val = NULL;
4254
+ const google_protobuf_FieldOptions_FeatureSupport* ret;
4255
+ const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4256
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
4257
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4258
+ &default_val, &ret);
4259
+ return ret;
4260
+ }
4261
+ UPB_INLINE bool google_protobuf_FieldOptions_has_feature_support(const google_protobuf_FieldOptions* msg) {
4262
+ const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4263
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4264
+ }
4119
4265
  UPB_INLINE void google_protobuf_FieldOptions_clear_uninterpreted_option(google_protobuf_FieldOptions* msg) {
4120
- const upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4266
+ const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4121
4267
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4122
4268
  }
4123
4269
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FieldOptions_uninterpreted_option(const google_protobuf_FieldOptions* msg, size_t* size) {
4124
- const upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4270
+ const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4271
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4125
4272
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4126
4273
  if (arr) {
4127
4274
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4132,7 +4279,8 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Fie
4132
4279
  }
4133
4280
  }
4134
4281
  UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
4135
- const upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4282
+ const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4283
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4136
4284
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4137
4285
  if (size) {
4138
4286
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4140,7 +4288,8 @@ UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_u
4140
4288
  return arr;
4141
4289
  }
4142
4290
  UPB_INLINE upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
4143
- const upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4291
+ const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4292
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4144
4293
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4145
4294
  &field, arena);
4146
4295
  if (size) {
@@ -4150,43 +4299,43 @@ UPB_INLINE upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_mutable
4150
4299
  }
4151
4300
 
4152
4301
  UPB_INLINE void google_protobuf_FieldOptions_set_ctype(google_protobuf_FieldOptions *msg, int32_t value) {
4153
- const upb_MiniTableField field = {1, 12, 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4154
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4302
+ const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4303
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4155
4304
  }
4156
4305
  UPB_INLINE void google_protobuf_FieldOptions_set_packed(google_protobuf_FieldOptions *msg, bool value) {
4157
4306
  const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4158
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4307
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4159
4308
  }
4160
4309
  UPB_INLINE void google_protobuf_FieldOptions_set_deprecated(google_protobuf_FieldOptions *msg, bool value) {
4161
4310
  const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4162
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4311
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4163
4312
  }
4164
4313
  UPB_INLINE void google_protobuf_FieldOptions_set_lazy(google_protobuf_FieldOptions *msg, bool value) {
4165
4314
  const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4166
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4315
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4167
4316
  }
4168
4317
  UPB_INLINE void google_protobuf_FieldOptions_set_jstype(google_protobuf_FieldOptions *msg, int32_t value) {
4169
- const upb_MiniTableField field = {6, 20, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4170
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4318
+ const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4319
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4171
4320
  }
4172
4321
  UPB_INLINE void google_protobuf_FieldOptions_set_weak(google_protobuf_FieldOptions *msg, bool value) {
4173
4322
  const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4174
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4323
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4175
4324
  }
4176
4325
  UPB_INLINE void google_protobuf_FieldOptions_set_unverified_lazy(google_protobuf_FieldOptions *msg, bool value) {
4177
4326
  const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4178
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4327
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4179
4328
  }
4180
4329
  UPB_INLINE void google_protobuf_FieldOptions_set_debug_redact(google_protobuf_FieldOptions *msg, bool value) {
4181
4330
  const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4182
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4331
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4183
4332
  }
4184
4333
  UPB_INLINE void google_protobuf_FieldOptions_set_retention(google_protobuf_FieldOptions *msg, int32_t value) {
4185
- const upb_MiniTableField field = {17, 28, 72, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4186
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4334
+ const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4335
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4187
4336
  }
4188
4337
  UPB_INLINE int32_t* google_protobuf_FieldOptions_mutable_targets(google_protobuf_FieldOptions* msg, size_t* size) {
4189
- upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4338
+ upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4190
4339
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4191
4340
  if (arr) {
4192
4341
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4197,12 +4346,12 @@ UPB_INLINE int32_t* google_protobuf_FieldOptions_mutable_targets(google_protobuf
4197
4346
  }
4198
4347
  }
4199
4348
  UPB_INLINE int32_t* google_protobuf_FieldOptions_resize_targets(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) {
4200
- upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4349
+ upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4201
4350
  return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
4202
4351
  &field, size, arena);
4203
4352
  }
4204
4353
  UPB_INLINE bool google_protobuf_FieldOptions_add_targets(google_protobuf_FieldOptions* msg, int32_t val, upb_Arena* arena) {
4205
- upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4354
+ upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4206
4355
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4207
4356
  UPB_UPCAST(msg), &field, arena);
4208
4357
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4215,6 +4364,7 @@ UPB_INLINE bool google_protobuf_FieldOptions_add_targets(google_protobuf_FieldOp
4215
4364
  }
4216
4365
  UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOptions_mutable_edition_defaults(google_protobuf_FieldOptions* msg, size_t* size) {
4217
4366
  upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4367
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4218
4368
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4219
4369
  if (arr) {
4220
4370
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4231,6 +4381,7 @@ UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOp
4231
4381
  }
4232
4382
  UPB_INLINE struct google_protobuf_FieldOptions_EditionDefault* google_protobuf_FieldOptions_add_edition_defaults(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4233
4383
  upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4384
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4234
4385
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4235
4386
  UPB_UPCAST(msg), &field, arena);
4236
4387
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4245,7 +4396,8 @@ UPB_INLINE struct google_protobuf_FieldOptions_EditionDefault* google_protobuf_F
4245
4396
  }
4246
4397
  UPB_INLINE void google_protobuf_FieldOptions_set_features(google_protobuf_FieldOptions *msg, google_protobuf_FeatureSet* value) {
4247
4398
  const upb_MiniTableField field = {21, UPB_SIZE(40, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4248
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4399
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4400
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4249
4401
  }
4250
4402
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FieldOptions_mutable_features(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4251
4403
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FieldOptions_features(msg);
@@ -4255,8 +4407,22 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FieldOptions_mutab
4255
4407
  }
4256
4408
  return sub;
4257
4409
  }
4410
+ UPB_INLINE void google_protobuf_FieldOptions_set_feature_support(google_protobuf_FieldOptions *msg, google_protobuf_FieldOptions_FeatureSupport* value) {
4411
+ const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4412
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
4413
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4414
+ }
4415
+ UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_mutable_feature_support(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4416
+ struct google_protobuf_FieldOptions_FeatureSupport* sub = (struct google_protobuf_FieldOptions_FeatureSupport*)google_protobuf_FieldOptions_feature_support(msg);
4417
+ if (sub == NULL) {
4418
+ sub = (struct google_protobuf_FieldOptions_FeatureSupport*)_upb_Message_New(&google__protobuf__FieldOptions__FeatureSupport_msg_init, arena);
4419
+ if (sub) google_protobuf_FieldOptions_set_feature_support(msg, sub);
4420
+ }
4421
+ return sub;
4422
+ }
4258
4423
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_mutable_uninterpreted_option(google_protobuf_FieldOptions* msg, size_t* size) {
4259
- upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4424
+ upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4425
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4260
4426
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4261
4427
  if (arr) {
4262
4428
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4267,12 +4433,13 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_mu
4267
4433
  }
4268
4434
  }
4269
4435
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_resize_uninterpreted_option(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) {
4270
- upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4436
+ upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4271
4437
  return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
4272
4438
  &field, size, arena);
4273
4439
  }
4274
4440
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4275
- upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4441
+ upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4442
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4276
4443
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4277
4444
  UPB_UPCAST(msg), &field, arena);
4278
4445
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4357,11 +4524,129 @@ UPB_INLINE bool google_protobuf_FieldOptions_EditionDefault_has_edition(const go
4357
4524
 
4358
4525
  UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_set_value(google_protobuf_FieldOptions_EditionDefault *msg, upb_StringView value) {
4359
4526
  const upb_MiniTableField field = {2, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4360
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4527
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4361
4528
  }
4362
4529
  UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_set_edition(google_protobuf_FieldOptions_EditionDefault *msg, int32_t value) {
4363
4530
  const upb_MiniTableField field = {3, 12, 65, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4364
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4531
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4532
+ }
4533
+
4534
+ /* google.protobuf.FieldOptions.FeatureSupport */
4535
+
4536
+ UPB_INLINE google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_FeatureSupport_new(upb_Arena* arena) {
4537
+ return (google_protobuf_FieldOptions_FeatureSupport*)_upb_Message_New(&google__protobuf__FieldOptions__FeatureSupport_msg_init, arena);
4538
+ }
4539
+ UPB_INLINE google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_FeatureSupport_parse(const char* buf, size_t size, upb_Arena* arena) {
4540
+ google_protobuf_FieldOptions_FeatureSupport* ret = google_protobuf_FieldOptions_FeatureSupport_new(arena);
4541
+ if (!ret) return NULL;
4542
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions__FeatureSupport_msg_init, NULL, 0, arena) !=
4543
+ kUpb_DecodeStatus_Ok) {
4544
+ return NULL;
4545
+ }
4546
+ return ret;
4547
+ }
4548
+ UPB_INLINE google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_FeatureSupport_parse_ex(const char* buf, size_t size,
4549
+ const upb_ExtensionRegistry* extreg,
4550
+ int options, upb_Arena* arena) {
4551
+ google_protobuf_FieldOptions_FeatureSupport* ret = google_protobuf_FieldOptions_FeatureSupport_new(arena);
4552
+ if (!ret) return NULL;
4553
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions__FeatureSupport_msg_init, extreg, options,
4554
+ arena) != kUpb_DecodeStatus_Ok) {
4555
+ return NULL;
4556
+ }
4557
+ return ret;
4558
+ }
4559
+ UPB_INLINE char* google_protobuf_FieldOptions_FeatureSupport_serialize(const google_protobuf_FieldOptions_FeatureSupport* msg, upb_Arena* arena, size_t* len) {
4560
+ char* ptr;
4561
+ (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions__FeatureSupport_msg_init, 0, arena, &ptr, len);
4562
+ return ptr;
4563
+ }
4564
+ UPB_INLINE char* google_protobuf_FieldOptions_FeatureSupport_serialize_ex(const google_protobuf_FieldOptions_FeatureSupport* msg, int options,
4565
+ upb_Arena* arena, size_t* len) {
4566
+ char* ptr;
4567
+ (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions__FeatureSupport_msg_init, options, arena, &ptr, len);
4568
+ return ptr;
4569
+ }
4570
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_edition_introduced(google_protobuf_FieldOptions_FeatureSupport* msg) {
4571
+ const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4572
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4573
+ }
4574
+ UPB_INLINE int32_t google_protobuf_FieldOptions_FeatureSupport_edition_introduced(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4575
+ int32_t default_val = 0;
4576
+ int32_t ret;
4577
+ const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4578
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4579
+ &default_val, &ret);
4580
+ return ret;
4581
+ }
4582
+ UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_edition_introduced(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4583
+ const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4584
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4585
+ }
4586
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_edition_deprecated(google_protobuf_FieldOptions_FeatureSupport* msg) {
4587
+ const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4588
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4589
+ }
4590
+ UPB_INLINE int32_t google_protobuf_FieldOptions_FeatureSupport_edition_deprecated(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4591
+ int32_t default_val = 0;
4592
+ int32_t ret;
4593
+ const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4594
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4595
+ &default_val, &ret);
4596
+ return ret;
4597
+ }
4598
+ UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_edition_deprecated(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4599
+ const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4600
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4601
+ }
4602
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_deprecation_warning(google_protobuf_FieldOptions_FeatureSupport* msg) {
4603
+ const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4604
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4605
+ }
4606
+ UPB_INLINE upb_StringView google_protobuf_FieldOptions_FeatureSupport_deprecation_warning(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4607
+ upb_StringView default_val = upb_StringView_FromString("");
4608
+ upb_StringView ret;
4609
+ const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4610
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4611
+ &default_val, &ret);
4612
+ return ret;
4613
+ }
4614
+ UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_deprecation_warning(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4615
+ const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4616
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4617
+ }
4618
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_edition_removed(google_protobuf_FieldOptions_FeatureSupport* msg) {
4619
+ const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4620
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4621
+ }
4622
+ UPB_INLINE int32_t google_protobuf_FieldOptions_FeatureSupport_edition_removed(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4623
+ int32_t default_val = 0;
4624
+ int32_t ret;
4625
+ const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4626
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4627
+ &default_val, &ret);
4628
+ return ret;
4629
+ }
4630
+ UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_edition_removed(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4631
+ const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4632
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4633
+ }
4634
+
4635
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_edition_introduced(google_protobuf_FieldOptions_FeatureSupport *msg, int32_t value) {
4636
+ const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4637
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4638
+ }
4639
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_edition_deprecated(google_protobuf_FieldOptions_FeatureSupport *msg, int32_t value) {
4640
+ const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4641
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4642
+ }
4643
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_deprecation_warning(google_protobuf_FieldOptions_FeatureSupport *msg, upb_StringView value) {
4644
+ const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4645
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4646
+ }
4647
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_edition_removed(google_protobuf_FieldOptions_FeatureSupport *msg, int32_t value) {
4648
+ const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4649
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4365
4650
  }
4366
4651
 
4367
4652
  /* google.protobuf.OneofOptions */
@@ -4408,6 +4693,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_OneofOptions_featur
4408
4693
  const google_protobuf_FeatureSet* default_val = NULL;
4409
4694
  const google_protobuf_FeatureSet* ret;
4410
4695
  const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4696
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4411
4697
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4412
4698
  &default_val, &ret);
4413
4699
  return ret;
@@ -4422,6 +4708,7 @@ UPB_INLINE void google_protobuf_OneofOptions_clear_uninterpreted_option(google_p
4422
4708
  }
4423
4709
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_OneofOptions_uninterpreted_option(const google_protobuf_OneofOptions* msg, size_t* size) {
4424
4710
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4711
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4425
4712
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4426
4713
  if (arr) {
4427
4714
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4433,6 +4720,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_One
4433
4720
  }
4434
4721
  UPB_INLINE const upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_upb_array(const google_protobuf_OneofOptions* msg, size_t* size) {
4435
4722
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4723
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4436
4724
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4437
4725
  if (size) {
4438
4726
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4441,6 +4729,7 @@ UPB_INLINE const upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_u
4441
4729
  }
4442
4730
  UPB_INLINE upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_mutable_upb_array(google_protobuf_OneofOptions* msg, size_t* size, upb_Arena* arena) {
4443
4731
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4732
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4444
4733
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4445
4734
  &field, arena);
4446
4735
  if (size) {
@@ -4451,7 +4740,8 @@ UPB_INLINE upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_mutable
4451
4740
 
4452
4741
  UPB_INLINE void google_protobuf_OneofOptions_set_features(google_protobuf_OneofOptions *msg, google_protobuf_FeatureSet* value) {
4453
4742
  const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4454
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4743
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4744
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4455
4745
  }
4456
4746
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_OneofOptions_mutable_features(google_protobuf_OneofOptions* msg, upb_Arena* arena) {
4457
4747
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_OneofOptions_features(msg);
@@ -4463,6 +4753,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_OneofOptions_mutab
4463
4753
  }
4464
4754
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_mutable_uninterpreted_option(google_protobuf_OneofOptions* msg, size_t* size) {
4465
4755
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4756
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4466
4757
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4467
4758
  if (arr) {
4468
4759
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4479,6 +4770,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_re
4479
4770
  }
4480
4771
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_OneofOptions_add_uninterpreted_option(google_protobuf_OneofOptions* msg, upb_Arena* arena) {
4481
4772
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4773
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4482
4774
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4483
4775
  UPB_UPCAST(msg), &field, arena);
4484
4776
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4584,6 +4876,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_EnumOptions_feature
4584
4876
  const google_protobuf_FeatureSet* default_val = NULL;
4585
4877
  const google_protobuf_FeatureSet* ret;
4586
4878
  const upb_MiniTableField field = {7, UPB_SIZE(12, 16), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4879
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4587
4880
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4588
4881
  &default_val, &ret);
4589
4882
  return ret;
@@ -4598,6 +4891,7 @@ UPB_INLINE void google_protobuf_EnumOptions_clear_uninterpreted_option(google_pr
4598
4891
  }
4599
4892
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumOptions_uninterpreted_option(const google_protobuf_EnumOptions* msg, size_t* size) {
4600
4893
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4894
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4601
4895
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4602
4896
  if (arr) {
4603
4897
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4609,6 +4903,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Enu
4609
4903
  }
4610
4904
  UPB_INLINE const upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_upb_array(const google_protobuf_EnumOptions* msg, size_t* size) {
4611
4905
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4906
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4612
4907
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4613
4908
  if (size) {
4614
4909
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4617,6 +4912,7 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_up
4617
4912
  }
4618
4913
  UPB_INLINE upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_mutable_upb_array(google_protobuf_EnumOptions* msg, size_t* size, upb_Arena* arena) {
4619
4914
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4915
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4620
4916
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4621
4917
  &field, arena);
4622
4918
  if (size) {
@@ -4627,19 +4923,20 @@ UPB_INLINE upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_mutable_
4627
4923
 
4628
4924
  UPB_INLINE void google_protobuf_EnumOptions_set_allow_alias(google_protobuf_EnumOptions *msg, bool value) {
4629
4925
  const upb_MiniTableField field = {2, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4630
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4926
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4631
4927
  }
4632
4928
  UPB_INLINE void google_protobuf_EnumOptions_set_deprecated(google_protobuf_EnumOptions *msg, bool value) {
4633
4929
  const upb_MiniTableField field = {3, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4634
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4930
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4635
4931
  }
4636
4932
  UPB_INLINE void google_protobuf_EnumOptions_set_deprecated_legacy_json_field_conflicts(google_protobuf_EnumOptions *msg, bool value) {
4637
4933
  const upb_MiniTableField field = {6, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4638
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4934
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4639
4935
  }
4640
4936
  UPB_INLINE void google_protobuf_EnumOptions_set_features(google_protobuf_EnumOptions *msg, google_protobuf_FeatureSet* value) {
4641
4937
  const upb_MiniTableField field = {7, UPB_SIZE(12, 16), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4642
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4938
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4939
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4643
4940
  }
4644
4941
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumOptions_mutable_features(google_protobuf_EnumOptions* msg, upb_Arena* arena) {
4645
4942
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_EnumOptions_features(msg);
@@ -4651,6 +4948,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumOptions_mutabl
4651
4948
  }
4652
4949
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_mutable_uninterpreted_option(google_protobuf_EnumOptions* msg, size_t* size) {
4653
4950
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4951
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4654
4952
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4655
4953
  if (arr) {
4656
4954
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4667,6 +4965,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_res
4667
4965
  }
4668
4966
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumOptions_add_uninterpreted_option(google_protobuf_EnumOptions* msg, upb_Arena* arena) {
4669
4967
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4968
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4670
4969
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4671
4970
  UPB_UPCAST(msg), &field, arena);
4672
4971
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4740,6 +5039,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_EnumValueOptions_fe
4740
5039
  const google_protobuf_FeatureSet* default_val = NULL;
4741
5040
  const google_protobuf_FeatureSet* ret;
4742
5041
  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)};
5042
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4743
5043
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4744
5044
  &default_val, &ret);
4745
5045
  return ret;
@@ -4764,12 +5064,30 @@ UPB_INLINE bool google_protobuf_EnumValueOptions_has_debug_redact(const google_p
4764
5064
  const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4765
5065
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4766
5066
  }
5067
+ UPB_INLINE void google_protobuf_EnumValueOptions_clear_feature_support(google_protobuf_EnumValueOptions* msg) {
5068
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5069
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5070
+ }
5071
+ UPB_INLINE const google_protobuf_FieldOptions_FeatureSupport* google_protobuf_EnumValueOptions_feature_support(const google_protobuf_EnumValueOptions* msg) {
5072
+ const google_protobuf_FieldOptions_FeatureSupport* default_val = NULL;
5073
+ const google_protobuf_FieldOptions_FeatureSupport* ret;
5074
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5075
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
5076
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5077
+ &default_val, &ret);
5078
+ return ret;
5079
+ }
5080
+ UPB_INLINE bool google_protobuf_EnumValueOptions_has_feature_support(const google_protobuf_EnumValueOptions* msg) {
5081
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5082
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5083
+ }
4767
5084
  UPB_INLINE void google_protobuf_EnumValueOptions_clear_uninterpreted_option(google_protobuf_EnumValueOptions* msg) {
4768
- const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5085
+ const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4769
5086
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4770
5087
  }
4771
5088
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumValueOptions_uninterpreted_option(const google_protobuf_EnumValueOptions* msg, size_t* size) {
4772
- const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5089
+ const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5090
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4773
5091
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4774
5092
  if (arr) {
4775
5093
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4780,7 +5098,8 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Enu
4780
5098
  }
4781
5099
  }
4782
5100
  UPB_INLINE const upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_upb_array(const google_protobuf_EnumValueOptions* msg, size_t* size) {
4783
- const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5101
+ const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5102
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4784
5103
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4785
5104
  if (size) {
4786
5105
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4788,7 +5107,8 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_opti
4788
5107
  return arr;
4789
5108
  }
4790
5109
  UPB_INLINE upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_mutable_upb_array(google_protobuf_EnumValueOptions* msg, size_t* size, upb_Arena* arena) {
4791
- const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5110
+ const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5111
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4792
5112
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4793
5113
  &field, arena);
4794
5114
  if (size) {
@@ -4799,11 +5119,12 @@ UPB_INLINE upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_mut
4799
5119
 
4800
5120
  UPB_INLINE void google_protobuf_EnumValueOptions_set_deprecated(google_protobuf_EnumValueOptions *msg, bool value) {
4801
5121
  const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4802
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5122
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4803
5123
  }
4804
5124
  UPB_INLINE void google_protobuf_EnumValueOptions_set_features(google_protobuf_EnumValueOptions *msg, google_protobuf_FeatureSet* value) {
4805
5125
  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)};
4806
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5126
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5127
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4807
5128
  }
4808
5129
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumValueOptions_mutable_features(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
4809
5130
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_EnumValueOptions_features(msg);
@@ -4815,10 +5136,24 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumValueOptions_m
4815
5136
  }
4816
5137
  UPB_INLINE void google_protobuf_EnumValueOptions_set_debug_redact(google_protobuf_EnumValueOptions *msg, bool value) {
4817
5138
  const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4818
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5139
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5140
+ }
5141
+ UPB_INLINE void google_protobuf_EnumValueOptions_set_feature_support(google_protobuf_EnumValueOptions *msg, google_protobuf_FieldOptions_FeatureSupport* value) {
5142
+ const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5143
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
5144
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5145
+ }
5146
+ UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_EnumValueOptions_mutable_feature_support(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
5147
+ struct google_protobuf_FieldOptions_FeatureSupport* sub = (struct google_protobuf_FieldOptions_FeatureSupport*)google_protobuf_EnumValueOptions_feature_support(msg);
5148
+ if (sub == NULL) {
5149
+ sub = (struct google_protobuf_FieldOptions_FeatureSupport*)_upb_Message_New(&google__protobuf__FieldOptions__FeatureSupport_msg_init, arena);
5150
+ if (sub) google_protobuf_EnumValueOptions_set_feature_support(msg, sub);
5151
+ }
5152
+ return sub;
4819
5153
  }
4820
5154
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_mutable_uninterpreted_option(google_protobuf_EnumValueOptions* msg, size_t* size) {
4821
- upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5155
+ upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5156
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4822
5157
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4823
5158
  if (arr) {
4824
5159
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4829,12 +5164,13 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOption
4829
5164
  }
4830
5165
  }
4831
5166
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_resize_uninterpreted_option(google_protobuf_EnumValueOptions* msg, size_t size, upb_Arena* arena) {
4832
- upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5167
+ upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4833
5168
  return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
4834
5169
  &field, size, arena);
4835
5170
  }
4836
5171
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
4837
- upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5172
+ upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5173
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4838
5174
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4839
5175
  UPB_UPCAST(msg), &field, arena);
4840
5176
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4908,6 +5244,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_ServiceOptions_feat
4908
5244
  const google_protobuf_FeatureSet* default_val = NULL;
4909
5245
  const google_protobuf_FeatureSet* ret;
4910
5246
  const upb_MiniTableField field = {34, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5247
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4911
5248
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4912
5249
  &default_val, &ret);
4913
5250
  return ret;
@@ -4922,6 +5259,7 @@ UPB_INLINE void google_protobuf_ServiceOptions_clear_uninterpreted_option(google
4922
5259
  }
4923
5260
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ServiceOptions_uninterpreted_option(const google_protobuf_ServiceOptions* msg, size_t* size) {
4924
5261
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5262
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4925
5263
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4926
5264
  if (arr) {
4927
5265
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4933,6 +5271,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Ser
4933
5271
  }
4934
5272
  UPB_INLINE const upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_upb_array(const google_protobuf_ServiceOptions* msg, size_t* size) {
4935
5273
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5274
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4936
5275
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4937
5276
  if (size) {
4938
5277
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4941,6 +5280,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option
4941
5280
  }
4942
5281
  UPB_INLINE upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_mutable_upb_array(google_protobuf_ServiceOptions* msg, size_t* size, upb_Arena* arena) {
4943
5282
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5283
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4944
5284
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4945
5285
  &field, arena);
4946
5286
  if (size) {
@@ -4951,11 +5291,12 @@ UPB_INLINE upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_mutab
4951
5291
 
4952
5292
  UPB_INLINE void google_protobuf_ServiceOptions_set_deprecated(google_protobuf_ServiceOptions *msg, bool value) {
4953
5293
  const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4954
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5294
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4955
5295
  }
4956
5296
  UPB_INLINE void google_protobuf_ServiceOptions_set_features(google_protobuf_ServiceOptions *msg, google_protobuf_FeatureSet* value) {
4957
5297
  const upb_MiniTableField field = {34, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4958
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5298
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5299
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4959
5300
  }
4960
5301
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ServiceOptions_mutable_features(google_protobuf_ServiceOptions* msg, upb_Arena* arena) {
4961
5302
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_ServiceOptions_features(msg);
@@ -4967,6 +5308,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ServiceOptions_mut
4967
5308
  }
4968
5309
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_mutable_uninterpreted_option(google_protobuf_ServiceOptions* msg, size_t* size) {
4969
5310
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5311
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4970
5312
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4971
5313
  if (arr) {
4972
5314
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4983,6 +5325,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_
4983
5325
  }
4984
5326
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ServiceOptions_add_uninterpreted_option(google_protobuf_ServiceOptions* msg, upb_Arena* arena) {
4985
5327
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5328
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4986
5329
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4987
5330
  UPB_UPCAST(msg), &field, arena);
4988
5331
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5072,6 +5415,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_MethodOptions_featu
5072
5415
  const google_protobuf_FeatureSet* default_val = NULL;
5073
5416
  const google_protobuf_FeatureSet* ret;
5074
5417
  const upb_MiniTableField field = {35, 16, 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5418
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5075
5419
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5076
5420
  &default_val, &ret);
5077
5421
  return ret;
@@ -5086,6 +5430,7 @@ UPB_INLINE void google_protobuf_MethodOptions_clear_uninterpreted_option(google_
5086
5430
  }
5087
5431
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MethodOptions_uninterpreted_option(const google_protobuf_MethodOptions* msg, size_t* size) {
5088
5432
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5433
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5089
5434
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5090
5435
  if (arr) {
5091
5436
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5097,6 +5442,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Met
5097
5442
  }
5098
5443
  UPB_INLINE const upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_upb_array(const google_protobuf_MethodOptions* msg, size_t* size) {
5099
5444
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5445
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5100
5446
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5101
5447
  if (size) {
5102
5448
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5105,6 +5451,7 @@ UPB_INLINE const upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_
5105
5451
  }
5106
5452
  UPB_INLINE upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_mutable_upb_array(google_protobuf_MethodOptions* msg, size_t* size, upb_Arena* arena) {
5107
5453
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5454
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5108
5455
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5109
5456
  &field, arena);
5110
5457
  if (size) {
@@ -5115,15 +5462,16 @@ UPB_INLINE upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_mutabl
5115
5462
 
5116
5463
  UPB_INLINE void google_protobuf_MethodOptions_set_deprecated(google_protobuf_MethodOptions *msg, bool value) {
5117
5464
  const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5118
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5465
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5119
5466
  }
5120
5467
  UPB_INLINE void google_protobuf_MethodOptions_set_idempotency_level(google_protobuf_MethodOptions *msg, int32_t value) {
5121
5468
  const upb_MiniTableField field = {34, 12, 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5122
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5469
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5123
5470
  }
5124
5471
  UPB_INLINE void google_protobuf_MethodOptions_set_features(google_protobuf_MethodOptions *msg, google_protobuf_FeatureSet* value) {
5125
5472
  const upb_MiniTableField field = {35, 16, 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5126
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5473
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5474
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5127
5475
  }
5128
5476
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MethodOptions_mutable_features(google_protobuf_MethodOptions* msg, upb_Arena* arena) {
5129
5477
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_MethodOptions_features(msg);
@@ -5135,6 +5483,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MethodOptions_muta
5135
5483
  }
5136
5484
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_mutable_uninterpreted_option(google_protobuf_MethodOptions* msg, size_t* size) {
5137
5485
  upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5486
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5138
5487
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5139
5488
  if (arr) {
5140
5489
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5151,6 +5500,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_r
5151
5500
  }
5152
5501
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MethodOptions_add_uninterpreted_option(google_protobuf_MethodOptions* msg, upb_Arena* arena) {
5153
5502
  upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5503
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5154
5504
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5155
5505
  UPB_UPCAST(msg), &field, arena);
5156
5506
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5206,6 +5556,7 @@ UPB_INLINE void google_protobuf_UninterpretedOption_clear_name(google_protobuf_U
5206
5556
  }
5207
5557
  UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_protobuf_UninterpretedOption_name(const google_protobuf_UninterpretedOption* msg, size_t* size) {
5208
5558
  const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5559
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5209
5560
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5210
5561
  if (arr) {
5211
5562
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5217,6 +5568,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_pro
5217
5568
  }
5218
5569
  UPB_INLINE const upb_Array* _google_protobuf_UninterpretedOption_name_upb_array(const google_protobuf_UninterpretedOption* msg, size_t* size) {
5219
5570
  const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5571
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5220
5572
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5221
5573
  if (size) {
5222
5574
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5225,6 +5577,7 @@ UPB_INLINE const upb_Array* _google_protobuf_UninterpretedOption_name_upb_array(
5225
5577
  }
5226
5578
  UPB_INLINE upb_Array* _google_protobuf_UninterpretedOption_name_mutable_upb_array(google_protobuf_UninterpretedOption* msg, size_t* size, upb_Arena* arena) {
5227
5579
  const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5580
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5228
5581
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5229
5582
  &field, arena);
5230
5583
  if (size) {
@@ -5331,6 +5684,7 @@ UPB_INLINE bool google_protobuf_UninterpretedOption_has_aggregate_value(const go
5331
5684
 
5332
5685
  UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_mutable_name(google_protobuf_UninterpretedOption* msg, size_t* size) {
5333
5686
  upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5687
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5334
5688
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5335
5689
  if (arr) {
5336
5690
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5347,6 +5701,7 @@ UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_Uninte
5347
5701
  }
5348
5702
  UPB_INLINE struct google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption* msg, upb_Arena* arena) {
5349
5703
  upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5704
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5350
5705
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5351
5706
  UPB_UPCAST(msg), &field, arena);
5352
5707
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5361,27 +5716,27 @@ UPB_INLINE struct google_protobuf_UninterpretedOption_NamePart* google_protobuf_
5361
5716
  }
5362
5717
  UPB_INLINE void google_protobuf_UninterpretedOption_set_identifier_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
5363
5718
  const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5364
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5719
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5365
5720
  }
5366
5721
  UPB_INLINE void google_protobuf_UninterpretedOption_set_positive_int_value(google_protobuf_UninterpretedOption *msg, uint64_t value) {
5367
5722
  const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5368
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5723
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5369
5724
  }
5370
5725
  UPB_INLINE void google_protobuf_UninterpretedOption_set_negative_int_value(google_protobuf_UninterpretedOption *msg, int64_t value) {
5371
5726
  const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5372
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5727
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5373
5728
  }
5374
5729
  UPB_INLINE void google_protobuf_UninterpretedOption_set_double_value(google_protobuf_UninterpretedOption *msg, double value) {
5375
5730
  const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5376
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5731
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5377
5732
  }
5378
5733
  UPB_INLINE void google_protobuf_UninterpretedOption_set_string_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
5379
5734
  const upb_MiniTableField field = {7, UPB_SIZE(48, 64), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5380
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5735
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5381
5736
  }
5382
5737
  UPB_INLINE void google_protobuf_UninterpretedOption_set_aggregate_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
5383
5738
  const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5384
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5739
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5385
5740
  }
5386
5741
 
5387
5742
  /* google.protobuf.UninterpretedOption.NamePart */
@@ -5455,11 +5810,11 @@ UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_is_extension(co
5455
5810
 
5456
5811
  UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_name_part(google_protobuf_UninterpretedOption_NamePart *msg, upb_StringView value) {
5457
5812
  const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5458
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5813
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5459
5814
  }
5460
5815
  UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_is_extension(google_protobuf_UninterpretedOption_NamePart *msg, bool value) {
5461
5816
  const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5462
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5817
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5463
5818
  }
5464
5819
 
5465
5820
  /* google.protobuf.FeatureSet */
@@ -5597,27 +5952,27 @@ UPB_INLINE bool google_protobuf_FeatureSet_has_json_format(const google_protobuf
5597
5952
 
5598
5953
  UPB_INLINE void google_protobuf_FeatureSet_set_field_presence(google_protobuf_FeatureSet *msg, int32_t value) {
5599
5954
  const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5600
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5955
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5601
5956
  }
5602
5957
  UPB_INLINE void google_protobuf_FeatureSet_set_enum_type(google_protobuf_FeatureSet *msg, int32_t value) {
5603
5958
  const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5604
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5959
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5605
5960
  }
5606
5961
  UPB_INLINE void google_protobuf_FeatureSet_set_repeated_field_encoding(google_protobuf_FeatureSet *msg, int32_t value) {
5607
5962
  const upb_MiniTableField field = {3, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5608
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5963
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5609
5964
  }
5610
5965
  UPB_INLINE void google_protobuf_FeatureSet_set_utf8_validation(google_protobuf_FeatureSet *msg, int32_t value) {
5611
5966
  const upb_MiniTableField field = {4, 24, 67, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5612
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5967
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5613
5968
  }
5614
5969
  UPB_INLINE void google_protobuf_FeatureSet_set_message_encoding(google_protobuf_FeatureSet *msg, int32_t value) {
5615
5970
  const upb_MiniTableField field = {5, 28, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5616
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5971
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5617
5972
  }
5618
5973
  UPB_INLINE void google_protobuf_FeatureSet_set_json_format(google_protobuf_FeatureSet *msg, int32_t value) {
5619
5974
  const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5620
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5975
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5621
5976
  }
5622
5977
 
5623
5978
  /* google.protobuf.FeatureSetDefaults */
@@ -5662,6 +6017,7 @@ UPB_INLINE void google_protobuf_FeatureSetDefaults_clear_defaults(google_protobu
5662
6017
  }
5663
6018
  UPB_INLINE const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* const* google_protobuf_FeatureSetDefaults_defaults(const google_protobuf_FeatureSetDefaults* msg, size_t* size) {
5664
6019
  const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6020
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
5665
6021
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5666
6022
  if (arr) {
5667
6023
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5673,6 +6029,7 @@ UPB_INLINE const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* co
5673
6029
  }
5674
6030
  UPB_INLINE const upb_Array* _google_protobuf_FeatureSetDefaults_defaults_upb_array(const google_protobuf_FeatureSetDefaults* msg, size_t* size) {
5675
6031
  const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6032
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
5676
6033
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5677
6034
  if (size) {
5678
6035
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5681,6 +6038,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FeatureSetDefaults_defaults_upb_arr
5681
6038
  }
5682
6039
  UPB_INLINE upb_Array* _google_protobuf_FeatureSetDefaults_defaults_mutable_upb_array(google_protobuf_FeatureSetDefaults* msg, size_t* size, upb_Arena* arena) {
5683
6040
  const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6041
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
5684
6042
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5685
6043
  &field, arena);
5686
6044
  if (size) {
@@ -5723,6 +6081,7 @@ UPB_INLINE bool google_protobuf_FeatureSetDefaults_has_maximum_edition(const goo
5723
6081
 
5724
6082
  UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault** google_protobuf_FeatureSetDefaults_mutable_defaults(google_protobuf_FeatureSetDefaults* msg, size_t* size) {
5725
6083
  upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6084
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
5726
6085
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5727
6086
  if (arr) {
5728
6087
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5739,6 +6098,7 @@ UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault** google_
5739
6098
  }
5740
6099
  UPB_INLINE struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* google_protobuf_FeatureSetDefaults_add_defaults(google_protobuf_FeatureSetDefaults* msg, upb_Arena* arena) {
5741
6100
  upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6101
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
5742
6102
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5743
6103
  UPB_UPCAST(msg), &field, arena);
5744
6104
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5753,11 +6113,11 @@ UPB_INLINE struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* g
5753
6113
  }
5754
6114
  UPB_INLINE void google_protobuf_FeatureSetDefaults_set_minimum_edition(google_protobuf_FeatureSetDefaults *msg, int32_t value) {
5755
6115
  const upb_MiniTableField field = {4, UPB_SIZE(16, 12), 64, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5756
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6116
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5757
6117
  }
5758
6118
  UPB_INLINE void google_protobuf_FeatureSetDefaults_set_maximum_edition(google_protobuf_FeatureSetDefaults *msg, int32_t value) {
5759
6119
  const upb_MiniTableField field = {5, UPB_SIZE(20, 16), 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5760
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6120
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5761
6121
  }
5762
6122
 
5763
6123
  /* google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault */
@@ -5796,54 +6156,86 @@ UPB_INLINE char* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_ser
5796
6156
  (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, options, arena, &ptr, len);
5797
6157
  return ptr;
5798
6158
  }
5799
- UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5800
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6159
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6160
+ const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6161
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
6162
+ }
6163
+ UPB_INLINE int32_t google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6164
+ int32_t default_val = 0;
6165
+ int32_t ret;
6166
+ const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6167
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6168
+ &default_val, &ret);
6169
+ return ret;
6170
+ }
6171
+ UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6172
+ const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6173
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
6174
+ }
6175
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6176
+ const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5801
6177
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5802
6178
  }
5803
- UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6179
+ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_overridable_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5804
6180
  const google_protobuf_FeatureSet* default_val = NULL;
5805
6181
  const google_protobuf_FeatureSet* ret;
5806
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6182
+ const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6183
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5807
6184
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5808
6185
  &default_val, &ret);
5809
6186
  return ret;
5810
6187
  }
5811
- UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5812
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6188
+ UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_overridable_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6189
+ const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5813
6190
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5814
6191
  }
5815
- UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5816
- const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6192
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6193
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5817
6194
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5818
6195
  }
5819
- UPB_INLINE int32_t google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5820
- int32_t default_val = 0;
5821
- int32_t ret;
5822
- const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6196
+ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_fixed_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6197
+ const google_protobuf_FeatureSet* default_val = NULL;
6198
+ const google_protobuf_FeatureSet* ret;
6199
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6200
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5823
6201
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5824
6202
  &default_val, &ret);
5825
6203
  return ret;
5826
6204
  }
5827
- UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5828
- const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6205
+ UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_fixed_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6206
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5829
6207
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5830
6208
  }
5831
6209
 
5832
- UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) {
5833
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5834
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6210
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, int32_t value) {
6211
+ const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6212
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6213
+ }
6214
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) {
6215
+ const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6216
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
6217
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5835
6218
  }
5836
- UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_mutable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena) {
5837
- struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_features(msg);
6219
+ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_mutable_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena) {
6220
+ struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_overridable_features(msg);
5838
6221
  if (sub == NULL) {
5839
6222
  sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
5840
- if (sub) google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_features(msg, sub);
6223
+ if (sub) google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_overridable_features(msg, sub);
5841
6224
  }
5842
6225
  return sub;
5843
6226
  }
5844
- UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, int32_t value) {
5845
- const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5846
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6227
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) {
6228
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6229
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
6230
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6231
+ }
6232
+ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_mutable_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena) {
6233
+ struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_fixed_features(msg);
6234
+ if (sub == NULL) {
6235
+ sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
6236
+ if (sub) google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_fixed_features(msg, sub);
6237
+ }
6238
+ return sub;
5847
6239
  }
5848
6240
 
5849
6241
  /* google.protobuf.SourceCodeInfo */
@@ -5888,6 +6280,7 @@ UPB_INLINE void google_protobuf_SourceCodeInfo_clear_location(google_protobuf_So
5888
6280
  }
5889
6281
  UPB_INLINE const google_protobuf_SourceCodeInfo_Location* const* google_protobuf_SourceCodeInfo_location(const google_protobuf_SourceCodeInfo* msg, size_t* size) {
5890
6282
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6283
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
5891
6284
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5892
6285
  if (arr) {
5893
6286
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5899,6 +6292,7 @@ UPB_INLINE const google_protobuf_SourceCodeInfo_Location* const* google_protobuf
5899
6292
  }
5900
6293
  UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_location_upb_array(const google_protobuf_SourceCodeInfo* msg, size_t* size) {
5901
6294
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6295
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
5902
6296
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5903
6297
  if (size) {
5904
6298
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5907,6 +6301,7 @@ UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_location_upb_array(c
5907
6301
  }
5908
6302
  UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_location_mutable_upb_array(google_protobuf_SourceCodeInfo* msg, size_t* size, upb_Arena* arena) {
5909
6303
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6304
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
5910
6305
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5911
6306
  &field, arena);
5912
6307
  if (size) {
@@ -5917,6 +6312,7 @@ UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_location_mutable_upb_array
5917
6312
 
5918
6313
  UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeInfo_mutable_location(google_protobuf_SourceCodeInfo* msg, size_t* size) {
5919
6314
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6315
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
5920
6316
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5921
6317
  if (arr) {
5922
6318
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5933,6 +6329,7 @@ UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeI
5933
6329
  }
5934
6330
  UPB_INLINE struct google_protobuf_SourceCodeInfo_Location* google_protobuf_SourceCodeInfo_add_location(google_protobuf_SourceCodeInfo* msg, upb_Arena* arena) {
5935
6331
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6332
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
5936
6333
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5937
6334
  UPB_UPCAST(msg), &field, arena);
5938
6335
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -6169,11 +6566,11 @@ UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf
6169
6566
  }
6170
6567
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_leading_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_StringView value) {
6171
6568
  const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6172
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6569
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6173
6570
  }
6174
6571
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_trailing_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_StringView value) {
6175
6572
  const upb_MiniTableField field = {4, UPB_SIZE(32, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6176
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6573
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6177
6574
  }
6178
6575
  UPB_INLINE upb_StringView* google_protobuf_SourceCodeInfo_Location_mutable_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
6179
6576
  upb_MiniTableField field = {6, UPB_SIZE(20, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -6246,6 +6643,7 @@ UPB_INLINE void google_protobuf_GeneratedCodeInfo_clear_annotation(google_protob
6246
6643
  }
6247
6644
  UPB_INLINE const google_protobuf_GeneratedCodeInfo_Annotation* const* google_protobuf_GeneratedCodeInfo_annotation(const google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
6248
6645
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6646
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
6249
6647
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6250
6648
  if (arr) {
6251
6649
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6257,6 +6655,7 @@ UPB_INLINE const google_protobuf_GeneratedCodeInfo_Annotation* const* google_pro
6257
6655
  }
6258
6656
  UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_upb_array(const google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
6259
6657
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6658
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
6260
6659
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6261
6660
  if (size) {
6262
6661
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -6265,6 +6664,7 @@ UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_upb_ar
6265
6664
  }
6266
6665
  UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_mutable_upb_array(google_protobuf_GeneratedCodeInfo* msg, size_t* size, upb_Arena* arena) {
6267
6666
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6667
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
6268
6668
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6269
6669
  &field, arena);
6270
6670
  if (size) {
@@ -6275,6 +6675,7 @@ UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_mutable_upb_
6275
6675
 
6276
6676
  UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_GeneratedCodeInfo_mutable_annotation(google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
6277
6677
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6678
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
6278
6679
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
6279
6680
  if (arr) {
6280
6681
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6291,6 +6692,7 @@ UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_Genera
6291
6692
  }
6292
6693
  UPB_INLINE struct google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_GeneratedCodeInfo_add_annotation(google_protobuf_GeneratedCodeInfo* msg, upb_Arena* arena) {
6293
6694
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6695
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
6294
6696
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6295
6697
  UPB_UPCAST(msg), &field, arena);
6296
6698
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -6467,19 +6869,19 @@ UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_pro
6467
6869
  }
6468
6870
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_source_file(google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_StringView value) {
6469
6871
  const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6470
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6872
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6471
6873
  }
6472
6874
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_begin(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
6473
6875
  const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6474
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6876
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6475
6877
  }
6476
6878
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_end(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
6477
6879
  const upb_MiniTableField field = {4, UPB_SIZE(20, 16), 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6478
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6880
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6479
6881
  }
6480
6882
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_semantic(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
6481
6883
  const upb_MiniTableField field = {5, UPB_SIZE(24, 20), 67, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6482
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6884
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6483
6885
  }
6484
6886
 
6485
6887
  /* Max size 32 is google.protobuf.FileOptions */
@@ -6492,4 +6894,4 @@ UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_semantic(google
6492
6894
 
6493
6895
  #include "upb/port/undef.inc"
6494
6896
 
6495
- #endif /* GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_ */
6897
+ #endif /* GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H__UPB_H_ */