grpc 1.67.0 → 1.69.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2045) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +58 -46
  3. data/include/grpc/compression.h +1 -2
  4. data/include/grpc/credentials.h +1 -2
  5. data/include/grpc/event_engine/endpoint_config.h +2 -2
  6. data/include/grpc/event_engine/event_engine.h +12 -9
  7. data/include/grpc/event_engine/extensible.h +2 -2
  8. data/include/grpc/event_engine/internal/memory_allocator_impl.h +4 -4
  9. data/include/grpc/event_engine/memory_allocator.h +3 -4
  10. data/include/grpc/event_engine/memory_request.h +1 -2
  11. data/include/grpc/event_engine/slice.h +3 -4
  12. data/include/grpc/event_engine/slice_buffer.h +6 -7
  13. data/include/grpc/grpc.h +1 -2
  14. data/include/grpc/grpc_audit_logging.h +3 -3
  15. data/include/grpc/grpc_crl_provider.h +4 -4
  16. data/include/grpc/grpc_posix.h +1 -2
  17. data/include/grpc/grpc_security.h +1 -2
  18. data/include/grpc/impl/call.h +2 -2
  19. data/include/grpc/impl/channel_arg_names.h +2 -0
  20. data/include/grpc/impl/grpc_types.h +1 -2
  21. data/include/grpc/impl/slice_type.h +1 -2
  22. data/include/grpc/passive_listener.h +2 -2
  23. data/include/grpc/support/alloc.h +1 -2
  24. data/include/grpc/support/json.h +1 -2
  25. data/include/grpc/support/log.h +1 -2
  26. data/include/grpc/support/metrics.h +7 -3
  27. data/include/grpc/support/port_platform.h +6 -1
  28. data/include/grpc/support/sync_posix.h +1 -2
  29. data/include/grpc/support/time.h +1 -2
  30. data/src/core/channelz/channel_trace.cc +5 -6
  31. data/src/core/channelz/channel_trace.h +5 -7
  32. data/src/core/channelz/channelz.cc +5 -6
  33. data/src/core/channelz/channelz.h +8 -10
  34. data/src/core/channelz/channelz_registry.cc +6 -7
  35. data/src/core/channelz/channelz_registry.h +4 -5
  36. data/src/core/client_channel/backup_poller.cc +21 -11
  37. data/src/core/client_channel/client_channel.cc +24 -20
  38. data/src/core/client_channel/client_channel.h +4 -2
  39. data/src/core/client_channel/client_channel_factory.cc +2 -2
  40. data/src/core/client_channel/client_channel_factory.h +1 -2
  41. data/src/core/client_channel/client_channel_filter.cc +27 -24
  42. data/src/core/client_channel/client_channel_filter.h +11 -11
  43. data/src/core/client_channel/client_channel_internal.h +2 -3
  44. data/src/core/client_channel/client_channel_plugin.cc +2 -4
  45. data/src/core/client_channel/client_channel_service_config.cc +2 -3
  46. data/src/core/client_channel/client_channel_service_config.h +4 -6
  47. data/src/core/client_channel/config_selector.h +4 -7
  48. data/src/core/client_channel/connector.h +3 -3
  49. data/src/core/client_channel/direct_channel.cc +3 -3
  50. data/src/core/client_channel/dynamic_filters.cc +10 -8
  51. data/src/core/client_channel/dynamic_filters.h +8 -7
  52. data/src/core/client_channel/global_subchannel_pool.cc +2 -2
  53. data/src/core/client_channel/global_subchannel_pool.h +2 -3
  54. data/src/core/client_channel/lb_metadata.h +2 -3
  55. data/src/core/client_channel/load_balanced_call_destination.cc +2 -3
  56. data/src/core/client_channel/load_balanced_call_destination.h +0 -1
  57. data/src/core/client_channel/local_subchannel_pool.cc +2 -3
  58. data/src/core/client_channel/local_subchannel_pool.h +1 -1
  59. data/src/core/client_channel/retry_filter.cc +5 -7
  60. data/src/core/client_channel/retry_filter.h +4 -7
  61. data/src/core/client_channel/retry_filter_legacy_call_data.cc +12 -12
  62. data/src/core/client_channel/retry_filter_legacy_call_data.h +11 -12
  63. data/src/core/client_channel/retry_service_config.cc +6 -8
  64. data/src/core/client_channel/retry_service_config.h +3 -5
  65. data/src/core/client_channel/retry_throttle.cc +3 -4
  66. data/src/core/client_channel/retry_throttle.h +4 -7
  67. data/src/core/client_channel/subchannel.cc +12 -15
  68. data/src/core/client_channel/subchannel.h +17 -16
  69. data/src/core/client_channel/subchannel_interface_internal.h +1 -1
  70. data/src/core/client_channel/subchannel_pool_interface.cc +1 -3
  71. data/src/core/client_channel/subchannel_pool_interface.h +2 -3
  72. data/src/core/client_channel/subchannel_stream_client.cc +6 -9
  73. data/src/core/client_channel/subchannel_stream_client.h +8 -10
  74. data/src/core/{lib/config → config}/config_vars.cc +4 -5
  75. data/src/core/{lib/config → config}/config_vars.h +4 -5
  76. data/src/core/{lib/config → config}/config_vars_non_generated.cc +3 -3
  77. data/src/core/{lib/config → config}/core_configuration.cc +4 -4
  78. data/src/core/{lib/config → config}/core_configuration.h +5 -6
  79. data/src/core/{lib/config → config}/load_config.cc +3 -5
  80. data/src/core/{lib/config → config}/load_config.h +4 -5
  81. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +9 -9
  82. data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +0 -1
  83. data/src/core/ext/filters/census/grpc_context.cc +1 -2
  84. data/src/core/ext/filters/channel_idle/idle_filter_state.cc +1 -2
  85. data/src/core/ext/filters/channel_idle/idle_filter_state.h +0 -1
  86. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +16 -18
  87. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +6 -8
  88. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +10 -7
  89. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +1 -3
  90. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +2 -3
  91. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +4 -7
  92. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +55 -17
  93. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +28 -13
  94. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +2 -3
  95. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +2 -3
  96. data/src/core/ext/filters/http/client/http_client_filter.cc +12 -7
  97. data/src/core/ext/filters/http/client/http_client_filter.h +0 -1
  98. data/src/core/ext/filters/http/client_authority_filter.cc +7 -6
  99. data/src/core/ext/filters/http/client_authority_filter.h +0 -1
  100. data/src/core/ext/filters/http/http_filters_plugin.cc +1 -2
  101. data/src/core/ext/filters/http/message_compress/compression_filter.cc +24 -10
  102. data/src/core/ext/filters/http/message_compress/compression_filter.h +1 -4
  103. data/src/core/ext/filters/http/server/http_server_filter.cc +11 -6
  104. data/src/core/ext/filters/http/server/http_server_filter.h +0 -1
  105. data/src/core/ext/filters/message_size/message_size_filter.cc +13 -7
  106. data/src/core/ext/filters/message_size/message_size_filter.h +2 -4
  107. data/src/core/ext/filters/rbac/rbac_filter.cc +6 -6
  108. data/src/core/ext/filters/rbac/rbac_filter.h +0 -2
  109. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +14 -8
  110. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +2 -4
  111. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +11 -6
  112. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +2 -4
  113. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +2 -3
  114. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +3 -5
  115. data/src/core/ext/transport/chttp2/alpn/alpn.cc +1 -2
  116. data/src/core/ext/transport/chttp2/alpn/alpn.h +1 -2
  117. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +20 -24
  118. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +4 -5
  119. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +151 -90
  120. data/src/core/ext/transport/chttp2/server/chttp2_server.h +2 -2
  121. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +6 -6
  122. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -3
  123. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +4 -6
  124. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -2
  125. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +53 -0
  126. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +72 -0
  127. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +152 -95
  128. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +5 -6
  129. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +1 -2
  130. data/src/core/ext/transport/chttp2/transport/decode_huff.h +4 -4
  131. data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -5
  132. data/src/core/ext/transport/chttp2/transport/flow_control.h +2 -4
  133. data/src/core/ext/transport/chttp2/transport/frame.cc +22 -4
  134. data/src/core/ext/transport/chttp2/transport/frame.h +13 -4
  135. data/src/core/ext/transport/chttp2/transport/frame_data.cc +17 -13
  136. data/src/core/ext/transport/chttp2/transport/frame_data.h +2 -4
  137. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +3 -5
  138. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -2
  139. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -4
  140. data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -2
  141. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +4 -5
  142. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +1 -2
  143. data/src/core/ext/transport/chttp2/transport/frame_security.cc +82 -0
  144. data/src/core/ext/transport/chttp2/transport/frame_security.h +44 -0
  145. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +19 -5
  146. data/src/core/ext/transport/chttp2/transport/frame_settings.h +3 -4
  147. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +21 -3
  148. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +1 -2
  149. data/src/core/ext/transport/chttp2/transport/hpack_constants.h +2 -2
  150. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +10 -11
  151. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +6 -8
  152. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +2 -2
  153. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +4 -5
  154. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +2 -4
  155. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +4 -6
  156. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +4 -6
  157. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +3 -5
  158. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +1 -3
  159. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -4
  160. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +10 -2
  161. data/src/core/ext/transport/chttp2/transport/http2_settings.h +10 -4
  162. data/src/core/ext/transport/chttp2/transport/internal.h +37 -99
  163. data/src/core/ext/transport/chttp2/transport/legacy_frame.h +1 -0
  164. data/src/core/ext/transport/chttp2/transport/parsing.cc +44 -9
  165. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +3 -3
  166. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +3 -3
  167. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +2 -2
  168. data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +3 -5
  169. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +4 -5
  170. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +2 -4
  171. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +4 -3
  172. data/src/core/ext/transport/chttp2/transport/stream_lists.h +65 -0
  173. data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
  174. data/src/core/ext/transport/chttp2/transport/varint.h +1 -2
  175. data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +2 -2
  176. data/src/core/ext/transport/chttp2/transport/write_size_policy.h +3 -4
  177. data/src/core/ext/transport/chttp2/transport/writing.cc +11 -11
  178. data/src/core/ext/transport/inproc/inproc_transport.cc +6 -7
  179. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +12 -14
  180. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +35 -4
  181. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +25 -18
  182. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +10 -4
  183. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +36 -4
  184. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +24 -18
  185. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +9 -4
  186. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +39 -4
  187. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +29 -22
  188. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +10 -4
  189. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +137 -4
  190. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +105 -84
  191. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +24 -4
  192. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +10 -4
  193. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +8 -4
  194. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +7 -4
  195. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +17 -4
  196. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +12 -8
  197. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +7 -4
  198. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +5 -4
  199. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +4 -1
  200. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +6 -4
  201. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +5 -4
  202. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +4 -1
  203. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +6 -4
  204. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +5 -4
  205. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +4 -1
  206. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +6 -4
  207. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +19 -4
  208. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +16 -12
  209. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +7 -4
  210. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +7 -4
  211. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +7 -4
  212. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +6 -4
  213. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +5 -4
  214. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +7 -1
  215. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +5 -4
  216. data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +7 -6
  217. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +10 -6
  218. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +6 -4
  219. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +61 -4
  220. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +66 -48
  221. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +21 -4
  222. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +183 -4
  223. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +131 -106
  224. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +28 -4
  225. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +31 -4
  226. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +22 -17
  227. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +8 -4
  228. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +185 -4
  229. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +149 -122
  230. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +30 -4
  231. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +9 -4
  232. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +8 -5
  233. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +6 -4
  234. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +56 -4
  235. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +30 -27
  236. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +6 -4
  237. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +96 -4
  238. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +80 -63
  239. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +20 -4
  240. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +44 -4
  241. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +36 -26
  242. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +13 -4
  243. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +9 -4
  244. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +8 -5
  245. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +6 -4
  246. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +109 -4
  247. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +108 -77
  248. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +34 -4
  249. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +46 -4
  250. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +36 -27
  251. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +12 -4
  252. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +7 -4
  253. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +7 -4
  254. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +6 -4
  255. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +7 -4
  256. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +7 -4
  257. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +6 -4
  258. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +10 -4
  259. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +8 -4
  260. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +7 -4
  261. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +71 -4
  262. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +61 -45
  263. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +19 -4
  264. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +92 -4
  265. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +55 -44
  266. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +14 -4
  267. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +12 -4
  268. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +8 -5
  269. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +6 -4
  270. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +7 -4
  271. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +7 -4
  272. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +6 -4
  273. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +99 -4
  274. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +85 -67
  275. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +21 -4
  276. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +7 -4
  277. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +8 -4
  278. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +7 -4
  279. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +12 -4
  280. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +9 -5
  281. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +7 -4
  282. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +10 -4
  283. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +8 -4
  284. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +7 -4
  285. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +16 -4
  286. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +11 -7
  287. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +7 -4
  288. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +9 -4
  289. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +8 -5
  290. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +6 -4
  291. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +35 -4
  292. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +23 -17
  293. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +9 -4
  294. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +48 -4
  295. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +41 -32
  296. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +12 -4
  297. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +44 -4
  298. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +27 -19
  299. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +11 -4
  300. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +7 -4
  301. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +7 -4
  302. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +6 -4
  303. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +83 -4
  304. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +53 -41
  305. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +15 -4
  306. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +66 -4
  307. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +47 -38
  308. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +12 -4
  309. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +27 -4
  310. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +17 -14
  311. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +6 -4
  312. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +11 -4
  313. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +10 -6
  314. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +7 -4
  315. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +9 -4
  316. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +8 -5
  317. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +6 -4
  318. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +33 -4
  319. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +34 -24
  320. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +13 -4
  321. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +51 -4
  322. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +41 -29
  323. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +15 -4
  324. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +96 -4
  325. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +68 -55
  326. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +16 -4
  327. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +52 -4
  328. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +24 -19
  329. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +8 -4
  330. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +435 -4
  331. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +306 -246
  332. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +63 -4
  333. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +14 -4
  334. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +13 -8
  335. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +8 -4
  336. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +69 -4
  337. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +59 -45
  338. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +17 -4
  339. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +9 -4
  340. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +11 -7
  341. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +7 -4
  342. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +7 -4
  343. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +7 -4
  344. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +6 -4
  345. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +9 -4
  346. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +11 -7
  347. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +7 -4
  348. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +7 -4
  349. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +7 -4
  350. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +6 -4
  351. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +11 -4
  352. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +9 -6
  353. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +6 -4
  354. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +16 -4
  355. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +10 -7
  356. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +6 -4
  357. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +7 -4
  358. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +7 -4
  359. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +6 -4
  360. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +11 -4
  361. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +12 -8
  362. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +7 -4
  363. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +5 -4
  364. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -1
  365. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +5 -4
  366. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +13 -4
  367. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +13 -9
  368. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +7 -4
  369. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +7 -4
  370. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +7 -4
  371. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +6 -4
  372. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +102 -4
  373. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +72 -54
  374. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +21 -4
  375. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +5 -4
  376. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +4 -1
  377. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +6 -4
  378. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +17 -4
  379. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +18 -11
  380. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +10 -4
  381. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +24 -4
  382. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +18 -13
  383. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +8 -4
  384. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +17 -4
  385. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +17 -11
  386. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +9 -4
  387. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +15 -4
  388. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +14 -10
  389. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +7 -4
  390. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +21 -4
  391. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +14 -10
  392. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +7 -4
  393. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +9 -4
  394. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +11 -7
  395. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +7 -4
  396. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +181 -4
  397. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +132 -109
  398. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +26 -4
  399. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +7 -4
  400. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +7 -4
  401. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +6 -4
  402. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +17 -4
  403. 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 +12 -9
  404. 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
  405. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +21 -4
  406. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +24 -17
  407. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +10 -4
  408. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +5 -4
  409. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +4 -1
  410. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +6 -4
  411. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +15 -4
  412. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +11 -8
  413. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +6 -4
  414. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +7 -4
  415. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +7 -4
  416. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +6 -4
  417. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +106 -0
  418. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +52 -0
  419. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +32 -0
  420. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +5 -4
  421. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +3 -1
  422. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +5 -4
  423. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +59 -4
  424. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +42 -32
  425. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +13 -4
  426. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +17 -4
  427. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +18 -13
  428. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +8 -4
  429. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +77 -4
  430. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +52 -43
  431. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +12 -4
  432. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +12 -4
  433. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +11 -7
  434. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +7 -4
  435. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +42 -4
  436. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +32 -26
  437. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +9 -4
  438. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +5 -4
  439. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +4 -1
  440. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +6 -4
  441. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +86 -4
  442. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +63 -47
  443. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +19 -4
  444. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +14 -4
  445. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +12 -8
  446. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +7 -4
  447. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +45 -4
  448. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +32 -25
  449. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +10 -4
  450. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +7 -4
  451. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +7 -4
  452. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +6 -4
  453. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +14 -4
  454. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +14 -8
  455. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +9 -4
  456. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +7 -4
  457. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +7 -4
  458. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +6 -4
  459. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +5 -4
  460. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +8 -1
  461. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +10 -4
  462. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +12 -4
  463. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +9 -5
  464. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +7 -4
  465. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +12 -4
  466. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +8 -5
  467. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +6 -4
  468. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +7 -4
  469. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +7 -4
  470. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +6 -4
  471. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +7 -4
  472. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +7 -4
  473. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +6 -4
  474. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +11 -4
  475. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +15 -10
  476. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +8 -4
  477. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +5 -4
  478. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +5 -1
  479. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +7 -4
  480. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +14 -4
  481. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +12 -8
  482. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +7 -4
  483. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +12 -4
  484. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +9 -5
  485. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +7 -4
  486. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +22 -4
  487. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +20 -14
  488. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +9 -4
  489. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +18 -4
  490. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +19 -10
  491. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +12 -4
  492. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +17 -4
  493. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +18 -11
  494. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +10 -4
  495. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +9 -4
  496. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +10 -5
  497. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +8 -4
  498. data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +5 -4
  499. data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +3 -1
  500. data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +5 -4
  501. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +5 -4
  502. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +4 -1
  503. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +6 -4
  504. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +5 -4
  505. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +5 -1
  506. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +7 -4
  507. data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +5 -4
  508. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +6 -1
  509. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +8 -4
  510. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +9 -4
  511. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +9 -5
  512. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +7 -4
  513. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +5 -4
  514. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +3 -1
  515. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +5 -4
  516. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +5 -4
  517. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +4 -1
  518. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +6 -4
  519. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +9 -4
  520. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +8 -5
  521. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +6 -4
  522. data/src/core/ext/upb-gen/google/api/annotations.upb.h +7 -6
  523. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +5 -2
  524. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +5 -4
  525. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +87 -4
  526. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +69 -54
  527. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +18 -4
  528. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +85 -4
  529. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +71 -53
  530. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +21 -4
  531. data/src/core/ext/upb-gen/google/api/http.upb.h +18 -4
  532. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +13 -8
  533. data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +8 -4
  534. data/src/core/ext/upb-gen/google/api/httpbody.upb.h +10 -4
  535. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +7 -4
  536. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +6 -4
  537. data/src/core/ext/upb-gen/google/protobuf/any.upb.h +6 -4
  538. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +4 -1
  539. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +6 -4
  540. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +202 -4
  541. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +241 -206
  542. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +55 -21
  543. data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +6 -4
  544. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +4 -1
  545. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +6 -4
  546. data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +6 -4
  547. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +4 -1
  548. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +6 -4
  549. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +27 -4
  550. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +20 -14
  551. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +9 -4
  552. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +6 -4
  553. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +4 -1
  554. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +6 -4
  555. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +6 -4
  556. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +12 -1
  557. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +14 -4
  558. data/src/core/ext/upb-gen/google/rpc/status.upb.h +10 -4
  559. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +7 -4
  560. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +6 -4
  561. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +12 -4
  562. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +12 -6
  563. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +9 -4
  564. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +13 -4
  565. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +9 -5
  566. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +7 -4
  567. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +63 -4
  568. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +51 -37
  569. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +17 -4
  570. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +10 -4
  571. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +9 -5
  572. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +7 -4
  573. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +6 -4
  574. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +5 -1
  575. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +7 -4
  576. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +29 -4
  577. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +31 -20
  578. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +14 -4
  579. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +12 -4
  580. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +9 -4
  581. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +8 -4
  582. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +57 -4
  583. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +33 -22
  584. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +14 -4
  585. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +15 -14
  586. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +22 -12
  587. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +8 -4
  588. data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +7 -6
  589. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +10 -6
  590. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +6 -4
  591. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +5 -4
  592. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +4 -1
  593. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +5 -4
  594. data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +7 -6
  595. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +10 -6
  596. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +6 -4
  597. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +7 -6
  598. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +10 -6
  599. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +6 -4
  600. data/src/core/ext/upb-gen/validate/validate.upb.h +89 -6
  601. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +116 -87
  602. data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +29 -5
  603. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +15 -14
  604. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +22 -12
  605. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +8 -4
  606. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +7 -6
  607. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +10 -6
  608. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +6 -4
  609. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +5 -4
  610. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +4 -1
  611. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +5 -4
  612. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +11 -10
  613. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +20 -11
  614. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +9 -4
  615. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +7 -6
  616. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +10 -6
  617. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +6 -4
  618. data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +5 -4
  619. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +4 -1
  620. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +6 -4
  621. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +7 -4
  622. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +7 -4
  623. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +6 -4
  624. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +11 -4
  625. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +12 -8
  626. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +7 -4
  627. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +11 -4
  628. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +8 -4
  629. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +7 -4
  630. data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +7 -4
  631. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +7 -4
  632. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +6 -4
  633. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +9 -4
  634. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +8 -5
  635. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +6 -4
  636. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +14 -4
  637. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +12 -8
  638. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +7 -4
  639. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +7 -4
  640. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +7 -4
  641. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +6 -4
  642. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +23 -4
  643. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +12 -6
  644. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +9 -4
  645. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +7 -4
  646. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +7 -4
  647. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +6 -4
  648. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +7 -4
  649. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +7 -4
  650. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +6 -4
  651. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +12 -4
  652. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +11 -7
  653. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +7 -4
  654. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +5 -4
  655. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +4 -1
  656. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +6 -4
  657. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +17 -4
  658. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +12 -8
  659. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +7 -4
  660. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +63 -4
  661. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +55 -43
  662. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +15 -4
  663. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +41 -4
  664. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +30 -22
  665. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +11 -4
  666. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +7 -4
  667. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +8 -4
  668. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +7 -4
  669. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +12 -4
  670. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +11 -7
  671. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +7 -4
  672. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +13 -4
  673. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +13 -9
  674. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +7 -4
  675. data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +6 -4
  676. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +6 -1
  677. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +8 -4
  678. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +7 -4
  679. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +7 -4
  680. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +6 -4
  681. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +2 -1
  682. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +5 -4
  683. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +2 -1
  684. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +5 -4
  685. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +2 -1
  686. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +5 -4
  687. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +2 -1
  688. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +5 -4
  689. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +2 -1
  690. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +5 -4
  691. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +2 -1
  692. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +5 -4
  693. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +2 -1
  694. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +5 -4
  695. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +2 -1
  696. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +5 -4
  697. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +2 -1
  698. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +5 -4
  699. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +2 -1
  700. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +5 -4
  701. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +2 -1
  702. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +5 -4
  703. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
  704. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +5 -4
  705. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
  706. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +5 -4
  707. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +2 -1
  708. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -4
  709. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +2 -1
  710. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +5 -4
  711. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -1
  712. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +5 -4
  713. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +2 -1
  714. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +5 -4
  715. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +2 -1
  716. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +5 -4
  717. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +2 -1
  718. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +5 -4
  719. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +2 -1
  720. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +5 -4
  721. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +2 -1
  722. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +5 -4
  723. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +2 -1
  724. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +5 -4
  725. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +2 -1
  726. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +5 -4
  727. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +2 -1
  728. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +5 -4
  729. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +2 -1
  730. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +5 -4
  731. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +2 -1
  732. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +5 -4
  733. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +2 -1
  734. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +5 -4
  735. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +2 -1
  736. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +5 -4
  737. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +2 -1
  738. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +5 -4
  739. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +2 -1
  740. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +5 -4
  741. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +2 -1
  742. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +5 -4
  743. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +2 -1
  744. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +5 -4
  745. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -1
  746. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +5 -4
  747. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +2 -1
  748. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +5 -4
  749. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +2 -1
  750. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +5 -4
  751. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -1
  752. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +5 -4
  753. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -1
  754. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +5 -4
  755. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -1
  756. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +5 -4
  757. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +2 -1
  758. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +5 -4
  759. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +2 -1
  760. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +5 -4
  761. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +2 -1
  762. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +5 -4
  763. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +2 -1
  764. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +5 -4
  765. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +2 -1
  766. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +5 -4
  767. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +2 -1
  768. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +5 -4
  769. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -1
  770. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +5 -4
  771. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +2 -1
  772. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +5 -4
  773. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +2 -1
  774. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +5 -4
  775. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +2 -1
  776. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +5 -4
  777. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +2 -1
  778. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +5 -4
  779. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +2 -1
  780. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +5 -4
  781. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +2 -1
  782. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +5 -4
  783. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +2 -1
  784. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +5 -4
  785. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +2 -1
  786. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +5 -4
  787. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +2 -1
  788. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +5 -4
  789. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +2 -1
  790. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +5 -4
  791. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -1
  792. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +5 -4
  793. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +2 -1
  794. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +5 -4
  795. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +2 -1
  796. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +5 -4
  797. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +2 -1
  798. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +5 -4
  799. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +2 -1
  800. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +5 -4
  801. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +2 -1
  802. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +5 -4
  803. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +2 -1
  804. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +5 -4
  805. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +2 -1
  806. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +5 -4
  807. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +2 -1
  808. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +5 -4
  809. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +2 -1
  810. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +5 -4
  811. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -1
  812. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +5 -4
  813. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -1
  814. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +5 -4
  815. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -1
  816. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +5 -4
  817. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +2 -1
  818. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +5 -4
  819. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +2 -1
  820. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +5 -4
  821. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -1
  822. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -4
  823. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +2 -1
  824. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +5 -4
  825. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +2 -1
  826. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -4
  827. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +2 -1
  828. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +5 -4
  829. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +53 -0
  830. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +33 -0
  831. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -1
  832. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +5 -4
  833. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +2 -1
  834. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +5 -4
  835. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -1
  836. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +5 -4
  837. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +2 -1
  838. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +5 -4
  839. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +2 -1
  840. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +5 -4
  841. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +2 -1
  842. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +5 -4
  843. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +2 -1
  844. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +5 -4
  845. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +2 -1
  846. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +5 -4
  847. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -1
  848. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +5 -4
  849. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +2 -1
  850. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +5 -4
  851. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +2 -1
  852. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +5 -4
  853. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +2 -1
  854. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +5 -4
  855. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +2 -1
  856. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +5 -4
  857. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +2 -1
  858. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +5 -4
  859. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +2 -1
  860. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +5 -4
  861. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +2 -1
  862. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +5 -4
  863. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +2 -1
  864. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +5 -4
  865. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +2 -1
  866. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +5 -4
  867. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +2 -1
  868. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +5 -4
  869. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +2 -1
  870. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +5 -4
  871. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +2 -1
  872. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +5 -4
  873. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +2 -1
  874. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +5 -4
  875. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +2 -1
  876. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +5 -4
  877. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +2 -1
  878. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +5 -4
  879. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -1
  880. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +5 -4
  881. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +2 -1
  882. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +5 -4
  883. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +2 -1
  884. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +5 -4
  885. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +2 -1
  886. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +5 -4
  887. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +2 -1
  888. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +5 -4
  889. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +2 -1
  890. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +5 -4
  891. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +2 -1
  892. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +5 -4
  893. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +2 -1
  894. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +5 -4
  895. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +2 -1
  896. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +5 -4
  897. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +2 -1
  898. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +5 -4
  899. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
  900. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +5 -4
  901. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +2 -1
  902. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +5 -4
  903. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +2 -1
  904. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +5 -4
  905. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
  906. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +5 -4
  907. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
  908. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +5 -4
  909. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
  910. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +5 -4
  911. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +486 -484
  912. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +5 -4
  913. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
  914. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +5 -4
  915. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
  916. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +5 -4
  917. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
  918. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +5 -4
  919. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
  920. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +5 -4
  921. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
  922. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +5 -4
  923. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
  924. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +5 -4
  925. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +2 -1
  926. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +5 -4
  927. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +2 -1
  928. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +5 -4
  929. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
  930. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +5 -4
  931. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
  932. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +5 -4
  933. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
  934. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +5 -4
  935. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
  936. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +5 -4
  937. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
  938. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +5 -4
  939. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
  940. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +5 -4
  941. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +2 -1
  942. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +5 -4
  943. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +2 -1
  944. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +5 -4
  945. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +2 -1
  946. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +5 -4
  947. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +2 -1
  948. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +5 -4
  949. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +2 -1
  950. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +5 -4
  951. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +2 -1
  952. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +5 -4
  953. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +2 -1
  954. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +5 -4
  955. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +2 -1
  956. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +5 -4
  957. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +2 -1
  958. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +5 -4
  959. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +2 -1
  960. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +5 -4
  961. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +2 -1
  962. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +5 -4
  963. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +2 -1
  964. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +5 -4
  965. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +2 -1
  966. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +5 -4
  967. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +2 -1
  968. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +5 -4
  969. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +2 -1
  970. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +5 -4
  971. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +2 -1
  972. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +5 -4
  973. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +2 -1
  974. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +5 -4
  975. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +2 -1
  976. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +5 -4
  977. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +2 -1
  978. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +5 -4
  979. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +2 -1
  980. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +5 -4
  981. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +2 -1
  982. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +5 -4
  983. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +2 -1
  984. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +5 -4
  985. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +2 -1
  986. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +5 -4
  987. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +2 -1
  988. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +5 -4
  989. data/src/core/filter/blackboard.cc +33 -0
  990. data/src/core/filter/blackboard.h +70 -0
  991. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +4 -5
  992. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +1 -1
  993. data/src/core/handshaker/handshaker.cc +8 -11
  994. data/src/core/handshaker/handshaker.h +8 -10
  995. data/src/core/handshaker/handshaker_registry.cc +1 -2
  996. data/src/core/handshaker/handshaker_registry.h +2 -2
  997. data/src/core/handshaker/http_connect/http_connect_handshaker.cc +14 -11
  998. data/src/core/handshaker/http_connect/http_connect_handshaker.h +1 -1
  999. data/src/core/handshaker/http_connect/http_proxy_mapper.cc +7 -9
  1000. data/src/core/handshaker/http_connect/http_proxy_mapper.h +3 -4
  1001. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +57 -0
  1002. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +46 -0
  1003. data/src/core/handshaker/proxy_mapper.h +2 -3
  1004. data/src/core/handshaker/proxy_mapper_registry.cc +2 -2
  1005. data/src/core/handshaker/proxy_mapper_registry.h +2 -3
  1006. data/src/core/handshaker/security/secure_endpoint.cc +12 -14
  1007. data/src/core/handshaker/security/secure_endpoint.h +2 -3
  1008. data/src/core/handshaker/security/security_handshaker.cc +15 -21
  1009. data/src/core/handshaker/security/security_handshaker.h +3 -4
  1010. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +10 -11
  1011. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.h +1 -1
  1012. data/src/core/lib/address_utils/parse_address.cc +3 -4
  1013. data/src/core/lib/address_utils/parse_address.h +2 -4
  1014. data/src/core/lib/address_utils/sockaddr_utils.cc +4 -6
  1015. data/src/core/lib/address_utils/sockaddr_utils.h +1 -3
  1016. data/src/core/lib/channel/call_finalization.h +2 -2
  1017. data/src/core/lib/channel/channel_args.cc +4 -6
  1018. data/src/core/lib/channel/channel_args.h +11 -13
  1019. data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
  1020. data/src/core/lib/channel/channel_args_preconditioning.h +4 -4
  1021. data/src/core/lib/channel/channel_stack.cc +5 -4
  1022. data/src/core/lib/channel/channel_stack.h +17 -17
  1023. data/src/core/lib/channel/channel_stack_builder.cc +2 -2
  1024. data/src/core/lib/channel/channel_stack_builder.h +3 -4
  1025. data/src/core/lib/channel/channel_stack_builder_impl.cc +5 -7
  1026. data/src/core/lib/channel/channel_stack_builder_impl.h +15 -3
  1027. data/src/core/lib/channel/connected_channel.cc +9 -11
  1028. data/src/core/lib/channel/promise_based_filter.cc +33 -24
  1029. data/src/core/lib/channel/promise_based_filter.h +45 -16
  1030. data/src/core/lib/channel/status_util.cc +1 -3
  1031. data/src/core/lib/channel/status_util.h +3 -3
  1032. data/src/core/lib/compression/compression.cc +3 -5
  1033. data/src/core/lib/compression/compression_internal.cc +5 -7
  1034. data/src/core/lib/compression/compression_internal.h +3 -5
  1035. data/src/core/lib/compression/message_compress.cc +3 -6
  1036. data/src/core/lib/debug/trace.cc +5 -6
  1037. data/src/core/lib/debug/trace_flags.cc +1 -2
  1038. data/src/core/lib/debug/trace_impl.h +2 -2
  1039. data/src/core/lib/event_engine/ares_resolver.cc +11 -15
  1040. data/src/core/lib/event_engine/ares_resolver.h +7 -10
  1041. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +2 -4
  1042. data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
  1043. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +1 -2
  1044. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +4 -6
  1045. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +9 -7
  1046. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +3 -5
  1047. data/src/core/lib/event_engine/channel_args_endpoint_config.cc +3 -4
  1048. data/src/core/lib/event_engine/channel_args_endpoint_config.h +2 -3
  1049. data/src/core/lib/event_engine/common_closures.h +3 -3
  1050. data/src/core/lib/event_engine/default_event_engine.cc +7 -8
  1051. data/src/core/lib/event_engine/default_event_engine.h +4 -4
  1052. data/src/core/lib/event_engine/default_event_engine_factory.cc +2 -2
  1053. data/src/core/lib/event_engine/default_event_engine_factory.h +2 -2
  1054. data/src/core/lib/event_engine/event_engine.cc +2 -2
  1055. data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -2
  1056. data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +1 -2
  1057. data/src/core/lib/event_engine/extensions/supports_fd.h +20 -3
  1058. data/src/core/lib/event_engine/extensions/tcp_trace.h +0 -1
  1059. data/src/core/lib/event_engine/forkable.cc +3 -3
  1060. data/src/core/lib/event_engine/forkable.h +2 -2
  1061. data/src/core/lib/event_engine/grpc_polled_fd.h +3 -4
  1062. data/src/core/lib/event_engine/handle_containers.h +2 -3
  1063. data/src/core/lib/event_engine/memory_allocator_factory.h +3 -4
  1064. data/src/core/lib/event_engine/nameser.h +1 -1
  1065. data/src/core/lib/event_engine/poller.h +2 -2
  1066. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +10 -12
  1067. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +4 -5
  1068. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +17 -20
  1069. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +4 -5
  1070. data/src/core/lib/event_engine/posix_engine/event_poller.h +3 -4
  1071. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +4 -5
  1072. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -2
  1073. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +4 -6
  1074. data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +2 -3
  1075. data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +1 -2
  1076. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +5 -6
  1077. data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -3
  1078. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +2 -3
  1079. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +2 -3
  1080. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +15 -17
  1081. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +8 -9
  1082. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +44 -28
  1083. data/src/core/lib/event_engine/posix_engine/posix_engine.h +16 -14
  1084. data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +3 -3
  1085. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +7 -9
  1086. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +12 -11
  1087. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +4 -6
  1088. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -2
  1089. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +8 -11
  1090. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +7 -8
  1091. data/src/core/lib/event_engine/posix_engine/timer.cc +4 -4
  1092. data/src/core/lib/event_engine/posix_engine/timer.h +5 -7
  1093. data/src/core/lib/event_engine/posix_engine/timer_heap.cc +2 -3
  1094. data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -2
  1095. data/src/core/lib/event_engine/posix_engine/timer_manager.cc +3 -4
  1096. data/src/core/lib/event_engine/posix_engine/timer_manager.h +5 -7
  1097. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +5 -7
  1098. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +3 -5
  1099. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +5 -6
  1100. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +2 -3
  1101. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +4 -5
  1102. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +2 -3
  1103. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +2 -2
  1104. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +2 -3
  1105. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +2 -2
  1106. data/src/core/lib/event_engine/query_extensions.h +2 -2
  1107. data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +3 -5
  1108. data/src/core/lib/event_engine/resolved_address.cc +5 -4
  1109. data/src/core/lib/event_engine/slice.cc +3 -5
  1110. data/src/core/lib/event_engine/slice_buffer.cc +1 -2
  1111. data/src/core/lib/event_engine/tcp_socket_utils.cc +3 -10
  1112. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -3
  1113. data/src/core/lib/event_engine/thread_pool/thread_count.cc +2 -4
  1114. data/src/core/lib/event_engine/thread_pool/thread_count.h +5 -6
  1115. data/src/core/lib/event_engine/thread_pool/thread_pool.h +2 -4
  1116. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -3
  1117. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +9 -11
  1118. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +7 -9
  1119. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +5 -5
  1120. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +5 -5
  1121. data/src/core/lib/event_engine/time_util.cc +2 -2
  1122. data/src/core/lib/event_engine/time_util.h +1 -2
  1123. data/src/core/lib/event_engine/utils.cc +19 -5
  1124. data/src/core/lib/event_engine/utils.h +10 -4
  1125. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +5 -8
  1126. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +4 -6
  1127. data/src/core/lib/event_engine/windows/iocp.cc +4 -5
  1128. data/src/core/lib/event_engine/windows/iocp.h +1 -2
  1129. data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +4 -6
  1130. data/src/core/lib/event_engine/windows/win_socket.cc +4 -5
  1131. data/src/core/lib/event_engine/windows/win_socket.h +4 -5
  1132. data/src/core/lib/event_engine/windows/windows_endpoint.cc +28 -15
  1133. data/src/core/lib/event_engine/windows/windows_engine.cc +10 -11
  1134. data/src/core/lib/event_engine/windows/windows_engine.h +8 -9
  1135. data/src/core/lib/event_engine/windows/windows_listener.cc +2 -3
  1136. data/src/core/lib/event_engine/windows/windows_listener.h +4 -5
  1137. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +3 -3
  1138. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +3 -5
  1139. data/src/core/lib/event_engine/work_queue/work_queue.h +2 -3
  1140. data/src/core/lib/experiments/config.cc +9 -12
  1141. data/src/core/lib/experiments/config.h +1 -2
  1142. data/src/core/lib/experiments/experiments.cc +203 -28
  1143. data/src/core/lib/experiments/experiments.h +76 -15
  1144. data/src/core/lib/iomgr/buffer_list.cc +4 -5
  1145. data/src/core/lib/iomgr/buffer_list.h +2 -3
  1146. data/src/core/lib/iomgr/call_combiner.cc +2 -4
  1147. data/src/core/lib/iomgr/call_combiner.h +6 -8
  1148. data/src/core/lib/iomgr/cfstream_handle.cc +2 -4
  1149. data/src/core/lib/iomgr/cfstream_handle.h +1 -1
  1150. data/src/core/lib/iomgr/closure.cc +2 -2
  1151. data/src/core/lib/iomgr/closure.h +9 -9
  1152. data/src/core/lib/iomgr/combiner.cc +4 -6
  1153. data/src/core/lib/iomgr/combiner.h +2 -3
  1154. data/src/core/lib/iomgr/endpoint.h +1 -2
  1155. data/src/core/lib/iomgr/endpoint_cfstream.cc +2 -4
  1156. data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -4
  1157. data/src/core/lib/iomgr/endpoint_pair_windows.cc +1 -2
  1158. data/src/core/lib/iomgr/error.cc +6 -8
  1159. data/src/core/lib/iomgr/error.h +6 -8
  1160. data/src/core/lib/iomgr/error_cfstream.cc +1 -3
  1161. data/src/core/lib/iomgr/ev_apple.cc +3 -4
  1162. data/src/core/lib/iomgr/ev_epoll1_linux.cc +7 -9
  1163. data/src/core/lib/iomgr/ev_poll_posix.cc +3 -5
  1164. data/src/core/lib/iomgr/ev_posix.cc +4 -6
  1165. data/src/core/lib/iomgr/ev_posix.h +1 -2
  1166. data/src/core/lib/iomgr/event_engine_shims/closure.cc +3 -4
  1167. data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -2
  1168. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +10 -11
  1169. data/src/core/lib/iomgr/event_engine_shims/endpoint.h +2 -2
  1170. data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +2 -3
  1171. data/src/core/lib/iomgr/exec_ctx.cc +4 -5
  1172. data/src/core/lib/iomgr/exec_ctx.h +6 -8
  1173. data/src/core/lib/iomgr/executor.cc +6 -8
  1174. data/src/core/lib/iomgr/executor.h +1 -1
  1175. data/src/core/lib/iomgr/fork_posix.cc +5 -7
  1176. data/src/core/lib/iomgr/fork_windows.cc +2 -2
  1177. data/src/core/lib/iomgr/internal_errqueue.cc +2 -3
  1178. data/src/core/lib/iomgr/iocp_windows.cc +4 -6
  1179. data/src/core/lib/iomgr/iomgr.cc +7 -9
  1180. data/src/core/lib/iomgr/iomgr.h +1 -2
  1181. data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
  1182. data/src/core/lib/iomgr/iomgr_internal.h +1 -2
  1183. data/src/core/lib/iomgr/iomgr_posix.cc +2 -1
  1184. data/src/core/lib/iomgr/iomgr_windows.cc +4 -3
  1185. data/src/core/lib/iomgr/lockfree_event.cc +3 -4
  1186. data/src/core/lib/iomgr/nameser.h +1 -1
  1187. data/src/core/lib/iomgr/polling_entity.cc +3 -4
  1188. data/src/core/lib/iomgr/pollset_set_windows.cc +1 -2
  1189. data/src/core/lib/iomgr/pollset_windows.cc +2 -2
  1190. data/src/core/lib/iomgr/port.h +2 -2
  1191. data/src/core/lib/iomgr/resolve_address.cc +3 -4
  1192. data/src/core/lib/iomgr/resolve_address.h +4 -6
  1193. data/src/core/lib/iomgr/resolve_address_impl.h +1 -2
  1194. data/src/core/lib/iomgr/resolve_address_posix.cc +6 -7
  1195. data/src/core/lib/iomgr/resolve_address_posix.h +2 -2
  1196. data/src/core/lib/iomgr/resolve_address_windows.cc +8 -10
  1197. data/src/core/lib/iomgr/resolve_address_windows.h +2 -2
  1198. data/src/core/lib/iomgr/resolved_address.h +1 -2
  1199. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +3 -5
  1200. data/src/core/lib/iomgr/socket_mutator.cc +1 -1
  1201. data/src/core/lib/iomgr/socket_mutator.h +1 -2
  1202. data/src/core/lib/iomgr/socket_utils.h +1 -2
  1203. data/src/core/lib/iomgr/socket_utils_common_posix.cc +5 -7
  1204. data/src/core/lib/iomgr/socket_utils_linux.cc +1 -1
  1205. data/src/core/lib/iomgr/socket_utils_posix.cc +4 -6
  1206. data/src/core/lib/iomgr/socket_utils_windows.cc +1 -1
  1207. data/src/core/lib/iomgr/socket_windows.cc +3 -5
  1208. data/src/core/lib/iomgr/socket_windows.h +1 -2
  1209. data/src/core/lib/iomgr/tcp_client_cfstream.cc +5 -7
  1210. data/src/core/lib/iomgr/tcp_client_posix.cc +5 -7
  1211. data/src/core/lib/iomgr/tcp_client_windows.cc +6 -8
  1212. data/src/core/lib/iomgr/tcp_posix.cc +14 -17
  1213. data/src/core/lib/iomgr/tcp_posix.h +1 -1
  1214. data/src/core/lib/iomgr/tcp_server.h +2 -2
  1215. data/src/core/lib/iomgr/tcp_server_posix.cc +9 -11
  1216. data/src/core/lib/iomgr/tcp_server_utils_posix.h +2 -3
  1217. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +3 -5
  1218. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +4 -6
  1219. data/src/core/lib/iomgr/tcp_server_windows.cc +11 -13
  1220. data/src/core/lib/iomgr/tcp_windows.cc +4 -6
  1221. data/src/core/lib/iomgr/timer.h +2 -2
  1222. data/src/core/lib/iomgr/timer_generic.cc +9 -11
  1223. data/src/core/lib/iomgr/timer_heap.cc +2 -3
  1224. data/src/core/lib/iomgr/timer_manager.cc +4 -6
  1225. data/src/core/lib/iomgr/timer_manager.h +1 -2
  1226. data/src/core/lib/iomgr/unix_sockets_posix.cc +3 -4
  1227. data/src/core/lib/iomgr/unix_sockets_posix.h +3 -4
  1228. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -2
  1229. data/src/core/lib/iomgr/vsock.cc +2 -4
  1230. data/src/core/lib/iomgr/vsock.h +3 -4
  1231. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -2
  1232. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +3 -4
  1233. data/src/core/lib/promise/activity.cc +2 -4
  1234. data/src/core/lib/promise/activity.h +10 -12
  1235. data/src/core/lib/promise/all_ok.h +40 -4
  1236. data/src/core/lib/promise/arena_promise.h +2 -4
  1237. data/src/core/lib/promise/cancel_callback.h +4 -4
  1238. data/src/core/lib/promise/context.h +7 -8
  1239. data/src/core/lib/promise/detail/basic_seq.h +33 -19
  1240. data/src/core/lib/promise/detail/join_state.h +4 -5
  1241. data/src/core/lib/promise/detail/promise_factory.h +7 -8
  1242. data/src/core/lib/promise/detail/promise_like.h +26 -4
  1243. data/src/core/lib/promise/detail/seq_state.h +183 -185
  1244. data/src/core/lib/promise/detail/status.h +5 -5
  1245. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +2 -3
  1246. data/src/core/lib/promise/for_each.h +9 -10
  1247. data/src/core/lib/promise/if.h +9 -9
  1248. data/src/core/lib/promise/interceptor_list.h +3 -5
  1249. data/src/core/lib/promise/latch.h +1 -3
  1250. data/src/core/lib/promise/loop.h +13 -5
  1251. data/src/core/lib/promise/map.h +57 -7
  1252. data/src/core/lib/promise/observable.h +3 -4
  1253. data/src/core/lib/promise/party.cc +42 -76
  1254. data/src/core/lib/promise/party.h +60 -40
  1255. data/src/core/lib/promise/pipe.h +3 -5
  1256. data/src/core/lib/promise/poll.h +19 -7
  1257. data/src/core/lib/promise/prioritized_race.h +2 -2
  1258. data/src/core/lib/promise/promise.h +5 -6
  1259. data/src/core/lib/promise/race.h +4 -4
  1260. data/src/core/lib/promise/seq.h +17 -39
  1261. data/src/core/lib/promise/sleep.cc +3 -3
  1262. data/src/core/lib/promise/sleep.h +4 -5
  1263. data/src/core/lib/promise/status_flag.h +9 -3
  1264. data/src/core/lib/promise/try_join.h +5 -5
  1265. data/src/core/lib/promise/try_seq.h +45 -47
  1266. data/src/core/lib/resource_quota/api.cc +4 -6
  1267. data/src/core/lib/resource_quota/api.h +2 -3
  1268. data/src/core/lib/resource_quota/arena.cc +3 -4
  1269. data/src/core/lib/resource_quota/arena.h +4 -5
  1270. data/src/core/lib/resource_quota/connection_quota.cc +2 -2
  1271. data/src/core/lib/resource_quota/connection_quota.h +5 -6
  1272. data/src/core/lib/resource_quota/memory_quota.cc +20 -11
  1273. data/src/core/lib/resource_quota/memory_quota.h +21 -13
  1274. data/src/core/lib/resource_quota/periodic_update.cc +4 -4
  1275. data/src/core/lib/resource_quota/periodic_update.h +2 -4
  1276. data/src/core/lib/resource_quota/resource_quota.h +7 -8
  1277. data/src/core/lib/resource_quota/thread_quota.cc +2 -2
  1278. data/src/core/lib/resource_quota/thread_quota.h +5 -6
  1279. data/src/core/lib/security/authorization/audit_logging.cc +5 -6
  1280. data/src/core/lib/security/authorization/audit_logging.h +5 -6
  1281. data/src/core/lib/security/authorization/authorization_engine.h +3 -3
  1282. data/src/core/lib/security/authorization/authorization_policy_provider.h +3 -4
  1283. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +1 -1
  1284. data/src/core/lib/security/authorization/evaluate_args.cc +4 -6
  1285. data/src/core/lib/security/authorization/evaluate_args.h +3 -4
  1286. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +2 -3
  1287. data/src/core/lib/security/authorization/grpc_authorization_engine.h +2 -3
  1288. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +5 -3
  1289. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +2 -3
  1290. data/src/core/lib/security/authorization/matchers.cc +2 -4
  1291. data/src/core/lib/security/authorization/matchers.h +2 -4
  1292. data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
  1293. data/src/core/lib/security/authorization/rbac_policy.h +3 -5
  1294. data/src/core/lib/security/authorization/stdout_logger.cc +4 -4
  1295. data/src/core/lib/security/authorization/stdout_logger.h +4 -4
  1296. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +6 -7
  1297. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +2 -2
  1298. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +2 -3
  1299. data/src/core/lib/security/context/security_context.cc +6 -8
  1300. data/src/core/lib/security/context/security_context.h +16 -10
  1301. data/src/core/lib/security/credentials/alts/alts_credentials.cc +5 -5
  1302. data/src/core/lib/security/credentials/alts/alts_credentials.h +8 -4
  1303. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +2 -3
  1304. data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +1 -2
  1305. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +1 -2
  1306. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +3 -4
  1307. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +1 -2
  1308. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +2 -2
  1309. data/src/core/lib/security/credentials/call_creds_util.cc +6 -5
  1310. data/src/core/lib/security/credentials/call_creds_util.h +2 -2
  1311. data/src/core/lib/security/credentials/channel_creds_registry.h +5 -6
  1312. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +10 -11
  1313. data/src/core/lib/security/credentials/composite/composite_credentials.cc +3 -4
  1314. data/src/core/lib/security/credentials/composite/composite_credentials.h +8 -9
  1315. data/src/core/lib/security/credentials/credentials.cc +1 -4
  1316. data/src/core/lib/security/credentials/credentials.h +11 -12
  1317. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +10 -12
  1318. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +7 -6
  1319. data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
  1320. data/src/core/lib/security/credentials/external/aws_request_signer.h +3 -3
  1321. data/src/core/lib/security/credentials/external/external_account_credentials.cc +15 -16
  1322. data/src/core/lib/security/credentials/external/external_account_credentials.h +5 -7
  1323. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +6 -7
  1324. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +6 -5
  1325. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +8 -10
  1326. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +8 -7
  1327. data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
  1328. data/src/core/lib/security/credentials/fake/fake_credentials.h +6 -7
  1329. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +5 -6
  1330. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +7 -7
  1331. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +3 -4
  1332. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +18 -21
  1333. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +7 -5
  1334. data/src/core/lib/security/credentials/iam/iam_credentials.cc +2 -4
  1335. data/src/core/lib/security/credentials/iam/iam_credentials.h +5 -6
  1336. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
  1337. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +2 -2
  1338. data/src/core/lib/security/credentials/jwt/json_token.cc +11 -14
  1339. data/src/core/lib/security/credentials/jwt/json_token.h +1 -2
  1340. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +8 -10
  1341. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +7 -9
  1342. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +19 -22
  1343. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +2 -3
  1344. data/src/core/lib/security/credentials/local/local_credentials.cc +2 -2
  1345. data/src/core/lib/security/credentials/local/local_credentials.h +2 -2
  1346. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +14 -16
  1347. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +12 -13
  1348. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +3 -4
  1349. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +9 -11
  1350. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +4 -6
  1351. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +4 -6
  1352. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +3 -3
  1353. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +4 -5
  1354. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +1 -3
  1355. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +79 -9
  1356. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +13 -11
  1357. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +4 -6
  1358. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +8 -9
  1359. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +4 -5
  1360. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +1 -1
  1361. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +3 -5
  1362. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +8 -10
  1363. data/src/core/lib/security/credentials/tls/tls_credentials.cc +6 -7
  1364. data/src/core/lib/security/credentials/tls/tls_credentials.h +5 -3
  1365. data/src/core/lib/security/credentials/tls/tls_utils.cc +1 -2
  1366. data/src/core/lib/security/credentials/tls/tls_utils.h +3 -3
  1367. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +29 -22
  1368. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +15 -10
  1369. data/src/core/lib/security/credentials/xds/xds_credentials.cc +2 -3
  1370. data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
  1371. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +9 -11
  1372. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +1 -1
  1373. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +9 -11
  1374. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +1 -1
  1375. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +4 -6
  1376. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
  1377. data/src/core/lib/security/security_connector/load_system_roots_supported.cc +5 -7
  1378. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +3 -4
  1379. data/src/core/lib/security/security_connector/local/local_security_connector.cc +17 -13
  1380. data/src/core/lib/security/security_connector/local/local_security_connector.h +1 -1
  1381. data/src/core/lib/security/security_connector/security_connector.cc +2 -4
  1382. data/src/core/lib/security/security_connector/security_connector.h +7 -8
  1383. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +6 -8
  1384. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +2 -3
  1385. data/src/core/lib/security/security_connector/ssl_utils.cc +12 -14
  1386. data/src/core/lib/security/security_connector/ssl_utils.h +7 -9
  1387. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +8 -10
  1388. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +7 -8
  1389. data/src/core/lib/security/transport/auth_filters.h +2 -3
  1390. data/src/core/lib/security/transport/client_auth_filter.cc +8 -10
  1391. data/src/core/lib/security/transport/server_auth_filter.cc +10 -11
  1392. data/src/core/lib/security/util/json_util.cc +4 -5
  1393. data/src/core/lib/slice/percent_encoding.cc +2 -4
  1394. data/src/core/lib/slice/slice.cc +4 -6
  1395. data/src/core/lib/slice/slice.h +5 -7
  1396. data/src/core/lib/slice/slice_buffer.cc +5 -6
  1397. data/src/core/lib/slice/slice_buffer.h +3 -4
  1398. data/src/core/lib/slice/slice_internal.h +3 -5
  1399. data/src/core/lib/slice/slice_refcount.h +2 -3
  1400. data/src/core/lib/slice/slice_string_helpers.h +1 -2
  1401. data/src/core/lib/surface/byte_buffer.cc +1 -2
  1402. data/src/core/lib/surface/byte_buffer_reader.cc +3 -5
  1403. data/src/core/lib/surface/call.cc +22 -24
  1404. data/src/core/lib/surface/call.h +6 -8
  1405. data/src/core/lib/surface/call_log_batch.cc +3 -5
  1406. data/src/core/lib/surface/call_test_only.h +1 -2
  1407. data/src/core/lib/surface/call_utils.cc +16 -59
  1408. data/src/core/lib/surface/call_utils.h +57 -19
  1409. data/src/core/lib/surface/channel.cc +1 -2
  1410. data/src/core/lib/surface/channel.h +11 -12
  1411. data/src/core/lib/surface/channel_create.cc +2 -3
  1412. data/src/core/lib/surface/channel_create.h +2 -3
  1413. data/src/core/lib/surface/channel_init.cc +4 -6
  1414. data/src/core/lib/surface/channel_init.h +4 -6
  1415. data/src/core/lib/surface/client_call.cc +66 -54
  1416. data/src/core/lib/surface/client_call.h +27 -19
  1417. data/src/core/lib/surface/completion_queue.cc +12 -14
  1418. data/src/core/lib/surface/completion_queue.h +4 -5
  1419. data/src/core/lib/surface/completion_queue_factory.cc +1 -2
  1420. data/src/core/lib/surface/connection_context.cc +77 -0
  1421. data/src/core/lib/surface/connection_context.h +156 -0
  1422. data/src/core/lib/surface/event_string.cc +2 -2
  1423. data/src/core/lib/surface/event_string.h +2 -2
  1424. data/src/core/lib/surface/filter_stack_call.cc +18 -20
  1425. data/src/core/lib/surface/filter_stack_call.h +16 -18
  1426. data/src/core/lib/surface/init.cc +28 -7
  1427. data/src/core/lib/surface/init.h +5 -0
  1428. data/src/core/lib/surface/lame_client.cc +10 -11
  1429. data/src/core/lib/surface/lame_client.h +4 -5
  1430. data/src/core/lib/surface/legacy_channel.cc +11 -12
  1431. data/src/core/lib/surface/legacy_channel.h +6 -7
  1432. data/src/core/lib/surface/metadata_array.cc +1 -2
  1433. data/src/core/lib/surface/server_call.cc +22 -18
  1434. data/src/core/lib/surface/server_call.h +19 -20
  1435. data/src/core/lib/surface/validate_metadata.cc +3 -4
  1436. data/src/core/lib/surface/validate_metadata.h +2 -4
  1437. data/src/core/lib/surface/version.cc +2 -2
  1438. data/src/core/lib/transport/bdp_estimator.cc +2 -3
  1439. data/src/core/lib/transport/bdp_estimator.h +3 -5
  1440. data/src/core/lib/transport/call_arena_allocator.cc +2 -2
  1441. data/src/core/lib/transport/call_arena_allocator.h +2 -3
  1442. data/src/core/lib/transport/call_destination.h +1 -1
  1443. data/src/core/lib/transport/call_filters.cc +5 -117
  1444. data/src/core/lib/transport/call_filters.h +402 -35
  1445. data/src/core/lib/transport/call_final_info.cc +2 -2
  1446. data/src/core/lib/transport/call_final_info.h +3 -3
  1447. data/src/core/lib/transport/call_spine.cc +1 -6
  1448. data/src/core/lib/transport/call_spine.h +29 -12
  1449. data/src/core/lib/transport/call_state.h +145 -41
  1450. data/src/core/lib/transport/connectivity_state.cc +3 -4
  1451. data/src/core/lib/transport/connectivity_state.h +5 -6
  1452. data/src/core/lib/transport/error_utils.cc +3 -4
  1453. data/src/core/lib/transport/error_utils.h +4 -5
  1454. data/src/core/lib/transport/interception_chain.cc +3 -3
  1455. data/src/core/lib/transport/interception_chain.h +17 -8
  1456. data/src/core/lib/transport/message.cc +2 -2
  1457. data/src/core/lib/transport/message.h +5 -0
  1458. data/src/core/lib/transport/metadata_batch.cc +12 -5
  1459. data/src/core/lib/transport/metadata_batch.h +17 -11
  1460. data/src/core/lib/transport/metadata_compression_traits.h +3 -4
  1461. data/src/core/lib/transport/parsed_metadata.h +3 -5
  1462. data/src/core/lib/transport/simple_slice_based_metadata.h +1 -2
  1463. data/src/core/lib/transport/status_conversion.h +1 -1
  1464. data/src/core/lib/transport/timeout_encoding.cc +7 -7
  1465. data/src/core/lib/transport/timeout_encoding.h +2 -4
  1466. data/src/core/lib/transport/transport.cc +4 -6
  1467. data/src/core/lib/transport/transport.h +7 -9
  1468. data/src/core/lib/transport/transport_framing_endpoint_extension.h +47 -0
  1469. data/src/core/lib/transport/transport_op_string.cc +4 -5
  1470. data/src/core/load_balancing/address_filtering.cc +2 -4
  1471. data/src/core/load_balancing/address_filtering.h +4 -5
  1472. data/src/core/load_balancing/backend_metric_data.h +2 -2
  1473. data/src/core/load_balancing/backend_metric_parser.cc +1 -2
  1474. data/src/core/load_balancing/backend_metric_parser.h +1 -3
  1475. data/src/core/load_balancing/child_policy_handler.cc +5 -6
  1476. data/src/core/load_balancing/child_policy_handler.h +4 -5
  1477. data/src/core/load_balancing/delegating_helper.h +6 -7
  1478. data/src/core/load_balancing/endpoint_list.cc +7 -9
  1479. data/src/core/load_balancing/endpoint_list.h +6 -8
  1480. data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +10 -4
  1481. data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +1 -2
  1482. data/src/core/load_balancing/grpclb/grpclb.cc +20 -22
  1483. data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +1 -2
  1484. data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +2 -3
  1485. data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -7
  1486. data/src/core/load_balancing/grpclb/load_balancer_api.cc +4 -6
  1487. data/src/core/load_balancing/grpclb/load_balancer_api.h +4 -6
  1488. data/src/core/load_balancing/health_check_client.cc +20 -20
  1489. data/src/core/load_balancing/health_check_client.h +3 -3
  1490. data/src/core/load_balancing/health_check_client_internal.h +8 -9
  1491. data/src/core/load_balancing/lb_policy.h +13 -15
  1492. data/src/core/load_balancing/lb_policy_factory.h +4 -5
  1493. data/src/core/load_balancing/lb_policy_registry.cc +3 -4
  1494. data/src/core/load_balancing/lb_policy_registry.h +4 -5
  1495. data/src/core/load_balancing/oob_backend_metric.cc +14 -16
  1496. data/src/core/load_balancing/oob_backend_metric.h +3 -3
  1497. data/src/core/load_balancing/oob_backend_metric_internal.h +8 -9
  1498. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +31 -26
  1499. data/src/core/load_balancing/outlier_detection/outlier_detection.h +3 -5
  1500. data/src/core/load_balancing/pick_first/pick_first.cc +28 -25
  1501. data/src/core/load_balancing/priority/priority.cc +12 -14
  1502. data/src/core/load_balancing/ring_hash/ring_hash.cc +13 -15
  1503. data/src/core/load_balancing/ring_hash/ring_hash.h +3 -4
  1504. data/src/core/load_balancing/rls/rls.cc +27 -29
  1505. data/src/core/load_balancing/round_robin/round_robin.cc +9 -15
  1506. data/src/core/load_balancing/subchannel_interface.h +13 -6
  1507. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +4 -4
  1508. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +2 -3
  1509. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +15 -19
  1510. data/src/core/load_balancing/weighted_target/weighted_target.cc +11 -13
  1511. data/src/core/load_balancing/xds/cds.cc +23 -20
  1512. data/src/core/load_balancing/xds/xds_cluster_impl.cc +42 -45
  1513. data/src/core/load_balancing/xds/xds_cluster_manager.cc +10 -12
  1514. data/src/core/load_balancing/xds/xds_override_host.cc +15 -17
  1515. data/src/core/load_balancing/xds/xds_override_host.h +3 -4
  1516. data/src/core/load_balancing/xds/xds_wrr_locality.cc +11 -12
  1517. data/src/core/plugin_registry/grpc_plugin_registry.cc +1 -7
  1518. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +3 -1
  1519. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +13 -16
  1520. data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +2 -3
  1521. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +4 -6
  1522. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -4
  1523. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +8 -11
  1524. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +15 -19
  1525. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +3 -6
  1526. data/src/core/resolver/dns/dns_resolver_plugin.cc +4 -5
  1527. data/src/core/resolver/dns/dns_resolver_plugin.h +1 -1
  1528. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +9 -11
  1529. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +3 -4
  1530. data/src/core/resolver/dns/event_engine/service_config_helper.cc +3 -5
  1531. data/src/core/resolver/dns/event_engine/service_config_helper.h +2 -2
  1532. data/src/core/resolver/dns/native/dns_resolver.cc +10 -11
  1533. data/src/core/resolver/dns/native/dns_resolver.h +1 -1
  1534. data/src/core/resolver/endpoint_addresses.cc +1 -3
  1535. data/src/core/resolver/endpoint_addresses.h +2 -3
  1536. data/src/core/resolver/fake/fake_resolver.cc +7 -8
  1537. data/src/core/resolver/fake/fake_resolver.h +7 -8
  1538. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +11 -12
  1539. data/src/core/resolver/polling_resolver.cc +6 -8
  1540. data/src/core/resolver/polling_resolver.h +7 -8
  1541. data/src/core/resolver/resolver.h +4 -5
  1542. data/src/core/resolver/resolver_factory.h +4 -5
  1543. data/src/core/resolver/resolver_registry.cc +2 -2
  1544. data/src/core/resolver/resolver_registry.h +4 -5
  1545. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +5 -6
  1546. data/src/core/resolver/xds/xds_config.cc +1 -2
  1547. data/src/core/resolver/xds/xds_config.h +1 -2
  1548. data/src/core/resolver/xds/xds_dependency_manager.cc +2 -5
  1549. data/src/core/resolver/xds/xds_dependency_manager.h +1 -2
  1550. data/src/core/resolver/xds/xds_resolver.cc +15 -17
  1551. data/src/core/resolver/xds/xds_resolver_attributes.h +2 -3
  1552. data/src/core/server/server.cc +97 -74
  1553. data/src/core/server/server.h +13 -16
  1554. data/src/core/server/server_call_tracer_filter.cc +11 -4
  1555. data/src/core/server/server_call_tracer_filter.h +1 -1
  1556. data/src/core/server/server_config_selector.h +5 -6
  1557. data/src/core/server/server_config_selector_filter.cc +8 -6
  1558. data/src/core/server/xds_channel_stack_modifier.cc +3 -3
  1559. data/src/core/server/xds_channel_stack_modifier.h +5 -6
  1560. data/src/core/server/xds_server_config_fetcher.cc +23 -24
  1561. data/src/core/service_config/service_config.h +3 -5
  1562. data/src/core/service_config/service_config_call_data.h +5 -6
  1563. data/src/core/service_config/service_config_channel_arg_filter.cc +8 -6
  1564. data/src/core/service_config/service_config_impl.cc +4 -6
  1565. data/src/core/service_config/service_config_impl.h +4 -6
  1566. data/src/core/service_config/service_config_parser.cc +1 -2
  1567. data/src/core/service_config/service_config_parser.h +2 -4
  1568. data/src/core/telemetry/call_tracer.cc +2 -3
  1569. data/src/core/telemetry/call_tracer.h +5 -6
  1570. data/src/core/telemetry/histogram_view.cc +3 -3
  1571. data/src/core/telemetry/histogram_view.h +1 -2
  1572. data/src/core/telemetry/metrics.cc +18 -16
  1573. data/src/core/telemetry/metrics.h +13 -10
  1574. data/src/core/telemetry/stats.cc +1 -2
  1575. data/src/core/telemetry/stats.h +2 -4
  1576. data/src/core/telemetry/stats_data.cc +114 -2
  1577. data/src/core/telemetry/stats_data.h +82 -4
  1578. data/src/core/telemetry/tcp_tracer.h +1 -2
  1579. data/src/core/tsi/alts/crypt/aes_gcm.cc +5 -8
  1580. data/src/core/tsi/alts/crypt/gsec.cc +2 -3
  1581. data/src/core/tsi/alts/crypt/gsec.h +3 -4
  1582. data/src/core/tsi/alts/frame_protector/alts_counter.cc +1 -2
  1583. data/src/core/tsi/alts/frame_protector/alts_counter.h +3 -4
  1584. data/src/core/tsi/alts/frame_protector/alts_crypter.cc +1 -2
  1585. data/src/core/tsi/alts/frame_protector/alts_crypter.h +2 -3
  1586. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +4 -5
  1587. data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +1 -2
  1588. data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +1 -1
  1589. data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -1
  1590. data/src/core/tsi/alts/frame_protector/frame_handler.cc +4 -6
  1591. data/src/core/tsi/alts/frame_protector/frame_handler.h +1 -2
  1592. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +11 -12
  1593. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +2 -3
  1594. data/src/core/tsi/alts/handshaker/alts_shared_resource.h +1 -1
  1595. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +19 -17
  1596. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +2 -3
  1597. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -2
  1598. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +3 -3
  1599. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +3 -5
  1600. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +1 -2
  1601. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +2 -3
  1602. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +1 -2
  1603. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +3 -5
  1604. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -4
  1605. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +1 -2
  1606. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +3 -5
  1607. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +1 -2
  1608. data/src/core/tsi/fake_transport_security.cc +4 -7
  1609. data/src/core/tsi/local_transport_security.cc +4 -6
  1610. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +4 -5
  1611. data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +8 -10
  1612. data/src/core/tsi/ssl/session_cache/ssl_session.h +4 -5
  1613. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +4 -5
  1614. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +7 -8
  1615. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -4
  1616. data/src/core/tsi/ssl_transport_security.cc +29 -17
  1617. data/src/core/tsi/ssl_transport_security.h +6 -8
  1618. data/src/core/tsi/ssl_transport_security_utils.cc +1 -3
  1619. data/src/core/tsi/ssl_transport_security_utils.h +3 -5
  1620. data/src/core/tsi/ssl_types.h +1 -2
  1621. data/src/core/tsi/transport_security.cc +2 -3
  1622. data/src/core/tsi/transport_security.h +1 -2
  1623. data/src/core/tsi/transport_security_interface.h +3 -4
  1624. data/src/core/util/alloc.cc +2 -5
  1625. data/src/core/util/atm.cc +1 -2
  1626. data/src/core/{lib/gprpp → util}/atomic_utils.h +5 -5
  1627. data/src/core/{lib/avl → util}/avl.h +6 -7
  1628. data/src/core/{lib/backoff → util}/backoff.cc +3 -1
  1629. data/src/core/{lib/backoff → util}/backoff.h +4 -5
  1630. data/src/core/{lib/gprpp → util}/bitset.h +4 -5
  1631. data/src/core/{lib/gprpp → util}/chunked_vector.h +6 -7
  1632. data/src/core/{lib/gprpp → util}/construct_destruct.h +8 -7
  1633. data/src/core/{lib/gprpp → util}/cpp_impl_of.h +3 -3
  1634. data/src/core/{lib/gprpp → util}/crash.cc +2 -3
  1635. data/src/core/{lib/gprpp → util}/crash.h +5 -6
  1636. data/src/core/{lib/gprpp → util}/debug_location.h +5 -5
  1637. data/src/core/{lib/gprpp → util}/directory_reader.h +5 -5
  1638. data/src/core/{lib/gprpp → util}/down_cast.h +7 -7
  1639. data/src/core/{lib/gprpp → util}/dual_ref_counted.h +10 -11
  1640. data/src/core/{lib/gprpp → util}/dump_args.cc +1 -1
  1641. data/src/core/{lib/gprpp → util}/dump_args.h +12 -7
  1642. data/src/core/{lib/gprpp → util}/env.h +5 -5
  1643. data/src/core/{lib/debug → util}/event_log.cc +3 -3
  1644. data/src/core/{lib/debug → util}/event_log.h +6 -8
  1645. data/src/core/{lib/gprpp → util}/examine_stack.cc +1 -1
  1646. data/src/core/{lib/gprpp → util}/examine_stack.h +5 -5
  1647. data/src/core/{lib/gprpp → util}/fork.cc +5 -5
  1648. data/src/core/{lib/gprpp → util}/fork.h +7 -7
  1649. data/src/core/util/gcp_metadata_query.cc +8 -11
  1650. data/src/core/util/gcp_metadata_query.h +2 -3
  1651. data/src/core/{lib/iomgr → util}/gethostname.h +3 -3
  1652. data/src/core/{lib/iomgr → util}/gethostname_fallback.cc +1 -1
  1653. data/src/core/{lib/iomgr → util}/gethostname_host_name_max.cc +2 -3
  1654. data/src/core/{lib/iomgr → util}/gethostname_sysconf.cc +2 -3
  1655. data/src/core/{lib/gprpp → util}/glob.h +3 -3
  1656. data/src/core/util/gpr_time.cc +268 -0
  1657. data/src/core/{lib/iomgr → util}/grpc_if_nametoindex.h +4 -5
  1658. data/src/core/{lib/iomgr → util}/grpc_if_nametoindex_posix.cc +2 -3
  1659. data/src/core/{lib/iomgr → util}/grpc_if_nametoindex_unsupported.cc +2 -3
  1660. data/src/core/{lib/gprpp → util}/host_port.cc +2 -3
  1661. data/src/core/{lib/gprpp → util}/host_port.h +5 -5
  1662. data/src/core/util/http_client/format_request.cc +2 -5
  1663. data/src/core/util/http_client/format_request.h +1 -2
  1664. data/src/core/util/http_client/httpcli.cc +19 -15
  1665. data/src/core/util/http_client/httpcli.h +8 -11
  1666. data/src/core/util/http_client/httpcli_security_connector.cc +9 -12
  1667. data/src/core/util/http_client/httpcli_ssl_credentials.h +2 -3
  1668. data/src/core/util/http_client/parser.cc +2 -4
  1669. data/src/core/util/http_client/parser.h +1 -3
  1670. data/src/core/{lib/gprpp → util}/if_list.h +3 -3
  1671. data/src/core/util/iphone/cpu.cc +1 -2
  1672. data/src/core/util/json/json.h +1 -2
  1673. data/src/core/util/json/json_channel_args.h +0 -1
  1674. data/src/core/util/json/json_object_loader.cc +3 -4
  1675. data/src/core/util/json/json_object_loader.h +8 -9
  1676. data/src/core/util/json/json_reader.cc +2 -5
  1677. data/src/core/util/json/json_reader.h +0 -1
  1678. data/src/core/util/json/json_util.cc +4 -4
  1679. data/src/core/util/json/json_util.h +1 -2
  1680. data/src/core/util/json/json_writer.cc +1 -3
  1681. data/src/core/util/latent_see.cc +99 -69
  1682. data/src/core/util/latent_see.h +45 -20
  1683. data/src/core/util/linux/cpu.cc +4 -6
  1684. data/src/core/{lib/gprpp → util}/linux/env.cc +3 -3
  1685. data/src/core/{lib/gprpp → util}/load_file.cc +4 -5
  1686. data/src/core/{lib/gprpp → util}/load_file.h +5 -6
  1687. data/src/core/util/log.cc +10 -13
  1688. data/src/core/util/lru_cache.h +27 -9
  1689. data/src/core/{lib/gprpp → util}/manual_constructor.h +5 -6
  1690. data/src/core/{lib/gprpp → util}/match.h +6 -7
  1691. data/src/core/{lib/matchers → util}/matchers.cc +10 -3
  1692. data/src/core/{lib/matchers → util}/matchers.h +9 -5
  1693. data/src/core/{lib/gprpp → util}/memory.h +6 -6
  1694. data/src/core/{lib/gprpp → util}/mpscq.cc +1 -1
  1695. data/src/core/{lib/gprpp → util}/mpscq.h +6 -7
  1696. data/src/core/util/msys/tmpfile.cc +3 -4
  1697. data/src/core/{lib/gprpp → util}/no_destruct.h +6 -6
  1698. data/src/core/{lib/gprpp → util}/notification.h +6 -7
  1699. data/src/core/{lib/gprpp → util}/orphanable.h +9 -9
  1700. data/src/core/{lib/gprpp → util}/overload.h +5 -5
  1701. data/src/core/{lib/gprpp → util}/packed_table.h +5 -5
  1702. data/src/core/{lib/gprpp → util}/per_cpu.cc +1 -1
  1703. data/src/core/{lib/gprpp → util}/per_cpu.h +5 -6
  1704. data/src/core/util/posix/cpu.cc +3 -5
  1705. data/src/core/{lib/gprpp → util}/posix/directory_reader.cc +4 -4
  1706. data/src/core/{lib/gprpp → util}/posix/env.cc +1 -1
  1707. data/src/core/{lib/gprpp → util}/posix/stat.cc +4 -5
  1708. data/src/core/util/posix/string.cc +2 -3
  1709. data/src/core/util/posix/sync.cc +3 -5
  1710. data/src/core/{lib/gprpp → util}/posix/thd.cc +8 -11
  1711. data/src/core/util/posix/time.cc +4 -5
  1712. data/src/core/util/posix/tmpfile.cc +4 -6
  1713. data/src/core/{lib/backoff → util}/random_early_detection.cc +3 -3
  1714. data/src/core/{lib/backoff → util}/random_early_detection.h +4 -5
  1715. data/src/core/{lib/gprpp → util}/ref_counted.h +9 -10
  1716. data/src/core/{lib/gprpp → util}/ref_counted_ptr.h +6 -8
  1717. data/src/core/{lib/gprpp → util}/ref_counted_string.cc +3 -4
  1718. data/src/core/{lib/gprpp → util}/ref_counted_string.h +6 -8
  1719. data/src/core/{lib/gprpp → util}/single_set_ptr.h +5 -5
  1720. data/src/core/{lib/gprpp → util}/sorted_pack.h +6 -6
  1721. data/src/core/util/spinlock.h +1 -2
  1722. data/src/core/{lib/gprpp → util}/stat.h +4 -5
  1723. data/src/core/{lib/gprpp → util}/status_helper.cc +5 -7
  1724. data/src/core/{lib/gprpp → util}/status_helper.h +5 -7
  1725. data/src/core/{lib/gprpp → util}/strerror.cc +2 -3
  1726. data/src/core/{lib/gprpp → util}/strerror.h +5 -5
  1727. data/src/core/util/string.cc +6 -9
  1728. data/src/core/util/string.h +1 -3
  1729. data/src/core/util/sync.cc +3 -5
  1730. data/src/core/{lib/gprpp → util}/sync.h +7 -7
  1731. data/src/core/util/sync_abseil.cc +5 -7
  1732. data/src/core/{lib/gprpp → util}/table.h +6 -8
  1733. data/src/core/{lib/gprpp → util}/tchar.cc +1 -1
  1734. data/src/core/{lib/gprpp → util}/tchar.h +3 -3
  1735. data/src/core/{lib/gprpp → util}/thd.h +5 -6
  1736. data/src/core/util/time.cc +174 -204
  1737. data/src/core/{lib/gprpp → util}/time.h +16 -10
  1738. data/src/core/{lib/gprpp → util}/time_averaged_stats.cc +1 -1
  1739. data/src/core/{lib/gprpp → util}/time_averaged_stats.h +3 -3
  1740. data/src/core/util/time_precise.cc +3 -4
  1741. data/src/core/util/time_precise.h +0 -1
  1742. data/src/core/{lib/gprpp → util}/time_util.cc +3 -4
  1743. data/src/core/{lib/gprpp → util}/time_util.h +5 -5
  1744. data/src/core/util/tmpfile.h +0 -1
  1745. data/src/core/{lib/gprpp → util}/type_list.h +3 -3
  1746. data/src/core/{lib/gprpp → util}/unique_type_name.h +5 -6
  1747. data/src/core/{lib/uri/uri_parser.cc → util/uri.cc} +12 -7
  1748. data/src/core/{lib/uri/uri_parser.h → util/uri.h} +10 -6
  1749. data/src/core/{lib/gprpp → util}/uuid_v4.cc +3 -3
  1750. data/src/core/{lib/gprpp → util}/uuid_v4.h +4 -5
  1751. data/src/core/{lib/gprpp → util}/validation_errors.cc +2 -3
  1752. data/src/core/{lib/gprpp → util}/validation_errors.h +4 -5
  1753. data/src/core/util/windows/cpu.cc +1 -1
  1754. data/src/core/{lib/gprpp → util}/windows/directory_reader.cc +1 -1
  1755. data/src/core/{lib/gprpp → util}/windows/env.cc +2 -2
  1756. data/src/core/{lib/gprpp → util}/windows/stat.cc +3 -4
  1757. data/src/core/util/windows/string.cc +2 -3
  1758. data/src/core/util/windows/string_util.cc +5 -7
  1759. data/src/core/util/windows/sync.cc +2 -3
  1760. data/src/core/{lib/gprpp → util}/windows/thd.cc +6 -8
  1761. data/src/core/util/windows/time.cc +2 -4
  1762. data/src/core/util/windows/tmpfile.cc +4 -5
  1763. data/src/core/{lib/gprpp → util}/work_serializer.cc +7 -12
  1764. data/src/core/{lib/gprpp → util}/work_serializer.h +8 -9
  1765. data/src/core/{lib/gprpp → util}/xxhash_inline.h +3 -3
  1766. data/src/core/xds/grpc/certificate_provider_store.cc +3 -4
  1767. data/src/core/xds/grpc/certificate_provider_store.h +9 -10
  1768. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +4 -5
  1769. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +6 -7
  1770. data/src/core/xds/grpc/xds_audit_logger_registry.cc +4 -5
  1771. data/src/core/xds/grpc/xds_audit_logger_registry.h +3 -4
  1772. data/src/core/xds/grpc/xds_bootstrap_grpc.cc +4 -5
  1773. data/src/core/xds/grpc/xds_bootstrap_grpc.h +4 -4
  1774. data/src/core/xds/grpc/xds_certificate_provider.cc +2 -3
  1775. data/src/core/xds/grpc/xds_certificate_provider.h +8 -9
  1776. data/src/core/xds/grpc/xds_client_grpc.cc +63 -39
  1777. data/src/core/xds/grpc/xds_client_grpc.h +14 -8
  1778. data/src/core/xds/grpc/xds_cluster.cc +9 -4
  1779. data/src/core/xds/grpc/xds_cluster.h +30 -4
  1780. data/src/core/xds/grpc/xds_cluster_parser.cc +106 -26
  1781. data/src/core/xds/grpc/xds_cluster_parser.h +6 -2
  1782. data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +5 -7
  1783. data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +5 -6
  1784. data/src/core/xds/grpc/xds_common_types.cc +1 -2
  1785. data/src/core/xds/grpc/xds_common_types.h +2 -3
  1786. data/src/core/xds/grpc/xds_common_types_parser.cc +45 -9
  1787. data/src/core/xds/grpc/xds_common_types_parser.h +8 -3
  1788. data/src/core/xds/grpc/xds_endpoint.h +7 -5
  1789. data/src/core/xds/grpc/xds_endpoint_parser.cc +45 -40
  1790. data/src/core/xds/grpc/xds_endpoint_parser.h +1 -2
  1791. data/src/core/xds/grpc/xds_health_status.h +0 -1
  1792. data/src/core/xds/grpc/xds_http_fault_filter.cc +5 -7
  1793. data/src/core/xds/grpc/xds_http_fault_filter.h +4 -5
  1794. data/src/core/xds/grpc/xds_http_filter.h +2 -3
  1795. data/src/core/xds/grpc/xds_http_filter_registry.cc +2 -3
  1796. data/src/core/xds/grpc/xds_http_filter_registry.h +2 -3
  1797. data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +5 -6
  1798. data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +2 -3
  1799. data/src/core/xds/grpc/xds_http_rbac_filter.cc +42 -39
  1800. data/src/core/xds/grpc/xds_http_rbac_filter.h +4 -5
  1801. data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +5 -6
  1802. data/src/core/xds/grpc/xds_http_stateful_session_filter.h +4 -5
  1803. data/src/core/xds/grpc/xds_lb_policy_registry.cc +5 -7
  1804. data/src/core/xds/grpc/xds_lb_policy_registry.h +4 -5
  1805. data/src/core/xds/grpc/xds_listener.cc +1 -2
  1806. data/src/core/xds/grpc/xds_listener.h +1 -2
  1807. data/src/core/xds/grpc/xds_listener_parser.cc +5 -8
  1808. data/src/core/xds/grpc/xds_listener_parser.h +1 -2
  1809. data/src/core/xds/grpc/xds_metadata.h +26 -3
  1810. data/src/core/xds/grpc/xds_metadata_parser.cc +51 -10
  1811. data/src/core/xds/grpc/xds_metadata_parser.h +1 -2
  1812. data/src/core/xds/grpc/xds_route_config.cc +3 -3
  1813. data/src/core/xds/grpc/xds_route_config.h +2 -3
  1814. data/src/core/xds/grpc/xds_route_config_parser.cc +11 -13
  1815. data/src/core/xds/grpc/xds_route_config_parser.h +4 -7
  1816. data/src/core/xds/grpc/xds_routing.cc +2 -4
  1817. data/src/core/xds/grpc/xds_routing.h +1 -3
  1818. data/src/core/xds/grpc/xds_server_grpc.cc +1 -2
  1819. data/src/core/xds/grpc/xds_server_grpc.h +2 -2
  1820. data/src/core/xds/grpc/xds_transport_grpc.cc +95 -50
  1821. data/src/core/xds/grpc/xds_transport_grpc.h +33 -22
  1822. data/src/core/xds/xds_client/lrs_client.cc +1292 -0
  1823. data/src/core/xds/xds_client/lrs_client.h +394 -0
  1824. data/src/core/xds/xds_client/xds_api.cc +31 -245
  1825. data/src/core/xds/xds_client/xds_api.h +13 -36
  1826. data/src/core/xds/xds_client/xds_backend_metric_propagation.cc +63 -0
  1827. data/src/core/xds/xds_client/xds_backend_metric_propagation.h +59 -0
  1828. data/src/core/xds/xds_client/xds_bootstrap.cc +2 -3
  1829. data/src/core/xds/xds_client/xds_bootstrap.h +2 -2
  1830. data/src/core/xds/xds_client/xds_client.cc +57 -595
  1831. data/src/core/xds/xds_client/xds_client.h +33 -86
  1832. data/src/core/xds/xds_client/xds_locality.h +102 -0
  1833. data/src/core/xds/xds_client/xds_metrics.h +2 -2
  1834. data/src/core/xds/xds_client/xds_resource_type.h +4 -5
  1835. data/src/core/xds/xds_client/xds_resource_type_impl.h +3 -4
  1836. data/src/core/xds/xds_client/xds_transport.h +29 -14
  1837. data/src/ruby/ext/grpc/extconf.rb +1 -1
  1838. data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -3
  1839. data/src/ruby/ext/grpc/rb_call.c +5 -5
  1840. data/src/ruby/ext/grpc/rb_call_credentials.c +5 -6
  1841. data/src/ruby/ext/grpc/rb_channel.c +6 -7
  1842. data/src/ruby/ext/grpc/rb_channel_args.c +3 -3
  1843. data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -6
  1844. data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -2
  1845. data/src/ruby/ext/grpc/rb_completion_queue.c +3 -4
  1846. data/src/ruby/ext/grpc/rb_compression_options.c +6 -7
  1847. data/src/ruby/ext/grpc/rb_event_thread.c +4 -5
  1848. data/src/ruby/ext/grpc/rb_grpc.c +3 -4
  1849. data/src/ruby/ext/grpc/rb_grpc.h +2 -3
  1850. data/src/ruby/ext/grpc/rb_server.c +6 -6
  1851. data/src/ruby/ext/grpc/rb_server_credentials.c +3 -3
  1852. data/src/ruby/ext/grpc/rb_server_credentials.h +1 -2
  1853. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -6
  1854. data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
  1855. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +4 -4
  1856. data/src/ruby/ext/grpc/rb_xds_server_credentials.h +1 -2
  1857. data/src/ruby/lib/grpc/version.rb +1 -1
  1858. data/src/ruby/spec/generic/client_stub_spec.rb +20 -20
  1859. data/third_party/abseil-cpp/absl/algorithm/container.h +57 -18
  1860. data/third_party/abseil-cpp/absl/base/attributes.h +84 -0
  1861. data/third_party/abseil-cpp/absl/base/config.h +32 -51
  1862. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +0 -16
  1863. data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +3 -1
  1864. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +13 -3
  1865. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -12
  1866. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +4 -4
  1867. data/third_party/abseil-cpp/absl/base/macros.h +48 -0
  1868. data/third_party/abseil-cpp/absl/base/no_destructor.h +35 -40
  1869. data/third_party/abseil-cpp/absl/base/nullability.h +33 -7
  1870. data/third_party/abseil-cpp/absl/base/optimization.h +11 -0
  1871. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  1872. data/third_party/abseil-cpp/absl/base/prefetch.h +1 -1
  1873. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +68 -12
  1874. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +60 -6
  1875. data/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
  1876. data/third_party/abseil-cpp/absl/container/inlined_vector.h +13 -0
  1877. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +20 -11
  1878. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +15 -16
  1879. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +34 -1
  1880. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +68 -1
  1881. data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +50 -0
  1882. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +22 -7
  1883. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +26 -8
  1884. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +39 -35
  1885. data/third_party/abseil-cpp/absl/container/internal/layout.h +190 -74
  1886. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +8 -6
  1887. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +334 -71
  1888. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1299 -458
  1889. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +19 -17
  1890. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +4 -3
  1891. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +2 -1
  1892. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +12 -8
  1893. data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +1 -1
  1894. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +11 -7
  1895. data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +18 -17
  1896. data/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
  1897. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
  1898. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
  1899. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1057 -86
  1900. data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +3 -0
  1901. data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
  1902. data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +42 -0
  1903. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +43 -16
  1904. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +8 -7
  1905. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +10 -7
  1906. data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
  1907. data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
  1908. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +11 -0
  1909. data/third_party/abseil-cpp/absl/flags/flag.h +2 -0
  1910. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +117 -30
  1911. data/third_party/abseil-cpp/absl/flags/internal/flag.h +192 -30
  1912. data/third_party/abseil-cpp/absl/flags/reflection.cc +10 -0
  1913. data/third_party/abseil-cpp/absl/functional/any_invocable.h +13 -3
  1914. data/third_party/abseil-cpp/absl/functional/bind_front.h +3 -2
  1915. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +7 -7
  1916. data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +9 -9
  1917. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +1 -1
  1918. data/third_party/abseil-cpp/absl/hash/internal/hash.h +13 -3
  1919. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +60 -28
  1920. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +4 -0
  1921. data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +3 -3
  1922. data/third_party/abseil-cpp/absl/log/globals.h +28 -15
  1923. data/third_party/abseil-cpp/absl/log/internal/check_op.cc +20 -0
  1924. data/third_party/abseil-cpp/absl/log/internal/check_op.h +63 -21
  1925. data/third_party/abseil-cpp/absl/log/internal/conditions.h +2 -2
  1926. data/third_party/abseil-cpp/absl/log/internal/log_impl.h +23 -23
  1927. data/third_party/abseil-cpp/absl/log/internal/log_message.cc +104 -47
  1928. data/third_party/abseil-cpp/absl/log/internal/log_message.h +23 -4
  1929. data/third_party/abseil-cpp/absl/log/internal/nullstream.h +1 -10
  1930. data/third_party/abseil-cpp/absl/log/internal/strip.h +36 -0
  1931. data/third_party/abseil-cpp/absl/log/log.h +5 -1
  1932. data/third_party/abseil-cpp/absl/log/log_sink.h +11 -4
  1933. data/third_party/abseil-cpp/absl/log/vlog_is_on.h +3 -3
  1934. data/third_party/abseil-cpp/absl/meta/type_traits.h +138 -42
  1935. data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -3
  1936. data/third_party/abseil-cpp/absl/numeric/int128.h +35 -5
  1937. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +14 -0
  1938. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +18 -0
  1939. data/third_party/abseil-cpp/absl/numeric/internal/bits.h +6 -2
  1940. data/third_party/abseil-cpp/absl/random/beta_distribution.h +8 -8
  1941. data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +9 -7
  1942. data/third_party/abseil-cpp/absl/random/distributions.h +11 -11
  1943. data/third_party/abseil-cpp/absl/random/seed_sequences.h +2 -0
  1944. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +61 -2
  1945. data/third_party/abseil-cpp/absl/status/status.cc +0 -4
  1946. data/third_party/abseil-cpp/absl/status/status.h +4 -4
  1947. data/third_party/abseil-cpp/absl/status/statusor.h +108 -142
  1948. data/third_party/abseil-cpp/absl/strings/ascii.cc +32 -71
  1949. data/third_party/abseil-cpp/absl/strings/cord.cc +20 -15
  1950. data/third_party/abseil-cpp/absl/strings/cord.h +68 -7
  1951. data/third_party/abseil-cpp/absl/strings/escaping.cc +96 -21
  1952. data/third_party/abseil-cpp/absl/strings/escaping.h +25 -8
  1953. data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +1 -0
  1954. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +10 -0
  1955. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +29 -9
  1956. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +2 -2
  1957. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +19 -13
  1958. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +23 -13
  1959. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +24 -24
  1960. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +12 -7
  1961. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +9 -4
  1962. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +5 -2
  1963. data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +23 -2
  1964. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +5 -1
  1965. data/third_party/abseil-cpp/absl/strings/numbers.cc +107 -333
  1966. data/third_party/abseil-cpp/absl/strings/numbers.h +12 -151
  1967. data/third_party/abseil-cpp/absl/strings/str_cat.cc +49 -142
  1968. data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -85
  1969. data/third_party/abseil-cpp/absl/strings/str_format.h +1 -1
  1970. data/third_party/abseil-cpp/absl/strings/str_join.h +19 -5
  1971. data/third_party/abseil-cpp/absl/strings/str_split.h +2 -2
  1972. data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
  1973. data/third_party/abseil-cpp/absl/strings/substitute.cc +4 -0
  1974. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -2
  1975. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +5 -0
  1976. data/third_party/abseil-cpp/absl/synchronization/mutex.h +5 -4
  1977. data/third_party/abseil-cpp/absl/time/civil_time.h +2 -2
  1978. data/third_party/abseil-cpp/absl/time/clock.cc +15 -1
  1979. data/third_party/abseil-cpp/absl/time/duration.cc +58 -53
  1980. data/third_party/abseil-cpp/absl/time/format.cc +2 -1
  1981. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
  1982. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +0 -29
  1983. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
  1984. data/third_party/abseil-cpp/absl/time/time.h +73 -29
  1985. data/third_party/abseil-cpp/absl/types/compare.h +505 -0
  1986. data/third_party/abseil-cpp/absl/types/internal/optional.h +2 -2
  1987. data/third_party/abseil-cpp/absl/types/internal/variant.h +55 -67
  1988. data/third_party/abseil-cpp/absl/types/optional.h +15 -18
  1989. data/third_party/abseil-cpp/absl/types/span.h +3 -2
  1990. data/third_party/abseil-cpp/absl/types/variant.h +19 -24
  1991. data/third_party/abseil-cpp/absl/utility/utility.h +3 -41
  1992. data/third_party/upb/upb/json/decode.c +59 -13
  1993. data/third_party/upb/upb/json/decode.h +26 -3
  1994. data/third_party/upb/upb/json/encode.c +2 -2
  1995. data/third_party/upb/upb/lex/round_trip.c +10 -0
  1996. data/third_party/upb/upb/mem/arena.c +13 -2
  1997. data/third_party/upb/upb/mem/arena.h +9 -0
  1998. data/third_party/upb/upb/mem/arena.hpp +5 -1
  1999. data/third_party/upb/upb/message/accessors.c +2 -4
  2000. data/third_party/upb/upb/message/accessors.h +178 -379
  2001. data/third_party/upb/upb/message/copy.c +11 -7
  2002. data/third_party/upb/upb/message/internal/accessors.h +578 -26
  2003. data/third_party/upb/upb/message/internal/extension.c +1 -0
  2004. data/third_party/upb/upb/message/internal/message.c +13 -14
  2005. data/third_party/upb/upb/message/internal/message.h +8 -7
  2006. data/third_party/upb/upb/message/merge.c +38 -0
  2007. data/third_party/upb/upb/message/merge.h +26 -0
  2008. data/third_party/upb/upb/message/message.h +6 -10
  2009. data/third_party/upb/upb/message/value.h +26 -0
  2010. data/third_party/upb/upb/mini_descriptor/decode.c +7 -2
  2011. data/third_party/upb/upb/mini_descriptor/link.c +7 -3
  2012. data/third_party/upb/upb/mini_table/extension_registry.c +18 -0
  2013. data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
  2014. data/third_party/upb/upb/mini_table/internal/extension.h +9 -0
  2015. data/third_party/upb/upb/mini_table/internal/message.c +21 -1
  2016. data/third_party/upb/upb/mini_table/internal/message.h +40 -20
  2017. data/third_party/upb/upb/mini_table/internal/sub.h +5 -0
  2018. data/third_party/upb/upb/mini_table/message.h +11 -1
  2019. data/third_party/upb/upb/port/def.inc +99 -9
  2020. data/third_party/upb/upb/port/undef.inc +7 -0
  2021. data/third_party/upb/upb/reflection/common.h +1 -11
  2022. data/third_party/upb/upb/reflection/def.hpp +8 -0
  2023. data/third_party/upb/upb/reflection/descriptor_bootstrap.h +19 -0
  2024. data/third_party/upb/upb/reflection/field_def.c +11 -22
  2025. data/third_party/upb/upb/reflection/field_def.h +1 -0
  2026. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
  2027. data/third_party/upb/upb/reflection/message.c +8 -3
  2028. data/third_party/upb/upb/reflection/message.h +2 -2
  2029. data/third_party/upb/upb/text/encode.c +51 -394
  2030. data/third_party/upb/upb/text/encode.h +1 -11
  2031. data/third_party/upb/upb/text/internal/encode.c +180 -0
  2032. data/third_party/upb/upb/text/internal/encode.h +240 -0
  2033. data/third_party/upb/upb/text/options.h +22 -0
  2034. data/third_party/upb/upb/wire/decode.c +71 -39
  2035. data/third_party/upb/upb/wire/decode.h +4 -1
  2036. data/third_party/upb/upb/wire/encode.c +41 -18
  2037. data/third_party/upb/upb/wire/encode.h +3 -0
  2038. data/third_party/upb/upb/wire/internal/decode_fast.c +3 -0
  2039. metadata +142 -109
  2040. data/src/core/lib/gprpp/time.cc +0 -241
  2041. data/src/core/resolver/binder/binder_resolver.cc +0 -153
  2042. data/src/core/xds/xds_client/xds_client_stats.cc +0 -164
  2043. data/src/core/xds/xds_client/xds_client_stats.h +0 -258
  2044. data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
  2045. /data/src/core/{lib/gprpp → util}/glob.cc +0 -0
@@ -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
 
@@ -230,6 +232,7 @@ UPB_INLINE void google_protobuf_FileDescriptorSet_clear_file(google_protobuf_Fil
230
232
  }
231
233
  UPB_INLINE const google_protobuf_FileDescriptorProto* const* google_protobuf_FileDescriptorSet_file(const google_protobuf_FileDescriptorSet* msg, size_t* size) {
232
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);
233
236
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
234
237
  if (arr) {
235
238
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -241,6 +244,7 @@ UPB_INLINE const google_protobuf_FileDescriptorProto* const* google_protobuf_Fil
241
244
  }
242
245
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorSet_file_upb_array(const google_protobuf_FileDescriptorSet* msg, size_t* size) {
243
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);
244
248
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
245
249
  if (size) {
246
250
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -249,6 +253,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorSet_file_upb_array(co
249
253
  }
250
254
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorSet_file_mutable_upb_array(google_protobuf_FileDescriptorSet* msg, size_t* size, upb_Arena* arena) {
251
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);
252
257
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
253
258
  &field, arena);
254
259
  if (size) {
@@ -259,6 +264,7 @@ UPB_INLINE upb_Array* _google_protobuf_FileDescriptorSet_file_mutable_upb_array(
259
264
 
260
265
  UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorSet_mutable_file(google_protobuf_FileDescriptorSet* msg, size_t* size) {
261
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);
262
268
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
263
269
  if (arr) {
264
270
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -275,6 +281,7 @@ UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorS
275
281
  }
276
282
  UPB_INLINE struct google_protobuf_FileDescriptorProto* google_protobuf_FileDescriptorSet_add_file(google_protobuf_FileDescriptorSet* msg, upb_Arena* arena) {
277
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);
278
285
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
279
286
  UPB_UPCAST(msg), &field, arena);
280
287
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -394,6 +401,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_message_type(google_pr
394
401
  }
395
402
  UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDescriptorProto_message_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
396
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);
397
405
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
398
406
  if (arr) {
399
407
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -405,6 +413,7 @@ UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDes
405
413
  }
406
414
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_message_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
407
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);
408
417
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
409
418
  if (size) {
410
419
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -413,6 +422,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_message_type_up
413
422
  }
414
423
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_message_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
415
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);
416
426
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
417
427
  &field, arena);
418
428
  if (size) {
@@ -426,6 +436,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_enum_type(google_proto
426
436
  }
427
437
  UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_FileDescriptorProto_enum_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
428
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);
429
440
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
430
441
  if (arr) {
431
442
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -437,6 +448,7 @@ UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_Fil
437
448
  }
438
449
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_enum_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
439
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);
440
452
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
441
453
  if (size) {
442
454
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -445,6 +457,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_enum_type_upb_a
445
457
  }
446
458
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_enum_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
447
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);
448
461
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
449
462
  &field, arena);
450
463
  if (size) {
@@ -458,6 +471,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_service(google_protobu
458
471
  }
459
472
  UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_FileDescriptorProto_service(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
460
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);
461
475
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
462
476
  if (arr) {
463
477
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -469,6 +483,7 @@ UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_
469
483
  }
470
484
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_service_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
471
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);
472
487
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
473
488
  if (size) {
474
489
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -477,6 +492,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_service_upb_arr
477
492
  }
478
493
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_service_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
479
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);
480
496
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
481
497
  &field, arena);
482
498
  if (size) {
@@ -490,6 +506,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_extension(google_proto
490
506
  }
491
507
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_FileDescriptorProto_extension(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
492
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);
493
510
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
494
511
  if (arr) {
495
512
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -501,6 +518,7 @@ UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_Fi
501
518
  }
502
519
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_extension_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
503
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);
504
522
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
505
523
  if (size) {
506
524
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -509,6 +527,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_extension_upb_a
509
527
  }
510
528
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_extension_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
511
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);
512
531
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
513
532
  &field, arena);
514
533
  if (size) {
@@ -524,6 +543,7 @@ UPB_INLINE const google_protobuf_FileOptions* google_protobuf_FileDescriptorProt
524
543
  const google_protobuf_FileOptions* default_val = NULL;
525
544
  const google_protobuf_FileOptions* ret;
526
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);
527
547
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
528
548
  &default_val, &ret);
529
549
  return ret;
@@ -540,6 +560,7 @@ UPB_INLINE const google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorP
540
560
  const google_protobuf_SourceCodeInfo* default_val = NULL;
541
561
  const google_protobuf_SourceCodeInfo* ret;
542
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);
543
564
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
544
565
  &default_val, &ret);
545
566
  return ret;
@@ -683,6 +704,7 @@ UPB_INLINE bool google_protobuf_FileDescriptorProto_add_dependency(google_protob
683
704
  }
684
705
  UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_mutable_message_type(google_protobuf_FileDescriptorProto* msg, size_t* size) {
685
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);
686
708
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
687
709
  if (arr) {
688
710
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -699,6 +721,7 @@ UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto
699
721
  }
700
722
  UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
701
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);
702
725
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
703
726
  UPB_UPCAST(msg), &field, arena);
704
727
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -713,6 +736,7 @@ UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescripto
713
736
  }
714
737
  UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_mutable_enum_type(google_protobuf_FileDescriptorProto* msg, size_t* size) {
715
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);
716
740
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
717
741
  if (arr) {
718
742
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -729,6 +753,7 @@ UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorP
729
753
  }
730
754
  UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
731
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);
732
757
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
733
758
  UPB_UPCAST(msg), &field, arena);
734
759
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -743,6 +768,7 @@ UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescr
743
768
  }
744
769
  UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_mutable_service(google_protobuf_FileDescriptorProto* msg, size_t* size) {
745
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);
746
772
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
747
773
  if (arr) {
748
774
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -759,6 +785,7 @@ UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescript
759
785
  }
760
786
  UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
761
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);
762
789
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
763
790
  UPB_UPCAST(msg), &field, arena);
764
791
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -773,6 +800,7 @@ UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDe
773
800
  }
774
801
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_mutable_extension(google_protobuf_FileDescriptorProto* msg, size_t* size) {
775
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);
776
804
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
777
805
  if (arr) {
778
806
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -789,6 +817,7 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptor
789
817
  }
790
818
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
791
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);
792
821
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
793
822
  UPB_UPCAST(msg), &field, arena);
794
823
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -803,6 +832,7 @@ UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDesc
803
832
  }
804
833
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_options(google_protobuf_FileDescriptorProto *msg, google_protobuf_FileOptions* value) {
805
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)};
835
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileOptions_msg_init);
806
836
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
807
837
  }
808
838
  UPB_INLINE struct google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_mutable_options(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
@@ -815,6 +845,7 @@ UPB_INLINE struct google_protobuf_FileOptions* google_protobuf_FileDescriptorPro
815
845
  }
816
846
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_source_code_info(google_protobuf_FileDescriptorProto *msg, google_protobuf_SourceCodeInfo* value) {
817
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)};
848
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo_msg_init);
818
849
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
819
850
  }
820
851
  UPB_INLINE struct google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_mutable_source_code_info(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
@@ -948,6 +979,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_field(google_protobuf_Desc
948
979
  }
949
980
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_field(const google_protobuf_DescriptorProto* msg, size_t* size) {
950
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);
951
983
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
952
984
  if (arr) {
953
985
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -959,6 +991,7 @@ UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_De
959
991
  }
960
992
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_field_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
961
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);
962
995
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
963
996
  if (size) {
964
997
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -967,6 +1000,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_field_upb_array(con
967
1000
  }
968
1001
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_field_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
969
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);
970
1004
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
971
1005
  &field, arena);
972
1006
  if (size) {
@@ -980,6 +1014,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_nested_type(google_protobu
980
1014
  }
981
1015
  UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_DescriptorProto_nested_type(const google_protobuf_DescriptorProto* msg, size_t* size) {
982
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);
983
1018
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
984
1019
  if (arr) {
985
1020
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -991,6 +1026,7 @@ UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_Descrip
991
1026
  }
992
1027
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_nested_type_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
993
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);
994
1030
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
995
1031
  if (size) {
996
1032
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -999,6 +1035,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_nested_type_upb_arr
999
1035
  }
1000
1036
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_nested_type_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1001
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);
1002
1039
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1003
1040
  &field, arena);
1004
1041
  if (size) {
@@ -1012,6 +1049,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_enum_type(google_protobuf_
1012
1049
  }
1013
1050
  UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_DescriptorProto_enum_type(const google_protobuf_DescriptorProto* msg, size_t* size) {
1014
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);
1015
1053
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1016
1054
  if (arr) {
1017
1055
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1023,6 +1061,7 @@ UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_Des
1023
1061
  }
1024
1062
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_enum_type_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1025
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);
1026
1065
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1027
1066
  if (size) {
1028
1067
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1031,6 +1070,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_enum_type_upb_array
1031
1070
  }
1032
1071
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_enum_type_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1033
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);
1034
1074
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1035
1075
  &field, arena);
1036
1076
  if (size) {
@@ -1044,6 +1084,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_extension_range(google_pro
1044
1084
  }
1045
1085
  UPB_INLINE const google_protobuf_DescriptorProto_ExtensionRange* const* google_protobuf_DescriptorProto_extension_range(const google_protobuf_DescriptorProto* msg, size_t* size) {
1046
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);
1047
1088
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1048
1089
  if (arr) {
1049
1090
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1055,6 +1096,7 @@ UPB_INLINE const google_protobuf_DescriptorProto_ExtensionRange* const* google_p
1055
1096
  }
1056
1097
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_range_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1057
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);
1058
1100
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1059
1101
  if (size) {
1060
1102
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1063,6 +1105,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_range_upb
1063
1105
  }
1064
1106
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_extension_range_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1065
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);
1066
1109
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1067
1110
  &field, arena);
1068
1111
  if (size) {
@@ -1076,6 +1119,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_extension(google_protobuf_
1076
1119
  }
1077
1120
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_extension(const google_protobuf_DescriptorProto* msg, size_t* size) {
1078
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);
1079
1123
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1080
1124
  if (arr) {
1081
1125
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1087,6 +1131,7 @@ UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_De
1087
1131
  }
1088
1132
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1089
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);
1090
1135
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1091
1136
  if (size) {
1092
1137
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1095,6 +1140,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_upb_array
1095
1140
  }
1096
1141
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_extension_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1097
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);
1098
1144
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1099
1145
  &field, arena);
1100
1146
  if (size) {
@@ -1110,6 +1156,7 @@ UPB_INLINE const google_protobuf_MessageOptions* google_protobuf_DescriptorProto
1110
1156
  const google_protobuf_MessageOptions* default_val = NULL;
1111
1157
  const google_protobuf_MessageOptions* ret;
1112
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);
1113
1160
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1114
1161
  &default_val, &ret);
1115
1162
  return ret;
@@ -1124,6 +1171,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_oneof_decl(google_protobuf
1124
1171
  }
1125
1172
  UPB_INLINE const google_protobuf_OneofDescriptorProto* const* google_protobuf_DescriptorProto_oneof_decl(const google_protobuf_DescriptorProto* msg, size_t* size) {
1126
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);
1127
1175
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1128
1176
  if (arr) {
1129
1177
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1135,6 +1183,7 @@ UPB_INLINE const google_protobuf_OneofDescriptorProto* const* google_protobuf_De
1135
1183
  }
1136
1184
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_oneof_decl_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1137
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);
1138
1187
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1139
1188
  if (size) {
1140
1189
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1143,6 +1192,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_oneof_decl_upb_arra
1143
1192
  }
1144
1193
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_oneof_decl_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1145
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);
1146
1196
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1147
1197
  &field, arena);
1148
1198
  if (size) {
@@ -1156,6 +1206,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_reserved_range(google_prot
1156
1206
  }
1157
1207
  UPB_INLINE const google_protobuf_DescriptorProto_ReservedRange* const* google_protobuf_DescriptorProto_reserved_range(const google_protobuf_DescriptorProto* msg, size_t* size) {
1158
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);
1159
1210
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1160
1211
  if (arr) {
1161
1212
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1167,6 +1218,7 @@ UPB_INLINE const google_protobuf_DescriptorProto_ReservedRange* const* google_pr
1167
1218
  }
1168
1219
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_reserved_range_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1169
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);
1170
1222
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1171
1223
  if (size) {
1172
1224
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1175,6 +1227,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_reserved_range_upb_
1175
1227
  }
1176
1228
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_reserved_range_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1177
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);
1178
1231
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1179
1232
  &field, arena);
1180
1233
  if (size) {
@@ -1221,6 +1274,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_set_name(google_protobuf_Descrip
1221
1274
  }
1222
1275
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_field(google_protobuf_DescriptorProto* msg, size_t* size) {
1223
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);
1224
1278
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1225
1279
  if (arr) {
1226
1280
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1237,6 +1291,7 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProt
1237
1291
  }
1238
1292
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_field(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1239
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);
1240
1295
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1241
1296
  UPB_UPCAST(msg), &field, arena);
1242
1297
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1251,6 +1306,7 @@ UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_Descript
1251
1306
  }
1252
1307
  UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_mutable_nested_type(google_protobuf_DescriptorProto* msg, size_t* size) {
1253
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);
1254
1310
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1255
1311
  if (arr) {
1256
1312
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1267,6 +1323,7 @@ UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_res
1267
1323
  }
1268
1324
  UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_DescriptorProto_add_nested_type(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1269
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);
1270
1327
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1271
1328
  UPB_UPCAST(msg), &field, arena);
1272
1329
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1281,6 +1338,7 @@ UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_DescriptorPro
1281
1338
  }
1282
1339
  UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto_mutable_enum_type(google_protobuf_DescriptorProto* msg, size_t* size) {
1283
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);
1284
1342
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1285
1343
  if (arr) {
1286
1344
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1297,6 +1355,7 @@ UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto
1297
1355
  }
1298
1356
  UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_DescriptorProto_add_enum_type(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1299
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);
1300
1359
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1301
1360
  UPB_UPCAST(msg), &field, arena);
1302
1361
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1311,6 +1370,7 @@ UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_Descripto
1311
1370
  }
1312
1371
  UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_DescriptorProto_mutable_extension_range(google_protobuf_DescriptorProto* msg, size_t* size) {
1313
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);
1314
1374
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1315
1375
  if (arr) {
1316
1376
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1327,6 +1387,7 @@ UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_Desc
1327
1387
  }
1328
1388
  UPB_INLINE struct google_protobuf_DescriptorProto_ExtensionRange* google_protobuf_DescriptorProto_add_extension_range(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1329
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);
1330
1391
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1331
1392
  UPB_UPCAST(msg), &field, arena);
1332
1393
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1341,6 +1402,7 @@ UPB_INLINE struct google_protobuf_DescriptorProto_ExtensionRange* google_protobu
1341
1402
  }
1342
1403
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_extension(google_protobuf_DescriptorProto* msg, size_t* size) {
1343
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);
1344
1406
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1345
1407
  if (arr) {
1346
1408
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1357,6 +1419,7 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProt
1357
1419
  }
1358
1420
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_extension(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1359
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);
1360
1423
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1361
1424
  UPB_UPCAST(msg), &field, arena);
1362
1425
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1371,6 +1434,7 @@ UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_Descript
1371
1434
  }
1372
1435
  UPB_INLINE void google_protobuf_DescriptorProto_set_options(google_protobuf_DescriptorProto *msg, google_protobuf_MessageOptions* value) {
1373
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)};
1437
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MessageOptions_msg_init);
1374
1438
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1375
1439
  }
1376
1440
  UPB_INLINE struct google_protobuf_MessageOptions* google_protobuf_DescriptorProto_mutable_options(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
@@ -1383,6 +1447,7 @@ UPB_INLINE struct google_protobuf_MessageOptions* google_protobuf_DescriptorProt
1383
1447
  }
1384
1448
  UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProto_mutable_oneof_decl(google_protobuf_DescriptorProto* msg, size_t* size) {
1385
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);
1386
1451
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1387
1452
  if (arr) {
1388
1453
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1399,6 +1464,7 @@ UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProt
1399
1464
  }
1400
1465
  UPB_INLINE struct google_protobuf_OneofDescriptorProto* google_protobuf_DescriptorProto_add_oneof_decl(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1401
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);
1402
1468
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1403
1469
  UPB_UPCAST(msg), &field, arena);
1404
1470
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1413,6 +1479,7 @@ UPB_INLINE struct google_protobuf_OneofDescriptorProto* google_protobuf_Descript
1413
1479
  }
1414
1480
  UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_DescriptorProto_mutable_reserved_range(google_protobuf_DescriptorProto* msg, size_t* size) {
1415
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);
1416
1483
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1417
1484
  if (arr) {
1418
1485
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1429,6 +1496,7 @@ UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_Descr
1429
1496
  }
1430
1497
  UPB_INLINE struct google_protobuf_DescriptorProto_ReservedRange* google_protobuf_DescriptorProto_add_reserved_range(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1431
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);
1432
1500
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1433
1501
  UPB_UPCAST(msg), &field, arena);
1434
1502
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1546,6 +1614,7 @@ UPB_INLINE const google_protobuf_ExtensionRangeOptions* google_protobuf_Descript
1546
1614
  const google_protobuf_ExtensionRangeOptions* default_val = NULL;
1547
1615
  const google_protobuf_ExtensionRangeOptions* ret;
1548
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);
1549
1618
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1550
1619
  &default_val, &ret);
1551
1620
  return ret;
@@ -1565,6 +1634,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_end(google_pr
1565
1634
  }
1566
1635
  UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_options(google_protobuf_DescriptorProto_ExtensionRange *msg, google_protobuf_ExtensionRangeOptions* value) {
1567
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)};
1637
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions_msg_init);
1568
1638
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1569
1639
  }
1570
1640
  UPB_INLINE struct google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_mutable_options(google_protobuf_DescriptorProto_ExtensionRange* msg, upb_Arena* arena) {
@@ -1696,6 +1766,7 @@ UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_declaration(google_p
1696
1766
  }
1697
1767
  UPB_INLINE const google_protobuf_ExtensionRangeOptions_Declaration* const* google_protobuf_ExtensionRangeOptions_declaration(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1698
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);
1699
1770
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1700
1771
  if (arr) {
1701
1772
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1707,6 +1778,7 @@ UPB_INLINE const google_protobuf_ExtensionRangeOptions_Declaration* const* googl
1707
1778
  }
1708
1779
  UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_upb_array(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1709
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);
1710
1782
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1711
1783
  if (size) {
1712
1784
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1715,6 +1787,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_u
1715
1787
  }
1716
1788
  UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_mutable_upb_array(google_protobuf_ExtensionRangeOptions* msg, size_t* size, upb_Arena* arena) {
1717
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);
1718
1791
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1719
1792
  &field, arena);
1720
1793
  if (size) {
@@ -1746,6 +1819,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_ExtensionRangeOptio
1746
1819
  const google_protobuf_FeatureSet* default_val = NULL;
1747
1820
  const google_protobuf_FeatureSet* ret;
1748
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);
1749
1823
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1750
1824
  &default_val, &ret);
1751
1825
  return ret;
@@ -1760,6 +1834,7 @@ UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_uninterpreted_option
1760
1834
  }
1761
1835
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ExtensionRangeOptions_uninterpreted_option(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1762
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);
1763
1838
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1764
1839
  if (arr) {
1765
1840
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1771,6 +1846,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Ext
1771
1846
  }
1772
1847
  UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_option_upb_array(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1773
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);
1774
1850
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1775
1851
  if (size) {
1776
1852
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1779,6 +1855,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted
1779
1855
  }
1780
1856
  UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_option_mutable_upb_array(google_protobuf_ExtensionRangeOptions* msg, size_t* size, upb_Arena* arena) {
1781
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);
1782
1859
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1783
1860
  &field, arena);
1784
1861
  if (size) {
@@ -1789,6 +1866,7 @@ UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_optio
1789
1866
 
1790
1867
  UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration** google_protobuf_ExtensionRangeOptions_mutable_declaration(google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1791
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);
1792
1870
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1793
1871
  if (arr) {
1794
1872
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1805,6 +1883,7 @@ UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration** google_protobuf_E
1805
1883
  }
1806
1884
  UPB_INLINE struct google_protobuf_ExtensionRangeOptions_Declaration* google_protobuf_ExtensionRangeOptions_add_declaration(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
1807
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);
1808
1887
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1809
1888
  UPB_UPCAST(msg), &field, arena);
1810
1889
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1823,6 +1902,7 @@ UPB_INLINE void google_protobuf_ExtensionRangeOptions_set_verification(google_pr
1823
1902
  }
1824
1903
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_set_features(google_protobuf_ExtensionRangeOptions *msg, google_protobuf_FeatureSet* value) {
1825
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)};
1905
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
1826
1906
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1827
1907
  }
1828
1908
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ExtensionRangeOptions_mutable_features(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
@@ -1835,6 +1915,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ExtensionRangeOpti
1835
1915
  }
1836
1916
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeOptions_mutable_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1837
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);
1838
1919
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1839
1920
  if (arr) {
1840
1921
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1851,6 +1932,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeO
1851
1932
  }
1852
1933
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ExtensionRangeOptions_add_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
1853
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);
1854
1936
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1855
1937
  UPB_UPCAST(msg), &field, arena);
1856
1938
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -2158,6 +2240,7 @@ UPB_INLINE const google_protobuf_FieldOptions* google_protobuf_FieldDescriptorPr
2158
2240
  const google_protobuf_FieldOptions* default_val = NULL;
2159
2241
  const google_protobuf_FieldOptions* ret;
2160
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);
2161
2244
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2162
2245
  &default_val, &ret);
2163
2246
  return ret;
@@ -2245,6 +2328,7 @@ UPB_INLINE void google_protobuf_FieldDescriptorProto_set_default_value(google_pr
2245
2328
  }
2246
2329
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_options(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldOptions* value) {
2247
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)};
2331
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions_msg_init);
2248
2332
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2249
2333
  }
2250
2334
  UPB_INLINE struct google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_mutable_options(google_protobuf_FieldDescriptorProto* msg, upb_Arena* arena) {
@@ -2328,6 +2412,7 @@ UPB_INLINE const google_protobuf_OneofOptions* google_protobuf_OneofDescriptorPr
2328
2412
  const google_protobuf_OneofOptions* default_val = NULL;
2329
2413
  const google_protobuf_OneofOptions* ret;
2330
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);
2331
2416
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2332
2417
  &default_val, &ret);
2333
2418
  return ret;
@@ -2343,6 +2428,7 @@ UPB_INLINE void google_protobuf_OneofDescriptorProto_set_name(google_protobuf_On
2343
2428
  }
2344
2429
  UPB_INLINE void google_protobuf_OneofDescriptorProto_set_options(google_protobuf_OneofDescriptorProto *msg, google_protobuf_OneofOptions* value) {
2345
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)};
2431
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofOptions_msg_init);
2346
2432
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2347
2433
  }
2348
2434
  UPB_INLINE struct google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_mutable_options(google_protobuf_OneofDescriptorProto* msg, upb_Arena* arena) {
@@ -2412,6 +2498,7 @@ UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_value(google_protobuf_
2412
2498
  }
2413
2499
  UPB_INLINE const google_protobuf_EnumValueDescriptorProto* const* google_protobuf_EnumDescriptorProto_value(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2414
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);
2415
2502
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2416
2503
  if (arr) {
2417
2504
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2423,6 +2510,7 @@ UPB_INLINE const google_protobuf_EnumValueDescriptorProto* const* google_protobu
2423
2510
  }
2424
2511
  UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_value_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2425
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);
2426
2514
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2427
2515
  if (size) {
2428
2516
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -2431,6 +2519,7 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_value_upb_array
2431
2519
  }
2432
2520
  UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_value_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) {
2433
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);
2434
2523
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
2435
2524
  &field, arena);
2436
2525
  if (size) {
@@ -2446,6 +2535,7 @@ UPB_INLINE const google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProt
2446
2535
  const google_protobuf_EnumOptions* default_val = NULL;
2447
2536
  const google_protobuf_EnumOptions* ret;
2448
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);
2449
2539
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2450
2540
  &default_val, &ret);
2451
2541
  return ret;
@@ -2460,6 +2550,7 @@ UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_reserved_range(google_
2460
2550
  }
2461
2551
  UPB_INLINE const google_protobuf_EnumDescriptorProto_EnumReservedRange* const* google_protobuf_EnumDescriptorProto_reserved_range(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2462
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);
2463
2554
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2464
2555
  if (arr) {
2465
2556
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2471,6 +2562,7 @@ UPB_INLINE const google_protobuf_EnumDescriptorProto_EnumReservedRange* const* g
2471
2562
  }
2472
2563
  UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2473
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);
2474
2566
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2475
2567
  if (size) {
2476
2568
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -2479,6 +2571,7 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_
2479
2571
  }
2480
2572
  UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) {
2481
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);
2482
2575
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
2483
2576
  &field, arena);
2484
2577
  if (size) {
@@ -2525,6 +2618,7 @@ UPB_INLINE void google_protobuf_EnumDescriptorProto_set_name(google_protobuf_Enu
2525
2618
  }
2526
2619
  UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_mutable_value(google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2527
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);
2528
2622
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
2529
2623
  if (arr) {
2530
2624
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2541,6 +2635,7 @@ UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescri
2541
2635
  }
2542
2636
  UPB_INLINE struct google_protobuf_EnumValueDescriptorProto* google_protobuf_EnumDescriptorProto_add_value(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
2543
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);
2544
2639
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
2545
2640
  UPB_UPCAST(msg), &field, arena);
2546
2641
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -2555,6 +2650,7 @@ UPB_INLINE struct google_protobuf_EnumValueDescriptorProto* google_protobuf_Enum
2555
2650
  }
2556
2651
  UPB_INLINE void google_protobuf_EnumDescriptorProto_set_options(google_protobuf_EnumDescriptorProto *msg, google_protobuf_EnumOptions* value) {
2557
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)};
2653
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumOptions_msg_init);
2558
2654
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2559
2655
  }
2560
2656
  UPB_INLINE struct google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_mutable_options(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
@@ -2567,6 +2663,7 @@ UPB_INLINE struct google_protobuf_EnumOptions* google_protobuf_EnumDescriptorPro
2567
2663
  }
2568
2664
  UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protobuf_EnumDescriptorProto_mutable_reserved_range(google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2569
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);
2570
2667
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
2571
2668
  if (arr) {
2572
2669
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2583,6 +2680,7 @@ UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protob
2583
2680
  }
2584
2681
  UPB_INLINE struct google_protobuf_EnumDescriptorProto_EnumReservedRange* google_protobuf_EnumDescriptorProto_add_reserved_range(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
2585
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);
2586
2684
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
2587
2685
  UPB_UPCAST(msg), &field, arena);
2588
2686
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -2778,6 +2876,7 @@ UPB_INLINE const google_protobuf_EnumValueOptions* google_protobuf_EnumValueDesc
2778
2876
  const google_protobuf_EnumValueOptions* default_val = NULL;
2779
2877
  const google_protobuf_EnumValueOptions* ret;
2780
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);
2781
2880
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2782
2881
  &default_val, &ret);
2783
2882
  return ret;
@@ -2797,6 +2896,7 @@ UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_number(google_proto
2797
2896
  }
2798
2897
  UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_options(google_protobuf_EnumValueDescriptorProto *msg, google_protobuf_EnumValueOptions* value) {
2799
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)};
2899
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueOptions_msg_init);
2800
2900
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2801
2901
  }
2802
2902
  UPB_INLINE struct google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_mutable_options(google_protobuf_EnumValueDescriptorProto* msg, upb_Arena* arena) {
@@ -2866,6 +2966,7 @@ UPB_INLINE void google_protobuf_ServiceDescriptorProto_clear_method(google_proto
2866
2966
  }
2867
2967
  UPB_INLINE const google_protobuf_MethodDescriptorProto* const* google_protobuf_ServiceDescriptorProto_method(const google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
2868
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);
2869
2970
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2870
2971
  if (arr) {
2871
2972
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2877,6 +2978,7 @@ UPB_INLINE const google_protobuf_MethodDescriptorProto* const* google_protobuf_S
2877
2978
  }
2878
2979
  UPB_INLINE const upb_Array* _google_protobuf_ServiceDescriptorProto_method_upb_array(const google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
2879
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);
2880
2982
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2881
2983
  if (size) {
2882
2984
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -2885,6 +2987,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ServiceDescriptorProto_method_upb_a
2885
2987
  }
2886
2988
  UPB_INLINE upb_Array* _google_protobuf_ServiceDescriptorProto_method_mutable_upb_array(google_protobuf_ServiceDescriptorProto* msg, size_t* size, upb_Arena* arena) {
2887
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);
2888
2991
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
2889
2992
  &field, arena);
2890
2993
  if (size) {
@@ -2900,6 +3003,7 @@ UPB_INLINE const google_protobuf_ServiceOptions* google_protobuf_ServiceDescript
2900
3003
  const google_protobuf_ServiceOptions* default_val = NULL;
2901
3004
  const google_protobuf_ServiceOptions* ret;
2902
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);
2903
3007
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2904
3008
  &default_val, &ret);
2905
3009
  return ret;
@@ -2915,6 +3019,7 @@ UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_name(google_protobuf_
2915
3019
  }
2916
3020
  UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescriptorProto_mutable_method(google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
2917
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);
2918
3023
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
2919
3024
  if (arr) {
2920
3025
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2931,6 +3036,7 @@ UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescri
2931
3036
  }
2932
3037
  UPB_INLINE struct google_protobuf_MethodDescriptorProto* google_protobuf_ServiceDescriptorProto_add_method(google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena) {
2933
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);
2934
3040
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
2935
3041
  UPB_UPCAST(msg), &field, arena);
2936
3042
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -2945,6 +3051,7 @@ UPB_INLINE struct google_protobuf_MethodDescriptorProto* google_protobuf_Service
2945
3051
  }
2946
3052
  UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_options(google_protobuf_ServiceDescriptorProto *msg, google_protobuf_ServiceOptions* value) {
2947
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)};
3054
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceOptions_msg_init);
2948
3055
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2949
3056
  }
2950
3057
  UPB_INLINE struct google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_mutable_options(google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena) {
@@ -3048,6 +3155,7 @@ UPB_INLINE const google_protobuf_MethodOptions* google_protobuf_MethodDescriptor
3048
3155
  const google_protobuf_MethodOptions* default_val = NULL;
3049
3156
  const google_protobuf_MethodOptions* ret;
3050
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);
3051
3159
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3052
3160
  &default_val, &ret);
3053
3161
  return ret;
@@ -3103,6 +3211,7 @@ UPB_INLINE void google_protobuf_MethodDescriptorProto_set_output_type(google_pro
3103
3211
  }
3104
3212
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_options(google_protobuf_MethodDescriptorProto *msg, google_protobuf_MethodOptions* value) {
3105
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)};
3214
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodOptions_msg_init);
3106
3215
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3107
3216
  }
3108
3217
  UPB_INLINE struct google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_mutable_options(google_protobuf_MethodDescriptorProto* msg, upb_Arena* arena) {
@@ -3470,6 +3579,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FileOptions_feature
3470
3579
  const google_protobuf_FeatureSet* default_val = NULL;
3471
3580
  const google_protobuf_FeatureSet* ret;
3472
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);
3473
3583
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3474
3584
  &default_val, &ret);
3475
3585
  return ret;
@@ -3484,6 +3594,7 @@ UPB_INLINE void google_protobuf_FileOptions_clear_uninterpreted_option(google_pr
3484
3594
  }
3485
3595
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FileOptions_uninterpreted_option(const google_protobuf_FileOptions* msg, size_t* size) {
3486
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);
3487
3598
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3488
3599
  if (arr) {
3489
3600
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3495,6 +3606,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Fil
3495
3606
  }
3496
3607
  UPB_INLINE const upb_Array* _google_protobuf_FileOptions_uninterpreted_option_upb_array(const google_protobuf_FileOptions* msg, size_t* size) {
3497
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);
3498
3610
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3499
3611
  if (size) {
3500
3612
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -3503,6 +3615,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileOptions_uninterpreted_option_up
3503
3615
  }
3504
3616
  UPB_INLINE upb_Array* _google_protobuf_FileOptions_uninterpreted_option_mutable_upb_array(google_protobuf_FileOptions* msg, size_t* size, upb_Arena* arena) {
3505
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);
3506
3619
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
3507
3620
  &field, arena);
3508
3621
  if (size) {
@@ -3589,6 +3702,7 @@ UPB_INLINE void google_protobuf_FileOptions_set_ruby_package(google_protobuf_Fil
3589
3702
  }
3590
3703
  UPB_INLINE void google_protobuf_FileOptions_set_features(google_protobuf_FileOptions *msg, google_protobuf_FeatureSet* value) {
3591
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)};
3705
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
3592
3706
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3593
3707
  }
3594
3708
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FileOptions_mutable_features(google_protobuf_FileOptions* msg, upb_Arena* arena) {
@@ -3601,6 +3715,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FileOptions_mutabl
3601
3715
  }
3602
3716
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_mutable_uninterpreted_option(google_protobuf_FileOptions* msg, size_t* size) {
3603
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);
3604
3719
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
3605
3720
  if (arr) {
3606
3721
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3617,6 +3732,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_res
3617
3732
  }
3618
3733
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FileOptions_add_uninterpreted_option(google_protobuf_FileOptions* msg, upb_Arena* arena) {
3619
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);
3620
3736
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
3621
3737
  UPB_UPCAST(msg), &field, arena);
3622
3738
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -3754,6 +3870,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_MessageOptions_feat
3754
3870
  const google_protobuf_FeatureSet* default_val = NULL;
3755
3871
  const google_protobuf_FeatureSet* ret;
3756
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);
3757
3874
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3758
3875
  &default_val, &ret);
3759
3876
  return ret;
@@ -3768,6 +3885,7 @@ UPB_INLINE void google_protobuf_MessageOptions_clear_uninterpreted_option(google
3768
3885
  }
3769
3886
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MessageOptions_uninterpreted_option(const google_protobuf_MessageOptions* msg, size_t* size) {
3770
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);
3771
3889
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3772
3890
  if (arr) {
3773
3891
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3779,6 +3897,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Mes
3779
3897
  }
3780
3898
  UPB_INLINE const upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_upb_array(const google_protobuf_MessageOptions* msg, size_t* size) {
3781
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);
3782
3901
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3783
3902
  if (size) {
3784
3903
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -3787,6 +3906,7 @@ UPB_INLINE const upb_Array* _google_protobuf_MessageOptions_uninterpreted_option
3787
3906
  }
3788
3907
  UPB_INLINE upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_mutable_upb_array(google_protobuf_MessageOptions* msg, size_t* size, upb_Arena* arena) {
3789
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);
3790
3910
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
3791
3911
  &field, arena);
3792
3912
  if (size) {
@@ -3817,6 +3937,7 @@ UPB_INLINE void google_protobuf_MessageOptions_set_deprecated_legacy_json_field_
3817
3937
  }
3818
3938
  UPB_INLINE void google_protobuf_MessageOptions_set_features(google_protobuf_MessageOptions *msg, google_protobuf_FeatureSet* value) {
3819
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)};
3940
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
3820
3941
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3821
3942
  }
3822
3943
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MessageOptions_mutable_features(google_protobuf_MessageOptions* msg, upb_Arena* arena) {
@@ -3829,6 +3950,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MessageOptions_mut
3829
3950
  }
3830
3951
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_mutable_uninterpreted_option(google_protobuf_MessageOptions* msg, size_t* size) {
3831
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);
3832
3954
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
3833
3955
  if (arr) {
3834
3956
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3845,6 +3967,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_
3845
3967
  }
3846
3968
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MessageOptions_add_uninterpreted_option(google_protobuf_MessageOptions* msg, upb_Arena* arena) {
3847
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);
3848
3971
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
3849
3972
  UPB_UPCAST(msg), &field, arena);
3850
3973
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4076,6 +4199,7 @@ UPB_INLINE void google_protobuf_FieldOptions_clear_edition_defaults(google_proto
4076
4199
  }
4077
4200
  UPB_INLINE const google_protobuf_FieldOptions_EditionDefault* const* google_protobuf_FieldOptions_edition_defaults(const google_protobuf_FieldOptions* msg, size_t* size) {
4078
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);
4079
4203
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4080
4204
  if (arr) {
4081
4205
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4087,6 +4211,7 @@ UPB_INLINE const google_protobuf_FieldOptions_EditionDefault* const* google_prot
4087
4211
  }
4088
4212
  UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_edition_defaults_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
4089
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);
4090
4215
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4091
4216
  if (size) {
4092
4217
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4095,6 +4220,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_edition_defaults_upb_a
4095
4220
  }
4096
4221
  UPB_INLINE upb_Array* _google_protobuf_FieldOptions_edition_defaults_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
4097
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);
4098
4224
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4099
4225
  &field, arena);
4100
4226
  if (size) {
@@ -4110,6 +4236,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FieldOptions_featur
4110
4236
  const google_protobuf_FeatureSet* default_val = NULL;
4111
4237
  const google_protobuf_FeatureSet* ret;
4112
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);
4113
4240
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4114
4241
  &default_val, &ret);
4115
4242
  return ret;
@@ -4126,6 +4253,7 @@ UPB_INLINE const google_protobuf_FieldOptions_FeatureSupport* google_protobuf_Fi
4126
4253
  const google_protobuf_FieldOptions_FeatureSupport* default_val = NULL;
4127
4254
  const google_protobuf_FieldOptions_FeatureSupport* ret;
4128
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);
4129
4257
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4130
4258
  &default_val, &ret);
4131
4259
  return ret;
@@ -4140,6 +4268,7 @@ UPB_INLINE void google_protobuf_FieldOptions_clear_uninterpreted_option(google_p
4140
4268
  }
4141
4269
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FieldOptions_uninterpreted_option(const google_protobuf_FieldOptions* msg, size_t* size) {
4142
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);
4143
4272
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4144
4273
  if (arr) {
4145
4274
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4151,6 +4280,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Fie
4151
4280
  }
4152
4281
  UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
4153
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);
4154
4284
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4155
4285
  if (size) {
4156
4286
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4159,6 +4289,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_u
4159
4289
  }
4160
4290
  UPB_INLINE upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
4161
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);
4162
4293
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4163
4294
  &field, arena);
4164
4295
  if (size) {
@@ -4233,6 +4364,7 @@ UPB_INLINE bool google_protobuf_FieldOptions_add_targets(google_protobuf_FieldOp
4233
4364
  }
4234
4365
  UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOptions_mutable_edition_defaults(google_protobuf_FieldOptions* msg, size_t* size) {
4235
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);
4236
4368
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4237
4369
  if (arr) {
4238
4370
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4249,6 +4381,7 @@ UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOp
4249
4381
  }
4250
4382
  UPB_INLINE struct google_protobuf_FieldOptions_EditionDefault* google_protobuf_FieldOptions_add_edition_defaults(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4251
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);
4252
4385
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4253
4386
  UPB_UPCAST(msg), &field, arena);
4254
4387
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4263,6 +4396,7 @@ UPB_INLINE struct google_protobuf_FieldOptions_EditionDefault* google_protobuf_F
4263
4396
  }
4264
4397
  UPB_INLINE void google_protobuf_FieldOptions_set_features(google_protobuf_FieldOptions *msg, google_protobuf_FeatureSet* value) {
4265
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)};
4399
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4266
4400
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4267
4401
  }
4268
4402
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FieldOptions_mutable_features(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
@@ -4275,6 +4409,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FieldOptions_mutab
4275
4409
  }
4276
4410
  UPB_INLINE void google_protobuf_FieldOptions_set_feature_support(google_protobuf_FieldOptions *msg, google_protobuf_FieldOptions_FeatureSupport* value) {
4277
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);
4278
4413
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4279
4414
  }
4280
4415
  UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_mutable_feature_support(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
@@ -4287,6 +4422,7 @@ UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_F
4287
4422
  }
4288
4423
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_mutable_uninterpreted_option(google_protobuf_FieldOptions* msg, size_t* size) {
4289
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);
4290
4426
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4291
4427
  if (arr) {
4292
4428
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4303,6 +4439,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_re
4303
4439
  }
4304
4440
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4305
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);
4306
4443
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4307
4444
  UPB_UPCAST(msg), &field, arena);
4308
4445
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4556,6 +4693,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_OneofOptions_featur
4556
4693
  const google_protobuf_FeatureSet* default_val = NULL;
4557
4694
  const google_protobuf_FeatureSet* ret;
4558
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);
4559
4697
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4560
4698
  &default_val, &ret);
4561
4699
  return ret;
@@ -4570,6 +4708,7 @@ UPB_INLINE void google_protobuf_OneofOptions_clear_uninterpreted_option(google_p
4570
4708
  }
4571
4709
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_OneofOptions_uninterpreted_option(const google_protobuf_OneofOptions* msg, size_t* size) {
4572
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);
4573
4712
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4574
4713
  if (arr) {
4575
4714
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4581,6 +4720,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_One
4581
4720
  }
4582
4721
  UPB_INLINE const upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_upb_array(const google_protobuf_OneofOptions* msg, size_t* size) {
4583
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);
4584
4724
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4585
4725
  if (size) {
4586
4726
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4589,6 +4729,7 @@ UPB_INLINE const upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_u
4589
4729
  }
4590
4730
  UPB_INLINE upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_mutable_upb_array(google_protobuf_OneofOptions* msg, size_t* size, upb_Arena* arena) {
4591
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);
4592
4733
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4593
4734
  &field, arena);
4594
4735
  if (size) {
@@ -4599,6 +4740,7 @@ UPB_INLINE upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_mutable
4599
4740
 
4600
4741
  UPB_INLINE void google_protobuf_OneofOptions_set_features(google_protobuf_OneofOptions *msg, google_protobuf_FeatureSet* value) {
4601
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)};
4743
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4602
4744
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4603
4745
  }
4604
4746
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_OneofOptions_mutable_features(google_protobuf_OneofOptions* msg, upb_Arena* arena) {
@@ -4611,6 +4753,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_OneofOptions_mutab
4611
4753
  }
4612
4754
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_mutable_uninterpreted_option(google_protobuf_OneofOptions* msg, size_t* size) {
4613
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);
4614
4757
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4615
4758
  if (arr) {
4616
4759
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4627,6 +4770,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_re
4627
4770
  }
4628
4771
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_OneofOptions_add_uninterpreted_option(google_protobuf_OneofOptions* msg, upb_Arena* arena) {
4629
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);
4630
4774
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4631
4775
  UPB_UPCAST(msg), &field, arena);
4632
4776
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4732,6 +4876,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_EnumOptions_feature
4732
4876
  const google_protobuf_FeatureSet* default_val = NULL;
4733
4877
  const google_protobuf_FeatureSet* ret;
4734
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);
4735
4880
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4736
4881
  &default_val, &ret);
4737
4882
  return ret;
@@ -4746,6 +4891,7 @@ UPB_INLINE void google_protobuf_EnumOptions_clear_uninterpreted_option(google_pr
4746
4891
  }
4747
4892
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumOptions_uninterpreted_option(const google_protobuf_EnumOptions* msg, size_t* size) {
4748
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);
4749
4895
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4750
4896
  if (arr) {
4751
4897
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4757,6 +4903,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Enu
4757
4903
  }
4758
4904
  UPB_INLINE const upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_upb_array(const google_protobuf_EnumOptions* msg, size_t* size) {
4759
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);
4760
4907
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4761
4908
  if (size) {
4762
4909
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4765,6 +4912,7 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_up
4765
4912
  }
4766
4913
  UPB_INLINE upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_mutable_upb_array(google_protobuf_EnumOptions* msg, size_t* size, upb_Arena* arena) {
4767
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);
4768
4916
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4769
4917
  &field, arena);
4770
4918
  if (size) {
@@ -4787,6 +4935,7 @@ UPB_INLINE void google_protobuf_EnumOptions_set_deprecated_legacy_json_field_con
4787
4935
  }
4788
4936
  UPB_INLINE void google_protobuf_EnumOptions_set_features(google_protobuf_EnumOptions *msg, google_protobuf_FeatureSet* value) {
4789
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)};
4938
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4790
4939
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4791
4940
  }
4792
4941
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumOptions_mutable_features(google_protobuf_EnumOptions* msg, upb_Arena* arena) {
@@ -4799,6 +4948,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumOptions_mutabl
4799
4948
  }
4800
4949
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_mutable_uninterpreted_option(google_protobuf_EnumOptions* msg, size_t* size) {
4801
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);
4802
4952
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4803
4953
  if (arr) {
4804
4954
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4815,6 +4965,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_res
4815
4965
  }
4816
4966
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumOptions_add_uninterpreted_option(google_protobuf_EnumOptions* msg, upb_Arena* arena) {
4817
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);
4818
4969
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4819
4970
  UPB_UPCAST(msg), &field, arena);
4820
4971
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4888,6 +5039,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_EnumValueOptions_fe
4888
5039
  const google_protobuf_FeatureSet* default_val = NULL;
4889
5040
  const google_protobuf_FeatureSet* ret;
4890
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);
4891
5043
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4892
5044
  &default_val, &ret);
4893
5045
  return ret;
@@ -4920,6 +5072,7 @@ UPB_INLINE const google_protobuf_FieldOptions_FeatureSupport* google_protobuf_En
4920
5072
  const google_protobuf_FieldOptions_FeatureSupport* default_val = NULL;
4921
5073
  const google_protobuf_FieldOptions_FeatureSupport* ret;
4922
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);
4923
5076
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4924
5077
  &default_val, &ret);
4925
5078
  return ret;
@@ -4934,6 +5087,7 @@ UPB_INLINE void google_protobuf_EnumValueOptions_clear_uninterpreted_option(goog
4934
5087
  }
4935
5088
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumValueOptions_uninterpreted_option(const google_protobuf_EnumValueOptions* msg, size_t* size) {
4936
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);
4937
5091
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4938
5092
  if (arr) {
4939
5093
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4945,6 +5099,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Enu
4945
5099
  }
4946
5100
  UPB_INLINE const upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_upb_array(const google_protobuf_EnumValueOptions* msg, size_t* size) {
4947
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);
4948
5103
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4949
5104
  if (size) {
4950
5105
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4953,6 +5108,7 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_opti
4953
5108
  }
4954
5109
  UPB_INLINE upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_mutable_upb_array(google_protobuf_EnumValueOptions* msg, size_t* size, upb_Arena* arena) {
4955
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);
4956
5112
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4957
5113
  &field, arena);
4958
5114
  if (size) {
@@ -4967,6 +5123,7 @@ UPB_INLINE void google_protobuf_EnumValueOptions_set_deprecated(google_protobuf_
4967
5123
  }
4968
5124
  UPB_INLINE void google_protobuf_EnumValueOptions_set_features(google_protobuf_EnumValueOptions *msg, google_protobuf_FeatureSet* value) {
4969
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)};
5126
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4970
5127
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4971
5128
  }
4972
5129
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumValueOptions_mutable_features(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
@@ -4983,6 +5140,7 @@ UPB_INLINE void google_protobuf_EnumValueOptions_set_debug_redact(google_protobu
4983
5140
  }
4984
5141
  UPB_INLINE void google_protobuf_EnumValueOptions_set_feature_support(google_protobuf_EnumValueOptions *msg, google_protobuf_FieldOptions_FeatureSupport* value) {
4985
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);
4986
5144
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4987
5145
  }
4988
5146
  UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_EnumValueOptions_mutable_feature_support(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
@@ -4995,6 +5153,7 @@ UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_E
4995
5153
  }
4996
5154
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_mutable_uninterpreted_option(google_protobuf_EnumValueOptions* msg, size_t* size) {
4997
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);
4998
5157
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4999
5158
  if (arr) {
5000
5159
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5011,6 +5170,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOption
5011
5170
  }
5012
5171
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
5013
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);
5014
5174
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5015
5175
  UPB_UPCAST(msg), &field, arena);
5016
5176
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5084,6 +5244,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_ServiceOptions_feat
5084
5244
  const google_protobuf_FeatureSet* default_val = NULL;
5085
5245
  const google_protobuf_FeatureSet* ret;
5086
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);
5087
5248
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5088
5249
  &default_val, &ret);
5089
5250
  return ret;
@@ -5098,6 +5259,7 @@ UPB_INLINE void google_protobuf_ServiceOptions_clear_uninterpreted_option(google
5098
5259
  }
5099
5260
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ServiceOptions_uninterpreted_option(const google_protobuf_ServiceOptions* msg, size_t* size) {
5100
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);
5101
5263
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5102
5264
  if (arr) {
5103
5265
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5109,6 +5271,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Ser
5109
5271
  }
5110
5272
  UPB_INLINE const upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_upb_array(const google_protobuf_ServiceOptions* msg, size_t* size) {
5111
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);
5112
5275
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5113
5276
  if (size) {
5114
5277
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5117,6 +5280,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option
5117
5280
  }
5118
5281
  UPB_INLINE upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_mutable_upb_array(google_protobuf_ServiceOptions* msg, size_t* size, upb_Arena* arena) {
5119
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);
5120
5284
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5121
5285
  &field, arena);
5122
5286
  if (size) {
@@ -5131,6 +5295,7 @@ UPB_INLINE void google_protobuf_ServiceOptions_set_deprecated(google_protobuf_Se
5131
5295
  }
5132
5296
  UPB_INLINE void google_protobuf_ServiceOptions_set_features(google_protobuf_ServiceOptions *msg, google_protobuf_FeatureSet* value) {
5133
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)};
5298
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5134
5299
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5135
5300
  }
5136
5301
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ServiceOptions_mutable_features(google_protobuf_ServiceOptions* msg, upb_Arena* arena) {
@@ -5143,6 +5308,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ServiceOptions_mut
5143
5308
  }
5144
5309
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_mutable_uninterpreted_option(google_protobuf_ServiceOptions* msg, size_t* size) {
5145
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);
5146
5312
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5147
5313
  if (arr) {
5148
5314
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5159,6 +5325,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_
5159
5325
  }
5160
5326
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ServiceOptions_add_uninterpreted_option(google_protobuf_ServiceOptions* msg, upb_Arena* arena) {
5161
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);
5162
5329
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5163
5330
  UPB_UPCAST(msg), &field, arena);
5164
5331
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5248,6 +5415,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_MethodOptions_featu
5248
5415
  const google_protobuf_FeatureSet* default_val = NULL;
5249
5416
  const google_protobuf_FeatureSet* ret;
5250
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);
5251
5419
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5252
5420
  &default_val, &ret);
5253
5421
  return ret;
@@ -5262,6 +5430,7 @@ UPB_INLINE void google_protobuf_MethodOptions_clear_uninterpreted_option(google_
5262
5430
  }
5263
5431
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MethodOptions_uninterpreted_option(const google_protobuf_MethodOptions* msg, size_t* size) {
5264
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);
5265
5434
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5266
5435
  if (arr) {
5267
5436
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5273,6 +5442,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Met
5273
5442
  }
5274
5443
  UPB_INLINE const upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_upb_array(const google_protobuf_MethodOptions* msg, size_t* size) {
5275
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);
5276
5446
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5277
5447
  if (size) {
5278
5448
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5281,6 +5451,7 @@ UPB_INLINE const upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_
5281
5451
  }
5282
5452
  UPB_INLINE upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_mutable_upb_array(google_protobuf_MethodOptions* msg, size_t* size, upb_Arena* arena) {
5283
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);
5284
5455
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5285
5456
  &field, arena);
5286
5457
  if (size) {
@@ -5299,6 +5470,7 @@ UPB_INLINE void google_protobuf_MethodOptions_set_idempotency_level(google_proto
5299
5470
  }
5300
5471
  UPB_INLINE void google_protobuf_MethodOptions_set_features(google_protobuf_MethodOptions *msg, google_protobuf_FeatureSet* value) {
5301
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)};
5473
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5302
5474
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5303
5475
  }
5304
5476
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MethodOptions_mutable_features(google_protobuf_MethodOptions* msg, upb_Arena* arena) {
@@ -5311,6 +5483,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MethodOptions_muta
5311
5483
  }
5312
5484
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_mutable_uninterpreted_option(google_protobuf_MethodOptions* msg, size_t* size) {
5313
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);
5314
5487
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5315
5488
  if (arr) {
5316
5489
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5327,6 +5500,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_r
5327
5500
  }
5328
5501
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MethodOptions_add_uninterpreted_option(google_protobuf_MethodOptions* msg, upb_Arena* arena) {
5329
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);
5330
5504
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5331
5505
  UPB_UPCAST(msg), &field, arena);
5332
5506
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5382,6 +5556,7 @@ UPB_INLINE void google_protobuf_UninterpretedOption_clear_name(google_protobuf_U
5382
5556
  }
5383
5557
  UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_protobuf_UninterpretedOption_name(const google_protobuf_UninterpretedOption* msg, size_t* size) {
5384
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);
5385
5560
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5386
5561
  if (arr) {
5387
5562
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5393,6 +5568,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_pro
5393
5568
  }
5394
5569
  UPB_INLINE const upb_Array* _google_protobuf_UninterpretedOption_name_upb_array(const google_protobuf_UninterpretedOption* msg, size_t* size) {
5395
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);
5396
5572
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5397
5573
  if (size) {
5398
5574
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5401,6 +5577,7 @@ UPB_INLINE const upb_Array* _google_protobuf_UninterpretedOption_name_upb_array(
5401
5577
  }
5402
5578
  UPB_INLINE upb_Array* _google_protobuf_UninterpretedOption_name_mutable_upb_array(google_protobuf_UninterpretedOption* msg, size_t* size, upb_Arena* arena) {
5403
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);
5404
5581
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5405
5582
  &field, arena);
5406
5583
  if (size) {
@@ -5507,6 +5684,7 @@ UPB_INLINE bool google_protobuf_UninterpretedOption_has_aggregate_value(const go
5507
5684
 
5508
5685
  UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_mutable_name(google_protobuf_UninterpretedOption* msg, size_t* size) {
5509
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);
5510
5688
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5511
5689
  if (arr) {
5512
5690
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5523,6 +5701,7 @@ UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_Uninte
5523
5701
  }
5524
5702
  UPB_INLINE struct google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption* msg, upb_Arena* arena) {
5525
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);
5526
5705
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5527
5706
  UPB_UPCAST(msg), &field, arena);
5528
5707
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5838,6 +6017,7 @@ UPB_INLINE void google_protobuf_FeatureSetDefaults_clear_defaults(google_protobu
5838
6017
  }
5839
6018
  UPB_INLINE const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* const* google_protobuf_FeatureSetDefaults_defaults(const google_protobuf_FeatureSetDefaults* msg, size_t* size) {
5840
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);
5841
6021
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5842
6022
  if (arr) {
5843
6023
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5849,6 +6029,7 @@ UPB_INLINE const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* co
5849
6029
  }
5850
6030
  UPB_INLINE const upb_Array* _google_protobuf_FeatureSetDefaults_defaults_upb_array(const google_protobuf_FeatureSetDefaults* msg, size_t* size) {
5851
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);
5852
6033
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5853
6034
  if (size) {
5854
6035
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5857,6 +6038,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FeatureSetDefaults_defaults_upb_arr
5857
6038
  }
5858
6039
  UPB_INLINE upb_Array* _google_protobuf_FeatureSetDefaults_defaults_mutable_upb_array(google_protobuf_FeatureSetDefaults* msg, size_t* size, upb_Arena* arena) {
5859
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);
5860
6042
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5861
6043
  &field, arena);
5862
6044
  if (size) {
@@ -5899,6 +6081,7 @@ UPB_INLINE bool google_protobuf_FeatureSetDefaults_has_maximum_edition(const goo
5899
6081
 
5900
6082
  UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault** google_protobuf_FeatureSetDefaults_mutable_defaults(google_protobuf_FeatureSetDefaults* msg, size_t* size) {
5901
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);
5902
6085
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5903
6086
  if (arr) {
5904
6087
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5915,6 +6098,7 @@ UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault** google_
5915
6098
  }
5916
6099
  UPB_INLINE struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* google_protobuf_FeatureSetDefaults_add_defaults(google_protobuf_FeatureSetDefaults* msg, upb_Arena* arena) {
5917
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);
5918
6102
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5919
6103
  UPB_UPCAST(msg), &field, arena);
5920
6104
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5996,6 +6180,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_
5996
6180
  const google_protobuf_FeatureSet* default_val = NULL;
5997
6181
  const google_protobuf_FeatureSet* ret;
5998
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);
5999
6184
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6000
6185
  &default_val, &ret);
6001
6186
  return ret;
@@ -6012,6 +6197,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_
6012
6197
  const google_protobuf_FeatureSet* default_val = NULL;
6013
6198
  const google_protobuf_FeatureSet* ret;
6014
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);
6015
6201
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6016
6202
  &default_val, &ret);
6017
6203
  return ret;
@@ -6027,6 +6213,7 @@ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_
6027
6213
  }
6028
6214
  UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) {
6029
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);
6030
6217
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6031
6218
  }
6032
6219
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_mutable_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena) {
@@ -6039,6 +6226,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults
6039
6226
  }
6040
6227
  UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) {
6041
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);
6042
6230
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6043
6231
  }
6044
6232
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_mutable_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena) {
@@ -6092,6 +6280,7 @@ UPB_INLINE void google_protobuf_SourceCodeInfo_clear_location(google_protobuf_So
6092
6280
  }
6093
6281
  UPB_INLINE const google_protobuf_SourceCodeInfo_Location* const* google_protobuf_SourceCodeInfo_location(const google_protobuf_SourceCodeInfo* msg, size_t* size) {
6094
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);
6095
6284
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6096
6285
  if (arr) {
6097
6286
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6103,6 +6292,7 @@ UPB_INLINE const google_protobuf_SourceCodeInfo_Location* const* google_protobuf
6103
6292
  }
6104
6293
  UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_location_upb_array(const google_protobuf_SourceCodeInfo* msg, size_t* size) {
6105
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);
6106
6296
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6107
6297
  if (size) {
6108
6298
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -6111,6 +6301,7 @@ UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_location_upb_array(c
6111
6301
  }
6112
6302
  UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_location_mutable_upb_array(google_protobuf_SourceCodeInfo* msg, size_t* size, upb_Arena* arena) {
6113
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);
6114
6305
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6115
6306
  &field, arena);
6116
6307
  if (size) {
@@ -6121,6 +6312,7 @@ UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_location_mutable_upb_array
6121
6312
 
6122
6313
  UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeInfo_mutable_location(google_protobuf_SourceCodeInfo* msg, size_t* size) {
6123
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);
6124
6316
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
6125
6317
  if (arr) {
6126
6318
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6137,6 +6329,7 @@ UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeI
6137
6329
  }
6138
6330
  UPB_INLINE struct google_protobuf_SourceCodeInfo_Location* google_protobuf_SourceCodeInfo_add_location(google_protobuf_SourceCodeInfo* msg, upb_Arena* arena) {
6139
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);
6140
6333
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6141
6334
  UPB_UPCAST(msg), &field, arena);
6142
6335
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -6450,6 +6643,7 @@ UPB_INLINE void google_protobuf_GeneratedCodeInfo_clear_annotation(google_protob
6450
6643
  }
6451
6644
  UPB_INLINE const google_protobuf_GeneratedCodeInfo_Annotation* const* google_protobuf_GeneratedCodeInfo_annotation(const google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
6452
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);
6453
6647
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6454
6648
  if (arr) {
6455
6649
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6461,6 +6655,7 @@ UPB_INLINE const google_protobuf_GeneratedCodeInfo_Annotation* const* google_pro
6461
6655
  }
6462
6656
  UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_upb_array(const google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
6463
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);
6464
6659
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6465
6660
  if (size) {
6466
6661
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -6469,6 +6664,7 @@ UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_upb_ar
6469
6664
  }
6470
6665
  UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_mutable_upb_array(google_protobuf_GeneratedCodeInfo* msg, size_t* size, upb_Arena* arena) {
6471
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);
6472
6668
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6473
6669
  &field, arena);
6474
6670
  if (size) {
@@ -6479,6 +6675,7 @@ UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_mutable_upb_
6479
6675
 
6480
6676
  UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_GeneratedCodeInfo_mutable_annotation(google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
6481
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);
6482
6679
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
6483
6680
  if (arr) {
6484
6681
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6495,6 +6692,7 @@ UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_Genera
6495
6692
  }
6496
6693
  UPB_INLINE struct google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_GeneratedCodeInfo_add_annotation(google_protobuf_GeneratedCodeInfo* msg, upb_Arena* arena) {
6497
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);
6498
6696
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6499
6697
  UPB_UPCAST(msg), &field, arena);
6500
6698
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -6696,4 +6894,4 @@ UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_semantic(google
6696
6894
 
6697
6895
  #include "upb/port/undef.inc"
6698
6896
 
6699
- #endif /* GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_ */
6897
+ #endif /* GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H__UPB_H_ */