grpc 1.60.0.pre1-aarch64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/etc/roots.pem +4337 -0
- data/grpc_c.32-msvcrt.ruby +0 -0
- data/grpc_c.64-msvcrt.ruby +0 -0
- data/grpc_c.64-ucrt.ruby +0 -0
- data/src/ruby/bin/math_client.rb +140 -0
- data/src/ruby/bin/math_pb.rb +40 -0
- data/src/ruby/bin/math_server.rb +191 -0
- data/src/ruby/bin/math_services_pb.rb +51 -0
- data/src/ruby/bin/noproto_client.rb +93 -0
- data/src/ruby/bin/noproto_server.rb +97 -0
- data/src/ruby/ext/grpc/ext-export-truffleruby-with-ruby-abi-version.clang +2 -0
- data/src/ruby/ext/grpc/ext-export-truffleruby-with-ruby-abi-version.gcc +7 -0
- data/src/ruby/ext/grpc/ext-export-with-ruby-abi-version.clang +2 -0
- data/src/ruby/ext/grpc/ext-export-with-ruby-abi-version.gcc +7 -0
- data/src/ruby/ext/grpc/ext-export.clang +1 -0
- data/src/ruby/ext/grpc/ext-export.gcc +6 -0
- data/src/ruby/ext/grpc/extconf.rb +270 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.c +65 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.h +35 -0
- data/src/ruby/ext/grpc/rb_call.c +1075 -0
- data/src/ruby/ext/grpc/rb_call.h +57 -0
- data/src/ruby/ext/grpc/rb_call_credentials.c +340 -0
- data/src/ruby/ext/grpc/rb_call_credentials.h +31 -0
- data/src/ruby/ext/grpc/rb_channel.c +875 -0
- data/src/ruby/ext/grpc/rb_channel.h +35 -0
- data/src/ruby/ext/grpc/rb_channel_args.c +172 -0
- data/src/ruby/ext/grpc/rb_channel_args.h +42 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.c +285 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.h +37 -0
- data/src/ruby/ext/grpc/rb_completion_queue.c +101 -0
- data/src/ruby/ext/grpc/rb_completion_queue.h +36 -0
- data/src/ruby/ext/grpc/rb_compression_options.c +470 -0
- data/src/ruby/ext/grpc/rb_compression_options.h +29 -0
- data/src/ruby/ext/grpc/rb_enable_cpp.cc +22 -0
- data/src/ruby/ext/grpc/rb_event_thread.c +161 -0
- data/src/ruby/ext/grpc/rb_event_thread.h +22 -0
- data/src/ruby/ext/grpc/rb_grpc.c +496 -0
- data/src/ruby/ext/grpc/rb_grpc.h +83 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +603 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +910 -0
- data/src/ruby/ext/grpc/rb_loader.c +61 -0
- data/src/ruby/ext/grpc/rb_loader.h +25 -0
- data/src/ruby/ext/grpc/rb_server.c +405 -0
- data/src/ruby/ext/grpc/rb_server.h +32 -0
- data/src/ruby/ext/grpc/rb_server_credentials.c +258 -0
- data/src/ruby/ext/grpc/rb_server_credentials.h +37 -0
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +217 -0
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +37 -0
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +169 -0
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +37 -0
- data/src/ruby/lib/grpc/2.7/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/3.0/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/3.1/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/3.2/grpc_c.so +0 -0
- data/src/ruby/lib/grpc/core/status_codes.rb +135 -0
- data/src/ruby/lib/grpc/core/time_consts.rb +56 -0
- data/src/ruby/lib/grpc/errors.rb +277 -0
- data/src/ruby/lib/grpc/generic/active_call.rb +670 -0
- data/src/ruby/lib/grpc/generic/bidi_call.rb +237 -0
- data/src/ruby/lib/grpc/generic/client_stub.rb +503 -0
- data/src/ruby/lib/grpc/generic/interceptor_registry.rb +53 -0
- data/src/ruby/lib/grpc/generic/interceptors.rb +186 -0
- data/src/ruby/lib/grpc/generic/rpc_desc.rb +204 -0
- data/src/ruby/lib/grpc/generic/rpc_server.rb +551 -0
- data/src/ruby/lib/grpc/generic/service.rb +211 -0
- data/src/ruby/lib/grpc/google_rpc_status_utils.rb +40 -0
- data/src/ruby/lib/grpc/grpc.rb +24 -0
- data/src/ruby/lib/grpc/logconfig.rb +44 -0
- data/src/ruby/lib/grpc/notifier.rb +45 -0
- data/src/ruby/lib/grpc/structs.rb +15 -0
- data/src/ruby/lib/grpc/version.rb +18 -0
- data/src/ruby/lib/grpc.rb +37 -0
- data/src/ruby/pb/README.md +42 -0
- data/src/ruby/pb/generate_proto_ruby.sh +46 -0
- data/src/ruby/pb/grpc/health/checker.rb +75 -0
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +42 -0
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +62 -0
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +44 -0
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +28 -0
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +49 -0
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +38 -0
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +71 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +40 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +174 -0
- data/src/ruby/pb/test/client.rb +785 -0
- data/src/ruby/pb/test/server.rb +252 -0
- data/src/ruby/pb/test/xds_client.rb +415 -0
- data/src/ruby/spec/call_credentials_spec.rb +42 -0
- data/src/ruby/spec/call_spec.rb +180 -0
- data/src/ruby/spec/channel_connection_spec.rb +126 -0
- data/src/ruby/spec/channel_credentials_spec.rb +124 -0
- data/src/ruby/spec/channel_spec.rb +207 -0
- data/src/ruby/spec/client_auth_spec.rb +152 -0
- data/src/ruby/spec/client_server_spec.rb +676 -0
- data/src/ruby/spec/compression_options_spec.rb +149 -0
- data/src/ruby/spec/debug_message_spec.rb +134 -0
- data/src/ruby/spec/error_sanity_spec.rb +49 -0
- data/src/ruby/spec/errors_spec.rb +142 -0
- data/src/ruby/spec/generic/active_call_spec.rb +692 -0
- data/src/ruby/spec/generic/client_interceptors_spec.rb +153 -0
- data/src/ruby/spec/generic/client_stub_spec.rb +1083 -0
- data/src/ruby/spec/generic/interceptor_registry_spec.rb +65 -0
- data/src/ruby/spec/generic/rpc_desc_spec.rb +374 -0
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +127 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +748 -0
- data/src/ruby/spec/generic/server_interceptors_spec.rb +218 -0
- data/src/ruby/spec/generic/service_spec.rb +263 -0
- data/src/ruby/spec/google_rpc_status_utils_spec.rb +282 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options.proto +28 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import.proto +22 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +41 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/same_package_service_name.proto +27 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/same_ruby_package_service_name.proto +29 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +98 -0
- data/src/ruby/spec/pb/duplicate/codegen_spec.rb +57 -0
- data/src/ruby/spec/pb/health/checker_spec.rb +236 -0
- data/src/ruby/spec/server_credentials_spec.rb +104 -0
- data/src/ruby/spec/server_spec.rb +231 -0
- data/src/ruby/spec/spec_helper.rb +61 -0
- data/src/ruby/spec/support/helpers.rb +107 -0
- data/src/ruby/spec/support/services.rb +160 -0
- data/src/ruby/spec/testdata/README +1 -0
- data/src/ruby/spec/testdata/ca.pem +20 -0
- data/src/ruby/spec/testdata/client.key +28 -0
- data/src/ruby/spec/testdata/client.pem +20 -0
- data/src/ruby/spec/testdata/server1.key +28 -0
- data/src/ruby/spec/testdata/server1.pem +22 -0
- data/src/ruby/spec/time_consts_spec.rb +74 -0
- data/src/ruby/spec/user_agent_spec.rb +74 -0
- metadata +405 -0
@@ -0,0 +1,603 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* Copyright 2016 gRPC authors.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*
|
17
|
+
*/
|
18
|
+
|
19
|
+
#include <grpc/support/port_platform.h>
|
20
|
+
|
21
|
+
#ifdef GPR_WINDOWS
|
22
|
+
|
23
|
+
#include "rb_grpc_imports.generated.h"
|
24
|
+
|
25
|
+
grpc_raw_byte_buffer_create_type grpc_raw_byte_buffer_create_import;
|
26
|
+
grpc_raw_compressed_byte_buffer_create_type grpc_raw_compressed_byte_buffer_create_import;
|
27
|
+
grpc_byte_buffer_copy_type grpc_byte_buffer_copy_import;
|
28
|
+
grpc_byte_buffer_length_type grpc_byte_buffer_length_import;
|
29
|
+
grpc_byte_buffer_destroy_type grpc_byte_buffer_destroy_import;
|
30
|
+
grpc_byte_buffer_reader_init_type grpc_byte_buffer_reader_init_import;
|
31
|
+
grpc_byte_buffer_reader_destroy_type grpc_byte_buffer_reader_destroy_import;
|
32
|
+
grpc_byte_buffer_reader_next_type grpc_byte_buffer_reader_next_import;
|
33
|
+
grpc_byte_buffer_reader_peek_type grpc_byte_buffer_reader_peek_import;
|
34
|
+
grpc_byte_buffer_reader_readall_type grpc_byte_buffer_reader_readall_import;
|
35
|
+
grpc_raw_byte_buffer_from_reader_type grpc_raw_byte_buffer_from_reader_import;
|
36
|
+
grpc_compression_algorithm_is_message_type grpc_compression_algorithm_is_message_import;
|
37
|
+
grpc_compression_algorithm_is_stream_type grpc_compression_algorithm_is_stream_import;
|
38
|
+
grpc_compression_algorithm_parse_type grpc_compression_algorithm_parse_import;
|
39
|
+
grpc_compression_algorithm_name_type grpc_compression_algorithm_name_import;
|
40
|
+
grpc_compression_algorithm_for_level_type grpc_compression_algorithm_for_level_import;
|
41
|
+
grpc_compression_options_init_type grpc_compression_options_init_import;
|
42
|
+
grpc_compression_options_enable_algorithm_type grpc_compression_options_enable_algorithm_import;
|
43
|
+
grpc_compression_options_disable_algorithm_type grpc_compression_options_disable_algorithm_import;
|
44
|
+
grpc_compression_options_is_algorithm_enabled_type grpc_compression_options_is_algorithm_enabled_import;
|
45
|
+
grpc_metadata_array_init_type grpc_metadata_array_init_import;
|
46
|
+
grpc_metadata_array_destroy_type grpc_metadata_array_destroy_import;
|
47
|
+
grpc_call_details_init_type grpc_call_details_init_import;
|
48
|
+
grpc_call_details_destroy_type grpc_call_details_destroy_import;
|
49
|
+
grpc_init_type grpc_init_import;
|
50
|
+
grpc_shutdown_type grpc_shutdown_import;
|
51
|
+
grpc_is_initialized_type grpc_is_initialized_import;
|
52
|
+
grpc_shutdown_blocking_type grpc_shutdown_blocking_import;
|
53
|
+
grpc_version_string_type grpc_version_string_import;
|
54
|
+
grpc_g_stands_for_type grpc_g_stands_for_import;
|
55
|
+
grpc_completion_queue_factory_lookup_type grpc_completion_queue_factory_lookup_import;
|
56
|
+
grpc_completion_queue_create_for_next_type grpc_completion_queue_create_for_next_import;
|
57
|
+
grpc_completion_queue_create_for_pluck_type grpc_completion_queue_create_for_pluck_import;
|
58
|
+
grpc_completion_queue_create_for_callback_type grpc_completion_queue_create_for_callback_import;
|
59
|
+
grpc_completion_queue_create_type grpc_completion_queue_create_import;
|
60
|
+
grpc_completion_queue_next_type grpc_completion_queue_next_import;
|
61
|
+
grpc_completion_queue_pluck_type grpc_completion_queue_pluck_import;
|
62
|
+
grpc_completion_queue_shutdown_type grpc_completion_queue_shutdown_import;
|
63
|
+
grpc_completion_queue_destroy_type grpc_completion_queue_destroy_import;
|
64
|
+
grpc_completion_queue_thread_local_cache_init_type grpc_completion_queue_thread_local_cache_init_import;
|
65
|
+
grpc_completion_queue_thread_local_cache_flush_type grpc_completion_queue_thread_local_cache_flush_import;
|
66
|
+
grpc_channel_check_connectivity_state_type grpc_channel_check_connectivity_state_import;
|
67
|
+
grpc_channel_num_external_connectivity_watchers_type grpc_channel_num_external_connectivity_watchers_import;
|
68
|
+
grpc_channel_watch_connectivity_state_type grpc_channel_watch_connectivity_state_import;
|
69
|
+
grpc_channel_support_connectivity_watcher_type grpc_channel_support_connectivity_watcher_import;
|
70
|
+
grpc_channel_create_call_type grpc_channel_create_call_import;
|
71
|
+
grpc_channel_register_call_type grpc_channel_register_call_import;
|
72
|
+
grpc_channel_create_registered_call_type grpc_channel_create_registered_call_import;
|
73
|
+
grpc_call_arena_alloc_type grpc_call_arena_alloc_import;
|
74
|
+
grpc_call_start_batch_type grpc_call_start_batch_import;
|
75
|
+
grpc_call_get_peer_type grpc_call_get_peer_import;
|
76
|
+
grpc_census_call_set_context_type grpc_census_call_set_context_import;
|
77
|
+
grpc_census_call_get_context_type grpc_census_call_get_context_import;
|
78
|
+
grpc_channel_get_target_type grpc_channel_get_target_import;
|
79
|
+
grpc_channel_get_info_type grpc_channel_get_info_import;
|
80
|
+
grpc_channel_reset_connect_backoff_type grpc_channel_reset_connect_backoff_import;
|
81
|
+
grpc_channel_credentials_release_type grpc_channel_credentials_release_import;
|
82
|
+
grpc_server_credentials_release_type grpc_server_credentials_release_import;
|
83
|
+
grpc_channel_create_type grpc_channel_create_import;
|
84
|
+
grpc_lame_client_channel_create_type grpc_lame_client_channel_create_import;
|
85
|
+
grpc_channel_destroy_type grpc_channel_destroy_import;
|
86
|
+
grpc_call_cancel_type grpc_call_cancel_import;
|
87
|
+
grpc_call_cancel_with_status_type grpc_call_cancel_with_status_import;
|
88
|
+
grpc_call_failed_before_recv_message_type grpc_call_failed_before_recv_message_import;
|
89
|
+
grpc_call_ref_type grpc_call_ref_import;
|
90
|
+
grpc_call_unref_type grpc_call_unref_import;
|
91
|
+
grpc_server_request_call_type grpc_server_request_call_import;
|
92
|
+
grpc_server_register_method_type grpc_server_register_method_import;
|
93
|
+
grpc_server_request_registered_call_type grpc_server_request_registered_call_import;
|
94
|
+
grpc_server_create_type grpc_server_create_import;
|
95
|
+
grpc_server_register_completion_queue_type grpc_server_register_completion_queue_import;
|
96
|
+
grpc_server_config_fetcher_xds_create_type grpc_server_config_fetcher_xds_create_import;
|
97
|
+
grpc_server_config_fetcher_destroy_type grpc_server_config_fetcher_destroy_import;
|
98
|
+
grpc_server_set_config_fetcher_type grpc_server_set_config_fetcher_import;
|
99
|
+
grpc_server_add_http2_port_type grpc_server_add_http2_port_import;
|
100
|
+
grpc_server_start_type grpc_server_start_import;
|
101
|
+
grpc_server_shutdown_and_notify_type grpc_server_shutdown_and_notify_import;
|
102
|
+
grpc_server_cancel_all_calls_type grpc_server_cancel_all_calls_import;
|
103
|
+
grpc_server_destroy_type grpc_server_destroy_import;
|
104
|
+
grpc_tracer_set_enabled_type grpc_tracer_set_enabled_import;
|
105
|
+
grpc_header_key_is_legal_type grpc_header_key_is_legal_import;
|
106
|
+
grpc_header_nonbin_value_is_legal_type grpc_header_nonbin_value_is_legal_import;
|
107
|
+
grpc_is_binary_header_type grpc_is_binary_header_import;
|
108
|
+
grpc_call_error_to_string_type grpc_call_error_to_string_import;
|
109
|
+
grpc_resource_quota_create_type grpc_resource_quota_create_import;
|
110
|
+
grpc_resource_quota_ref_type grpc_resource_quota_ref_import;
|
111
|
+
grpc_resource_quota_unref_type grpc_resource_quota_unref_import;
|
112
|
+
grpc_resource_quota_resize_type grpc_resource_quota_resize_import;
|
113
|
+
grpc_resource_quota_set_max_threads_type grpc_resource_quota_set_max_threads_import;
|
114
|
+
grpc_dump_xds_configs_type grpc_dump_xds_configs_import;
|
115
|
+
grpc_resource_quota_arg_vtable_type grpc_resource_quota_arg_vtable_import;
|
116
|
+
grpc_channelz_get_top_channels_type grpc_channelz_get_top_channels_import;
|
117
|
+
grpc_channelz_get_servers_type grpc_channelz_get_servers_import;
|
118
|
+
grpc_channelz_get_server_type grpc_channelz_get_server_import;
|
119
|
+
grpc_channelz_get_server_sockets_type grpc_channelz_get_server_sockets_import;
|
120
|
+
grpc_channelz_get_channel_type grpc_channelz_get_channel_import;
|
121
|
+
grpc_channelz_get_subchannel_type grpc_channelz_get_subchannel_import;
|
122
|
+
grpc_channelz_get_socket_type grpc_channelz_get_socket_import;
|
123
|
+
grpc_authorization_policy_provider_arg_vtable_type grpc_authorization_policy_provider_arg_vtable_import;
|
124
|
+
grpc_channel_create_from_fd_type grpc_channel_create_from_fd_import;
|
125
|
+
grpc_server_add_channel_from_fd_type grpc_server_add_channel_from_fd_import;
|
126
|
+
grpc_auth_property_iterator_next_type grpc_auth_property_iterator_next_import;
|
127
|
+
grpc_auth_context_property_iterator_type grpc_auth_context_property_iterator_import;
|
128
|
+
grpc_auth_context_peer_identity_type grpc_auth_context_peer_identity_import;
|
129
|
+
grpc_auth_context_find_properties_by_name_type grpc_auth_context_find_properties_by_name_import;
|
130
|
+
grpc_auth_context_peer_identity_property_name_type grpc_auth_context_peer_identity_property_name_import;
|
131
|
+
grpc_auth_context_peer_is_authenticated_type grpc_auth_context_peer_is_authenticated_import;
|
132
|
+
grpc_call_auth_context_type grpc_call_auth_context_import;
|
133
|
+
grpc_auth_context_release_type grpc_auth_context_release_import;
|
134
|
+
grpc_auth_context_add_property_type grpc_auth_context_add_property_import;
|
135
|
+
grpc_auth_context_add_cstring_property_type grpc_auth_context_add_cstring_property_import;
|
136
|
+
grpc_auth_context_set_peer_identity_property_name_type grpc_auth_context_set_peer_identity_property_name_import;
|
137
|
+
grpc_ssl_session_cache_create_lru_type grpc_ssl_session_cache_create_lru_import;
|
138
|
+
grpc_ssl_session_cache_destroy_type grpc_ssl_session_cache_destroy_import;
|
139
|
+
grpc_ssl_session_cache_create_channel_arg_type grpc_ssl_session_cache_create_channel_arg_import;
|
140
|
+
grpc_call_credentials_release_type grpc_call_credentials_release_import;
|
141
|
+
grpc_google_default_credentials_create_type grpc_google_default_credentials_create_import;
|
142
|
+
grpc_set_ssl_roots_override_callback_type grpc_set_ssl_roots_override_callback_import;
|
143
|
+
grpc_ssl_credentials_create_type grpc_ssl_credentials_create_import;
|
144
|
+
grpc_ssl_credentials_create_ex_type grpc_ssl_credentials_create_ex_import;
|
145
|
+
grpc_composite_channel_credentials_create_type grpc_composite_channel_credentials_create_import;
|
146
|
+
grpc_composite_call_credentials_create_type grpc_composite_call_credentials_create_import;
|
147
|
+
grpc_google_compute_engine_credentials_create_type grpc_google_compute_engine_credentials_create_import;
|
148
|
+
grpc_max_auth_token_lifetime_type grpc_max_auth_token_lifetime_import;
|
149
|
+
grpc_service_account_jwt_access_credentials_create_type grpc_service_account_jwt_access_credentials_create_import;
|
150
|
+
grpc_external_account_credentials_create_type grpc_external_account_credentials_create_import;
|
151
|
+
grpc_google_refresh_token_credentials_create_type grpc_google_refresh_token_credentials_create_import;
|
152
|
+
grpc_access_token_credentials_create_type grpc_access_token_credentials_create_import;
|
153
|
+
grpc_google_iam_credentials_create_type grpc_google_iam_credentials_create_import;
|
154
|
+
grpc_sts_credentials_create_type grpc_sts_credentials_create_import;
|
155
|
+
grpc_auth_metadata_context_copy_type grpc_auth_metadata_context_copy_import;
|
156
|
+
grpc_auth_metadata_context_reset_type grpc_auth_metadata_context_reset_import;
|
157
|
+
grpc_metadata_credentials_create_from_plugin_type grpc_metadata_credentials_create_from_plugin_import;
|
158
|
+
grpc_ssl_server_certificate_config_create_type grpc_ssl_server_certificate_config_create_import;
|
159
|
+
grpc_ssl_server_certificate_config_destroy_type grpc_ssl_server_certificate_config_destroy_import;
|
160
|
+
grpc_ssl_server_credentials_create_type grpc_ssl_server_credentials_create_import;
|
161
|
+
grpc_ssl_server_credentials_create_ex_type grpc_ssl_server_credentials_create_ex_import;
|
162
|
+
grpc_ssl_server_credentials_create_options_using_config_type grpc_ssl_server_credentials_create_options_using_config_import;
|
163
|
+
grpc_ssl_server_credentials_create_options_using_config_fetcher_type grpc_ssl_server_credentials_create_options_using_config_fetcher_import;
|
164
|
+
grpc_ssl_server_credentials_options_destroy_type grpc_ssl_server_credentials_options_destroy_import;
|
165
|
+
grpc_ssl_server_credentials_create_with_options_type grpc_ssl_server_credentials_create_with_options_import;
|
166
|
+
grpc_call_set_credentials_type grpc_call_set_credentials_import;
|
167
|
+
grpc_server_credentials_set_auth_metadata_processor_type grpc_server_credentials_set_auth_metadata_processor_import;
|
168
|
+
grpc_alts_credentials_client_options_create_type grpc_alts_credentials_client_options_create_import;
|
169
|
+
grpc_alts_credentials_server_options_create_type grpc_alts_credentials_server_options_create_import;
|
170
|
+
grpc_alts_credentials_client_options_add_target_service_account_type grpc_alts_credentials_client_options_add_target_service_account_import;
|
171
|
+
grpc_alts_credentials_options_destroy_type grpc_alts_credentials_options_destroy_import;
|
172
|
+
grpc_alts_credentials_create_type grpc_alts_credentials_create_import;
|
173
|
+
grpc_alts_server_credentials_create_type grpc_alts_server_credentials_create_import;
|
174
|
+
grpc_local_credentials_create_type grpc_local_credentials_create_import;
|
175
|
+
grpc_local_server_credentials_create_type grpc_local_server_credentials_create_import;
|
176
|
+
grpc_tls_identity_pairs_create_type grpc_tls_identity_pairs_create_import;
|
177
|
+
grpc_tls_identity_pairs_add_pair_type grpc_tls_identity_pairs_add_pair_import;
|
178
|
+
grpc_tls_identity_pairs_destroy_type grpc_tls_identity_pairs_destroy_import;
|
179
|
+
grpc_tls_certificate_provider_static_data_create_type grpc_tls_certificate_provider_static_data_create_import;
|
180
|
+
grpc_tls_certificate_provider_file_watcher_create_type grpc_tls_certificate_provider_file_watcher_create_import;
|
181
|
+
grpc_tls_certificate_provider_release_type grpc_tls_certificate_provider_release_import;
|
182
|
+
grpc_tls_credentials_options_create_type grpc_tls_credentials_options_create_import;
|
183
|
+
grpc_tls_credentials_options_copy_type grpc_tls_credentials_options_copy_import;
|
184
|
+
grpc_tls_credentials_options_destroy_type grpc_tls_credentials_options_destroy_import;
|
185
|
+
grpc_tls_credentials_options_set_certificate_provider_type grpc_tls_credentials_options_set_certificate_provider_import;
|
186
|
+
grpc_tls_credentials_options_watch_root_certs_type grpc_tls_credentials_options_watch_root_certs_import;
|
187
|
+
grpc_tls_credentials_options_set_root_cert_name_type grpc_tls_credentials_options_set_root_cert_name_import;
|
188
|
+
grpc_tls_credentials_options_watch_identity_key_cert_pairs_type grpc_tls_credentials_options_watch_identity_key_cert_pairs_import;
|
189
|
+
grpc_tls_credentials_options_set_identity_cert_name_type grpc_tls_credentials_options_set_identity_cert_name_import;
|
190
|
+
grpc_tls_credentials_options_set_cert_request_type_type grpc_tls_credentials_options_set_cert_request_type_import;
|
191
|
+
grpc_tls_credentials_options_set_crl_directory_type grpc_tls_credentials_options_set_crl_directory_import;
|
192
|
+
grpc_tls_credentials_options_set_verify_server_cert_type grpc_tls_credentials_options_set_verify_server_cert_import;
|
193
|
+
grpc_tls_credentials_options_set_send_client_ca_list_type grpc_tls_credentials_options_set_send_client_ca_list_import;
|
194
|
+
grpc_tls_credentials_options_set_check_call_host_type grpc_tls_credentials_options_set_check_call_host_import;
|
195
|
+
grpc_insecure_credentials_create_type grpc_insecure_credentials_create_import;
|
196
|
+
grpc_insecure_server_credentials_create_type grpc_insecure_server_credentials_create_import;
|
197
|
+
grpc_xds_credentials_create_type grpc_xds_credentials_create_import;
|
198
|
+
grpc_xds_server_credentials_create_type grpc_xds_server_credentials_create_import;
|
199
|
+
grpc_authorization_policy_provider_static_data_create_type grpc_authorization_policy_provider_static_data_create_import;
|
200
|
+
grpc_authorization_policy_provider_file_watcher_create_type grpc_authorization_policy_provider_file_watcher_create_import;
|
201
|
+
grpc_authorization_policy_provider_release_type grpc_authorization_policy_provider_release_import;
|
202
|
+
grpc_tls_credentials_options_set_tls_session_key_log_file_path_type grpc_tls_credentials_options_set_tls_session_key_log_file_path_import;
|
203
|
+
grpc_slice_ref_type grpc_slice_ref_import;
|
204
|
+
grpc_slice_unref_type grpc_slice_unref_import;
|
205
|
+
grpc_slice_copy_type grpc_slice_copy_import;
|
206
|
+
grpc_slice_new_type grpc_slice_new_import;
|
207
|
+
grpc_slice_new_with_user_data_type grpc_slice_new_with_user_data_import;
|
208
|
+
grpc_slice_new_with_len_type grpc_slice_new_with_len_import;
|
209
|
+
grpc_slice_malloc_type grpc_slice_malloc_import;
|
210
|
+
grpc_slice_malloc_large_type grpc_slice_malloc_large_import;
|
211
|
+
grpc_slice_from_copied_string_type grpc_slice_from_copied_string_import;
|
212
|
+
grpc_slice_from_copied_buffer_type grpc_slice_from_copied_buffer_import;
|
213
|
+
grpc_slice_from_static_string_type grpc_slice_from_static_string_import;
|
214
|
+
grpc_slice_from_static_buffer_type grpc_slice_from_static_buffer_import;
|
215
|
+
grpc_slice_sub_type grpc_slice_sub_import;
|
216
|
+
grpc_slice_sub_no_ref_type grpc_slice_sub_no_ref_import;
|
217
|
+
grpc_slice_split_tail_type grpc_slice_split_tail_import;
|
218
|
+
grpc_slice_split_tail_maybe_ref_type grpc_slice_split_tail_maybe_ref_import;
|
219
|
+
grpc_slice_split_head_type grpc_slice_split_head_import;
|
220
|
+
grpc_empty_slice_type grpc_empty_slice_import;
|
221
|
+
grpc_slice_eq_type grpc_slice_eq_import;
|
222
|
+
grpc_slice_cmp_type grpc_slice_cmp_import;
|
223
|
+
grpc_slice_str_cmp_type grpc_slice_str_cmp_import;
|
224
|
+
grpc_slice_buf_start_eq_type grpc_slice_buf_start_eq_import;
|
225
|
+
grpc_slice_rchr_type grpc_slice_rchr_import;
|
226
|
+
grpc_slice_chr_type grpc_slice_chr_import;
|
227
|
+
grpc_slice_slice_type grpc_slice_slice_import;
|
228
|
+
grpc_slice_is_equivalent_type grpc_slice_is_equivalent_import;
|
229
|
+
grpc_slice_dup_type grpc_slice_dup_import;
|
230
|
+
grpc_slice_to_c_string_type grpc_slice_to_c_string_import;
|
231
|
+
grpc_slice_buffer_init_type grpc_slice_buffer_init_import;
|
232
|
+
grpc_slice_buffer_destroy_type grpc_slice_buffer_destroy_import;
|
233
|
+
grpc_slice_buffer_add_type grpc_slice_buffer_add_import;
|
234
|
+
grpc_slice_buffer_add_indexed_type grpc_slice_buffer_add_indexed_import;
|
235
|
+
grpc_slice_buffer_addn_type grpc_slice_buffer_addn_import;
|
236
|
+
grpc_slice_buffer_tiny_add_type grpc_slice_buffer_tiny_add_import;
|
237
|
+
grpc_slice_buffer_pop_type grpc_slice_buffer_pop_import;
|
238
|
+
grpc_slice_buffer_reset_and_unref_type grpc_slice_buffer_reset_and_unref_import;
|
239
|
+
grpc_slice_buffer_swap_type grpc_slice_buffer_swap_import;
|
240
|
+
grpc_slice_buffer_move_into_type grpc_slice_buffer_move_into_import;
|
241
|
+
grpc_slice_buffer_trim_end_type grpc_slice_buffer_trim_end_import;
|
242
|
+
grpc_slice_buffer_move_first_type grpc_slice_buffer_move_first_import;
|
243
|
+
grpc_slice_buffer_move_first_no_ref_type grpc_slice_buffer_move_first_no_ref_import;
|
244
|
+
grpc_slice_buffer_move_first_into_buffer_type grpc_slice_buffer_move_first_into_buffer_import;
|
245
|
+
grpc_slice_buffer_take_first_type grpc_slice_buffer_take_first_import;
|
246
|
+
grpc_slice_buffer_undo_take_first_type grpc_slice_buffer_undo_take_first_import;
|
247
|
+
gpr_malloc_type gpr_malloc_import;
|
248
|
+
gpr_zalloc_type gpr_zalloc_import;
|
249
|
+
gpr_free_type gpr_free_import;
|
250
|
+
gpr_realloc_type gpr_realloc_import;
|
251
|
+
gpr_malloc_aligned_type gpr_malloc_aligned_import;
|
252
|
+
gpr_free_aligned_type gpr_free_aligned_import;
|
253
|
+
gpr_cpu_num_cores_type gpr_cpu_num_cores_import;
|
254
|
+
gpr_cpu_current_cpu_type gpr_cpu_current_cpu_import;
|
255
|
+
gpr_log_severity_string_type gpr_log_severity_string_import;
|
256
|
+
gpr_log_type gpr_log_import;
|
257
|
+
gpr_should_log_type gpr_should_log_import;
|
258
|
+
gpr_log_message_type gpr_log_message_import;
|
259
|
+
gpr_set_log_verbosity_type gpr_set_log_verbosity_import;
|
260
|
+
gpr_log_verbosity_init_type gpr_log_verbosity_init_import;
|
261
|
+
gpr_set_log_function_type gpr_set_log_function_import;
|
262
|
+
gpr_assertion_failed_type gpr_assertion_failed_import;
|
263
|
+
gpr_format_message_type gpr_format_message_import;
|
264
|
+
gpr_strdup_type gpr_strdup_import;
|
265
|
+
gpr_asprintf_type gpr_asprintf_import;
|
266
|
+
gpr_mu_init_type gpr_mu_init_import;
|
267
|
+
gpr_mu_destroy_type gpr_mu_destroy_import;
|
268
|
+
gpr_mu_lock_type gpr_mu_lock_import;
|
269
|
+
gpr_mu_unlock_type gpr_mu_unlock_import;
|
270
|
+
gpr_mu_trylock_type gpr_mu_trylock_import;
|
271
|
+
gpr_cv_init_type gpr_cv_init_import;
|
272
|
+
gpr_cv_destroy_type gpr_cv_destroy_import;
|
273
|
+
gpr_cv_wait_type gpr_cv_wait_import;
|
274
|
+
gpr_cv_signal_type gpr_cv_signal_import;
|
275
|
+
gpr_cv_broadcast_type gpr_cv_broadcast_import;
|
276
|
+
gpr_once_init_type gpr_once_init_import;
|
277
|
+
gpr_event_init_type gpr_event_init_import;
|
278
|
+
gpr_event_set_type gpr_event_set_import;
|
279
|
+
gpr_event_get_type gpr_event_get_import;
|
280
|
+
gpr_event_wait_type gpr_event_wait_import;
|
281
|
+
gpr_ref_init_type gpr_ref_init_import;
|
282
|
+
gpr_ref_type gpr_ref_import;
|
283
|
+
gpr_ref_non_zero_type gpr_ref_non_zero_import;
|
284
|
+
gpr_refn_type gpr_refn_import;
|
285
|
+
gpr_unref_type gpr_unref_import;
|
286
|
+
gpr_ref_is_unique_type gpr_ref_is_unique_import;
|
287
|
+
gpr_stats_init_type gpr_stats_init_import;
|
288
|
+
gpr_stats_inc_type gpr_stats_inc_import;
|
289
|
+
gpr_stats_read_type gpr_stats_read_import;
|
290
|
+
gpr_thd_currentid_type gpr_thd_currentid_import;
|
291
|
+
gpr_time_0_type gpr_time_0_import;
|
292
|
+
gpr_inf_future_type gpr_inf_future_import;
|
293
|
+
gpr_inf_past_type gpr_inf_past_import;
|
294
|
+
gpr_time_init_type gpr_time_init_import;
|
295
|
+
gpr_now_type gpr_now_import;
|
296
|
+
gpr_convert_clock_type_type gpr_convert_clock_type_import;
|
297
|
+
gpr_time_cmp_type gpr_time_cmp_import;
|
298
|
+
gpr_time_max_type gpr_time_max_import;
|
299
|
+
gpr_time_min_type gpr_time_min_import;
|
300
|
+
gpr_time_add_type gpr_time_add_import;
|
301
|
+
gpr_time_sub_type gpr_time_sub_import;
|
302
|
+
gpr_time_from_micros_type gpr_time_from_micros_import;
|
303
|
+
gpr_time_from_nanos_type gpr_time_from_nanos_import;
|
304
|
+
gpr_time_from_millis_type gpr_time_from_millis_import;
|
305
|
+
gpr_time_from_seconds_type gpr_time_from_seconds_import;
|
306
|
+
gpr_time_from_minutes_type gpr_time_from_minutes_import;
|
307
|
+
gpr_time_from_hours_type gpr_time_from_hours_import;
|
308
|
+
gpr_time_to_millis_type gpr_time_to_millis_import;
|
309
|
+
gpr_time_similar_type gpr_time_similar_import;
|
310
|
+
gpr_sleep_until_type gpr_sleep_until_import;
|
311
|
+
gpr_timespec_to_micros_type gpr_timespec_to_micros_import;
|
312
|
+
|
313
|
+
void grpc_rb_load_imports(HMODULE library) {
|
314
|
+
grpc_raw_byte_buffer_create_import = (grpc_raw_byte_buffer_create_type) GetProcAddress(library, "grpc_raw_byte_buffer_create");
|
315
|
+
grpc_raw_compressed_byte_buffer_create_import = (grpc_raw_compressed_byte_buffer_create_type) GetProcAddress(library, "grpc_raw_compressed_byte_buffer_create");
|
316
|
+
grpc_byte_buffer_copy_import = (grpc_byte_buffer_copy_type) GetProcAddress(library, "grpc_byte_buffer_copy");
|
317
|
+
grpc_byte_buffer_length_import = (grpc_byte_buffer_length_type) GetProcAddress(library, "grpc_byte_buffer_length");
|
318
|
+
grpc_byte_buffer_destroy_import = (grpc_byte_buffer_destroy_type) GetProcAddress(library, "grpc_byte_buffer_destroy");
|
319
|
+
grpc_byte_buffer_reader_init_import = (grpc_byte_buffer_reader_init_type) GetProcAddress(library, "grpc_byte_buffer_reader_init");
|
320
|
+
grpc_byte_buffer_reader_destroy_import = (grpc_byte_buffer_reader_destroy_type) GetProcAddress(library, "grpc_byte_buffer_reader_destroy");
|
321
|
+
grpc_byte_buffer_reader_next_import = (grpc_byte_buffer_reader_next_type) GetProcAddress(library, "grpc_byte_buffer_reader_next");
|
322
|
+
grpc_byte_buffer_reader_peek_import = (grpc_byte_buffer_reader_peek_type) GetProcAddress(library, "grpc_byte_buffer_reader_peek");
|
323
|
+
grpc_byte_buffer_reader_readall_import = (grpc_byte_buffer_reader_readall_type) GetProcAddress(library, "grpc_byte_buffer_reader_readall");
|
324
|
+
grpc_raw_byte_buffer_from_reader_import = (grpc_raw_byte_buffer_from_reader_type) GetProcAddress(library, "grpc_raw_byte_buffer_from_reader");
|
325
|
+
grpc_compression_algorithm_is_message_import = (grpc_compression_algorithm_is_message_type) GetProcAddress(library, "grpc_compression_algorithm_is_message");
|
326
|
+
grpc_compression_algorithm_is_stream_import = (grpc_compression_algorithm_is_stream_type) GetProcAddress(library, "grpc_compression_algorithm_is_stream");
|
327
|
+
grpc_compression_algorithm_parse_import = (grpc_compression_algorithm_parse_type) GetProcAddress(library, "grpc_compression_algorithm_parse");
|
328
|
+
grpc_compression_algorithm_name_import = (grpc_compression_algorithm_name_type) GetProcAddress(library, "grpc_compression_algorithm_name");
|
329
|
+
grpc_compression_algorithm_for_level_import = (grpc_compression_algorithm_for_level_type) GetProcAddress(library, "grpc_compression_algorithm_for_level");
|
330
|
+
grpc_compression_options_init_import = (grpc_compression_options_init_type) GetProcAddress(library, "grpc_compression_options_init");
|
331
|
+
grpc_compression_options_enable_algorithm_import = (grpc_compression_options_enable_algorithm_type) GetProcAddress(library, "grpc_compression_options_enable_algorithm");
|
332
|
+
grpc_compression_options_disable_algorithm_import = (grpc_compression_options_disable_algorithm_type) GetProcAddress(library, "grpc_compression_options_disable_algorithm");
|
333
|
+
grpc_compression_options_is_algorithm_enabled_import = (grpc_compression_options_is_algorithm_enabled_type) GetProcAddress(library, "grpc_compression_options_is_algorithm_enabled");
|
334
|
+
grpc_metadata_array_init_import = (grpc_metadata_array_init_type) GetProcAddress(library, "grpc_metadata_array_init");
|
335
|
+
grpc_metadata_array_destroy_import = (grpc_metadata_array_destroy_type) GetProcAddress(library, "grpc_metadata_array_destroy");
|
336
|
+
grpc_call_details_init_import = (grpc_call_details_init_type) GetProcAddress(library, "grpc_call_details_init");
|
337
|
+
grpc_call_details_destroy_import = (grpc_call_details_destroy_type) GetProcAddress(library, "grpc_call_details_destroy");
|
338
|
+
grpc_init_import = (grpc_init_type) GetProcAddress(library, "grpc_init");
|
339
|
+
grpc_shutdown_import = (grpc_shutdown_type) GetProcAddress(library, "grpc_shutdown");
|
340
|
+
grpc_is_initialized_import = (grpc_is_initialized_type) GetProcAddress(library, "grpc_is_initialized");
|
341
|
+
grpc_shutdown_blocking_import = (grpc_shutdown_blocking_type) GetProcAddress(library, "grpc_shutdown_blocking");
|
342
|
+
grpc_version_string_import = (grpc_version_string_type) GetProcAddress(library, "grpc_version_string");
|
343
|
+
grpc_g_stands_for_import = (grpc_g_stands_for_type) GetProcAddress(library, "grpc_g_stands_for");
|
344
|
+
grpc_completion_queue_factory_lookup_import = (grpc_completion_queue_factory_lookup_type) GetProcAddress(library, "grpc_completion_queue_factory_lookup");
|
345
|
+
grpc_completion_queue_create_for_next_import = (grpc_completion_queue_create_for_next_type) GetProcAddress(library, "grpc_completion_queue_create_for_next");
|
346
|
+
grpc_completion_queue_create_for_pluck_import = (grpc_completion_queue_create_for_pluck_type) GetProcAddress(library, "grpc_completion_queue_create_for_pluck");
|
347
|
+
grpc_completion_queue_create_for_callback_import = (grpc_completion_queue_create_for_callback_type) GetProcAddress(library, "grpc_completion_queue_create_for_callback");
|
348
|
+
grpc_completion_queue_create_import = (grpc_completion_queue_create_type) GetProcAddress(library, "grpc_completion_queue_create");
|
349
|
+
grpc_completion_queue_next_import = (grpc_completion_queue_next_type) GetProcAddress(library, "grpc_completion_queue_next");
|
350
|
+
grpc_completion_queue_pluck_import = (grpc_completion_queue_pluck_type) GetProcAddress(library, "grpc_completion_queue_pluck");
|
351
|
+
grpc_completion_queue_shutdown_import = (grpc_completion_queue_shutdown_type) GetProcAddress(library, "grpc_completion_queue_shutdown");
|
352
|
+
grpc_completion_queue_destroy_import = (grpc_completion_queue_destroy_type) GetProcAddress(library, "grpc_completion_queue_destroy");
|
353
|
+
grpc_completion_queue_thread_local_cache_init_import = (grpc_completion_queue_thread_local_cache_init_type) GetProcAddress(library, "grpc_completion_queue_thread_local_cache_init");
|
354
|
+
grpc_completion_queue_thread_local_cache_flush_import = (grpc_completion_queue_thread_local_cache_flush_type) GetProcAddress(library, "grpc_completion_queue_thread_local_cache_flush");
|
355
|
+
grpc_channel_check_connectivity_state_import = (grpc_channel_check_connectivity_state_type) GetProcAddress(library, "grpc_channel_check_connectivity_state");
|
356
|
+
grpc_channel_num_external_connectivity_watchers_import = (grpc_channel_num_external_connectivity_watchers_type) GetProcAddress(library, "grpc_channel_num_external_connectivity_watchers");
|
357
|
+
grpc_channel_watch_connectivity_state_import = (grpc_channel_watch_connectivity_state_type) GetProcAddress(library, "grpc_channel_watch_connectivity_state");
|
358
|
+
grpc_channel_support_connectivity_watcher_import = (grpc_channel_support_connectivity_watcher_type) GetProcAddress(library, "grpc_channel_support_connectivity_watcher");
|
359
|
+
grpc_channel_create_call_import = (grpc_channel_create_call_type) GetProcAddress(library, "grpc_channel_create_call");
|
360
|
+
grpc_channel_register_call_import = (grpc_channel_register_call_type) GetProcAddress(library, "grpc_channel_register_call");
|
361
|
+
grpc_channel_create_registered_call_import = (grpc_channel_create_registered_call_type) GetProcAddress(library, "grpc_channel_create_registered_call");
|
362
|
+
grpc_call_arena_alloc_import = (grpc_call_arena_alloc_type) GetProcAddress(library, "grpc_call_arena_alloc");
|
363
|
+
grpc_call_start_batch_import = (grpc_call_start_batch_type) GetProcAddress(library, "grpc_call_start_batch");
|
364
|
+
grpc_call_get_peer_import = (grpc_call_get_peer_type) GetProcAddress(library, "grpc_call_get_peer");
|
365
|
+
grpc_census_call_set_context_import = (grpc_census_call_set_context_type) GetProcAddress(library, "grpc_census_call_set_context");
|
366
|
+
grpc_census_call_get_context_import = (grpc_census_call_get_context_type) GetProcAddress(library, "grpc_census_call_get_context");
|
367
|
+
grpc_channel_get_target_import = (grpc_channel_get_target_type) GetProcAddress(library, "grpc_channel_get_target");
|
368
|
+
grpc_channel_get_info_import = (grpc_channel_get_info_type) GetProcAddress(library, "grpc_channel_get_info");
|
369
|
+
grpc_channel_reset_connect_backoff_import = (grpc_channel_reset_connect_backoff_type) GetProcAddress(library, "grpc_channel_reset_connect_backoff");
|
370
|
+
grpc_channel_credentials_release_import = (grpc_channel_credentials_release_type) GetProcAddress(library, "grpc_channel_credentials_release");
|
371
|
+
grpc_server_credentials_release_import = (grpc_server_credentials_release_type) GetProcAddress(library, "grpc_server_credentials_release");
|
372
|
+
grpc_channel_create_import = (grpc_channel_create_type) GetProcAddress(library, "grpc_channel_create");
|
373
|
+
grpc_lame_client_channel_create_import = (grpc_lame_client_channel_create_type) GetProcAddress(library, "grpc_lame_client_channel_create");
|
374
|
+
grpc_channel_destroy_import = (grpc_channel_destroy_type) GetProcAddress(library, "grpc_channel_destroy");
|
375
|
+
grpc_call_cancel_import = (grpc_call_cancel_type) GetProcAddress(library, "grpc_call_cancel");
|
376
|
+
grpc_call_cancel_with_status_import = (grpc_call_cancel_with_status_type) GetProcAddress(library, "grpc_call_cancel_with_status");
|
377
|
+
grpc_call_failed_before_recv_message_import = (grpc_call_failed_before_recv_message_type) GetProcAddress(library, "grpc_call_failed_before_recv_message");
|
378
|
+
grpc_call_ref_import = (grpc_call_ref_type) GetProcAddress(library, "grpc_call_ref");
|
379
|
+
grpc_call_unref_import = (grpc_call_unref_type) GetProcAddress(library, "grpc_call_unref");
|
380
|
+
grpc_server_request_call_import = (grpc_server_request_call_type) GetProcAddress(library, "grpc_server_request_call");
|
381
|
+
grpc_server_register_method_import = (grpc_server_register_method_type) GetProcAddress(library, "grpc_server_register_method");
|
382
|
+
grpc_server_request_registered_call_import = (grpc_server_request_registered_call_type) GetProcAddress(library, "grpc_server_request_registered_call");
|
383
|
+
grpc_server_create_import = (grpc_server_create_type) GetProcAddress(library, "grpc_server_create");
|
384
|
+
grpc_server_register_completion_queue_import = (grpc_server_register_completion_queue_type) GetProcAddress(library, "grpc_server_register_completion_queue");
|
385
|
+
grpc_server_config_fetcher_xds_create_import = (grpc_server_config_fetcher_xds_create_type) GetProcAddress(library, "grpc_server_config_fetcher_xds_create");
|
386
|
+
grpc_server_config_fetcher_destroy_import = (grpc_server_config_fetcher_destroy_type) GetProcAddress(library, "grpc_server_config_fetcher_destroy");
|
387
|
+
grpc_server_set_config_fetcher_import = (grpc_server_set_config_fetcher_type) GetProcAddress(library, "grpc_server_set_config_fetcher");
|
388
|
+
grpc_server_add_http2_port_import = (grpc_server_add_http2_port_type) GetProcAddress(library, "grpc_server_add_http2_port");
|
389
|
+
grpc_server_start_import = (grpc_server_start_type) GetProcAddress(library, "grpc_server_start");
|
390
|
+
grpc_server_shutdown_and_notify_import = (grpc_server_shutdown_and_notify_type) GetProcAddress(library, "grpc_server_shutdown_and_notify");
|
391
|
+
grpc_server_cancel_all_calls_import = (grpc_server_cancel_all_calls_type) GetProcAddress(library, "grpc_server_cancel_all_calls");
|
392
|
+
grpc_server_destroy_import = (grpc_server_destroy_type) GetProcAddress(library, "grpc_server_destroy");
|
393
|
+
grpc_tracer_set_enabled_import = (grpc_tracer_set_enabled_type) GetProcAddress(library, "grpc_tracer_set_enabled");
|
394
|
+
grpc_header_key_is_legal_import = (grpc_header_key_is_legal_type) GetProcAddress(library, "grpc_header_key_is_legal");
|
395
|
+
grpc_header_nonbin_value_is_legal_import = (grpc_header_nonbin_value_is_legal_type) GetProcAddress(library, "grpc_header_nonbin_value_is_legal");
|
396
|
+
grpc_is_binary_header_import = (grpc_is_binary_header_type) GetProcAddress(library, "grpc_is_binary_header");
|
397
|
+
grpc_call_error_to_string_import = (grpc_call_error_to_string_type) GetProcAddress(library, "grpc_call_error_to_string");
|
398
|
+
grpc_resource_quota_create_import = (grpc_resource_quota_create_type) GetProcAddress(library, "grpc_resource_quota_create");
|
399
|
+
grpc_resource_quota_ref_import = (grpc_resource_quota_ref_type) GetProcAddress(library, "grpc_resource_quota_ref");
|
400
|
+
grpc_resource_quota_unref_import = (grpc_resource_quota_unref_type) GetProcAddress(library, "grpc_resource_quota_unref");
|
401
|
+
grpc_resource_quota_resize_import = (grpc_resource_quota_resize_type) GetProcAddress(library, "grpc_resource_quota_resize");
|
402
|
+
grpc_resource_quota_set_max_threads_import = (grpc_resource_quota_set_max_threads_type) GetProcAddress(library, "grpc_resource_quota_set_max_threads");
|
403
|
+
grpc_dump_xds_configs_import = (grpc_dump_xds_configs_type) GetProcAddress(library, "grpc_dump_xds_configs");
|
404
|
+
grpc_resource_quota_arg_vtable_import = (grpc_resource_quota_arg_vtable_type) GetProcAddress(library, "grpc_resource_quota_arg_vtable");
|
405
|
+
grpc_channelz_get_top_channels_import = (grpc_channelz_get_top_channels_type) GetProcAddress(library, "grpc_channelz_get_top_channels");
|
406
|
+
grpc_channelz_get_servers_import = (grpc_channelz_get_servers_type) GetProcAddress(library, "grpc_channelz_get_servers");
|
407
|
+
grpc_channelz_get_server_import = (grpc_channelz_get_server_type) GetProcAddress(library, "grpc_channelz_get_server");
|
408
|
+
grpc_channelz_get_server_sockets_import = (grpc_channelz_get_server_sockets_type) GetProcAddress(library, "grpc_channelz_get_server_sockets");
|
409
|
+
grpc_channelz_get_channel_import = (grpc_channelz_get_channel_type) GetProcAddress(library, "grpc_channelz_get_channel");
|
410
|
+
grpc_channelz_get_subchannel_import = (grpc_channelz_get_subchannel_type) GetProcAddress(library, "grpc_channelz_get_subchannel");
|
411
|
+
grpc_channelz_get_socket_import = (grpc_channelz_get_socket_type) GetProcAddress(library, "grpc_channelz_get_socket");
|
412
|
+
grpc_authorization_policy_provider_arg_vtable_import = (grpc_authorization_policy_provider_arg_vtable_type) GetProcAddress(library, "grpc_authorization_policy_provider_arg_vtable");
|
413
|
+
grpc_channel_create_from_fd_import = (grpc_channel_create_from_fd_type) GetProcAddress(library, "grpc_channel_create_from_fd");
|
414
|
+
grpc_server_add_channel_from_fd_import = (grpc_server_add_channel_from_fd_type) GetProcAddress(library, "grpc_server_add_channel_from_fd");
|
415
|
+
grpc_auth_property_iterator_next_import = (grpc_auth_property_iterator_next_type) GetProcAddress(library, "grpc_auth_property_iterator_next");
|
416
|
+
grpc_auth_context_property_iterator_import = (grpc_auth_context_property_iterator_type) GetProcAddress(library, "grpc_auth_context_property_iterator");
|
417
|
+
grpc_auth_context_peer_identity_import = (grpc_auth_context_peer_identity_type) GetProcAddress(library, "grpc_auth_context_peer_identity");
|
418
|
+
grpc_auth_context_find_properties_by_name_import = (grpc_auth_context_find_properties_by_name_type) GetProcAddress(library, "grpc_auth_context_find_properties_by_name");
|
419
|
+
grpc_auth_context_peer_identity_property_name_import = (grpc_auth_context_peer_identity_property_name_type) GetProcAddress(library, "grpc_auth_context_peer_identity_property_name");
|
420
|
+
grpc_auth_context_peer_is_authenticated_import = (grpc_auth_context_peer_is_authenticated_type) GetProcAddress(library, "grpc_auth_context_peer_is_authenticated");
|
421
|
+
grpc_call_auth_context_import = (grpc_call_auth_context_type) GetProcAddress(library, "grpc_call_auth_context");
|
422
|
+
grpc_auth_context_release_import = (grpc_auth_context_release_type) GetProcAddress(library, "grpc_auth_context_release");
|
423
|
+
grpc_auth_context_add_property_import = (grpc_auth_context_add_property_type) GetProcAddress(library, "grpc_auth_context_add_property");
|
424
|
+
grpc_auth_context_add_cstring_property_import = (grpc_auth_context_add_cstring_property_type) GetProcAddress(library, "grpc_auth_context_add_cstring_property");
|
425
|
+
grpc_auth_context_set_peer_identity_property_name_import = (grpc_auth_context_set_peer_identity_property_name_type) GetProcAddress(library, "grpc_auth_context_set_peer_identity_property_name");
|
426
|
+
grpc_ssl_session_cache_create_lru_import = (grpc_ssl_session_cache_create_lru_type) GetProcAddress(library, "grpc_ssl_session_cache_create_lru");
|
427
|
+
grpc_ssl_session_cache_destroy_import = (grpc_ssl_session_cache_destroy_type) GetProcAddress(library, "grpc_ssl_session_cache_destroy");
|
428
|
+
grpc_ssl_session_cache_create_channel_arg_import = (grpc_ssl_session_cache_create_channel_arg_type) GetProcAddress(library, "grpc_ssl_session_cache_create_channel_arg");
|
429
|
+
grpc_call_credentials_release_import = (grpc_call_credentials_release_type) GetProcAddress(library, "grpc_call_credentials_release");
|
430
|
+
grpc_google_default_credentials_create_import = (grpc_google_default_credentials_create_type) GetProcAddress(library, "grpc_google_default_credentials_create");
|
431
|
+
grpc_set_ssl_roots_override_callback_import = (grpc_set_ssl_roots_override_callback_type) GetProcAddress(library, "grpc_set_ssl_roots_override_callback");
|
432
|
+
grpc_ssl_credentials_create_import = (grpc_ssl_credentials_create_type) GetProcAddress(library, "grpc_ssl_credentials_create");
|
433
|
+
grpc_ssl_credentials_create_ex_import = (grpc_ssl_credentials_create_ex_type) GetProcAddress(library, "grpc_ssl_credentials_create_ex");
|
434
|
+
grpc_composite_channel_credentials_create_import = (grpc_composite_channel_credentials_create_type) GetProcAddress(library, "grpc_composite_channel_credentials_create");
|
435
|
+
grpc_composite_call_credentials_create_import = (grpc_composite_call_credentials_create_type) GetProcAddress(library, "grpc_composite_call_credentials_create");
|
436
|
+
grpc_google_compute_engine_credentials_create_import = (grpc_google_compute_engine_credentials_create_type) GetProcAddress(library, "grpc_google_compute_engine_credentials_create");
|
437
|
+
grpc_max_auth_token_lifetime_import = (grpc_max_auth_token_lifetime_type) GetProcAddress(library, "grpc_max_auth_token_lifetime");
|
438
|
+
grpc_service_account_jwt_access_credentials_create_import = (grpc_service_account_jwt_access_credentials_create_type) GetProcAddress(library, "grpc_service_account_jwt_access_credentials_create");
|
439
|
+
grpc_external_account_credentials_create_import = (grpc_external_account_credentials_create_type) GetProcAddress(library, "grpc_external_account_credentials_create");
|
440
|
+
grpc_google_refresh_token_credentials_create_import = (grpc_google_refresh_token_credentials_create_type) GetProcAddress(library, "grpc_google_refresh_token_credentials_create");
|
441
|
+
grpc_access_token_credentials_create_import = (grpc_access_token_credentials_create_type) GetProcAddress(library, "grpc_access_token_credentials_create");
|
442
|
+
grpc_google_iam_credentials_create_import = (grpc_google_iam_credentials_create_type) GetProcAddress(library, "grpc_google_iam_credentials_create");
|
443
|
+
grpc_sts_credentials_create_import = (grpc_sts_credentials_create_type) GetProcAddress(library, "grpc_sts_credentials_create");
|
444
|
+
grpc_auth_metadata_context_copy_import = (grpc_auth_metadata_context_copy_type) GetProcAddress(library, "grpc_auth_metadata_context_copy");
|
445
|
+
grpc_auth_metadata_context_reset_import = (grpc_auth_metadata_context_reset_type) GetProcAddress(library, "grpc_auth_metadata_context_reset");
|
446
|
+
grpc_metadata_credentials_create_from_plugin_import = (grpc_metadata_credentials_create_from_plugin_type) GetProcAddress(library, "grpc_metadata_credentials_create_from_plugin");
|
447
|
+
grpc_ssl_server_certificate_config_create_import = (grpc_ssl_server_certificate_config_create_type) GetProcAddress(library, "grpc_ssl_server_certificate_config_create");
|
448
|
+
grpc_ssl_server_certificate_config_destroy_import = (grpc_ssl_server_certificate_config_destroy_type) GetProcAddress(library, "grpc_ssl_server_certificate_config_destroy");
|
449
|
+
grpc_ssl_server_credentials_create_import = (grpc_ssl_server_credentials_create_type) GetProcAddress(library, "grpc_ssl_server_credentials_create");
|
450
|
+
grpc_ssl_server_credentials_create_ex_import = (grpc_ssl_server_credentials_create_ex_type) GetProcAddress(library, "grpc_ssl_server_credentials_create_ex");
|
451
|
+
grpc_ssl_server_credentials_create_options_using_config_import = (grpc_ssl_server_credentials_create_options_using_config_type) GetProcAddress(library, "grpc_ssl_server_credentials_create_options_using_config");
|
452
|
+
grpc_ssl_server_credentials_create_options_using_config_fetcher_import = (grpc_ssl_server_credentials_create_options_using_config_fetcher_type) GetProcAddress(library, "grpc_ssl_server_credentials_create_options_using_config_fetcher");
|
453
|
+
grpc_ssl_server_credentials_options_destroy_import = (grpc_ssl_server_credentials_options_destroy_type) GetProcAddress(library, "grpc_ssl_server_credentials_options_destroy");
|
454
|
+
grpc_ssl_server_credentials_create_with_options_import = (grpc_ssl_server_credentials_create_with_options_type) GetProcAddress(library, "grpc_ssl_server_credentials_create_with_options");
|
455
|
+
grpc_call_set_credentials_import = (grpc_call_set_credentials_type) GetProcAddress(library, "grpc_call_set_credentials");
|
456
|
+
grpc_server_credentials_set_auth_metadata_processor_import = (grpc_server_credentials_set_auth_metadata_processor_type) GetProcAddress(library, "grpc_server_credentials_set_auth_metadata_processor");
|
457
|
+
grpc_alts_credentials_client_options_create_import = (grpc_alts_credentials_client_options_create_type) GetProcAddress(library, "grpc_alts_credentials_client_options_create");
|
458
|
+
grpc_alts_credentials_server_options_create_import = (grpc_alts_credentials_server_options_create_type) GetProcAddress(library, "grpc_alts_credentials_server_options_create");
|
459
|
+
grpc_alts_credentials_client_options_add_target_service_account_import = (grpc_alts_credentials_client_options_add_target_service_account_type) GetProcAddress(library, "grpc_alts_credentials_client_options_add_target_service_account");
|
460
|
+
grpc_alts_credentials_options_destroy_import = (grpc_alts_credentials_options_destroy_type) GetProcAddress(library, "grpc_alts_credentials_options_destroy");
|
461
|
+
grpc_alts_credentials_create_import = (grpc_alts_credentials_create_type) GetProcAddress(library, "grpc_alts_credentials_create");
|
462
|
+
grpc_alts_server_credentials_create_import = (grpc_alts_server_credentials_create_type) GetProcAddress(library, "grpc_alts_server_credentials_create");
|
463
|
+
grpc_local_credentials_create_import = (grpc_local_credentials_create_type) GetProcAddress(library, "grpc_local_credentials_create");
|
464
|
+
grpc_local_server_credentials_create_import = (grpc_local_server_credentials_create_type) GetProcAddress(library, "grpc_local_server_credentials_create");
|
465
|
+
grpc_tls_identity_pairs_create_import = (grpc_tls_identity_pairs_create_type) GetProcAddress(library, "grpc_tls_identity_pairs_create");
|
466
|
+
grpc_tls_identity_pairs_add_pair_import = (grpc_tls_identity_pairs_add_pair_type) GetProcAddress(library, "grpc_tls_identity_pairs_add_pair");
|
467
|
+
grpc_tls_identity_pairs_destroy_import = (grpc_tls_identity_pairs_destroy_type) GetProcAddress(library, "grpc_tls_identity_pairs_destroy");
|
468
|
+
grpc_tls_certificate_provider_static_data_create_import = (grpc_tls_certificate_provider_static_data_create_type) GetProcAddress(library, "grpc_tls_certificate_provider_static_data_create");
|
469
|
+
grpc_tls_certificate_provider_file_watcher_create_import = (grpc_tls_certificate_provider_file_watcher_create_type) GetProcAddress(library, "grpc_tls_certificate_provider_file_watcher_create");
|
470
|
+
grpc_tls_certificate_provider_release_import = (grpc_tls_certificate_provider_release_type) GetProcAddress(library, "grpc_tls_certificate_provider_release");
|
471
|
+
grpc_tls_credentials_options_create_import = (grpc_tls_credentials_options_create_type) GetProcAddress(library, "grpc_tls_credentials_options_create");
|
472
|
+
grpc_tls_credentials_options_copy_import = (grpc_tls_credentials_options_copy_type) GetProcAddress(library, "grpc_tls_credentials_options_copy");
|
473
|
+
grpc_tls_credentials_options_destroy_import = (grpc_tls_credentials_options_destroy_type) GetProcAddress(library, "grpc_tls_credentials_options_destroy");
|
474
|
+
grpc_tls_credentials_options_set_certificate_provider_import = (grpc_tls_credentials_options_set_certificate_provider_type) GetProcAddress(library, "grpc_tls_credentials_options_set_certificate_provider");
|
475
|
+
grpc_tls_credentials_options_watch_root_certs_import = (grpc_tls_credentials_options_watch_root_certs_type) GetProcAddress(library, "grpc_tls_credentials_options_watch_root_certs");
|
476
|
+
grpc_tls_credentials_options_set_root_cert_name_import = (grpc_tls_credentials_options_set_root_cert_name_type) GetProcAddress(library, "grpc_tls_credentials_options_set_root_cert_name");
|
477
|
+
grpc_tls_credentials_options_watch_identity_key_cert_pairs_import = (grpc_tls_credentials_options_watch_identity_key_cert_pairs_type) GetProcAddress(library, "grpc_tls_credentials_options_watch_identity_key_cert_pairs");
|
478
|
+
grpc_tls_credentials_options_set_identity_cert_name_import = (grpc_tls_credentials_options_set_identity_cert_name_type) GetProcAddress(library, "grpc_tls_credentials_options_set_identity_cert_name");
|
479
|
+
grpc_tls_credentials_options_set_cert_request_type_import = (grpc_tls_credentials_options_set_cert_request_type_type) GetProcAddress(library, "grpc_tls_credentials_options_set_cert_request_type");
|
480
|
+
grpc_tls_credentials_options_set_crl_directory_import = (grpc_tls_credentials_options_set_crl_directory_type) GetProcAddress(library, "grpc_tls_credentials_options_set_crl_directory");
|
481
|
+
grpc_tls_credentials_options_set_verify_server_cert_import = (grpc_tls_credentials_options_set_verify_server_cert_type) GetProcAddress(library, "grpc_tls_credentials_options_set_verify_server_cert");
|
482
|
+
grpc_tls_credentials_options_set_send_client_ca_list_import = (grpc_tls_credentials_options_set_send_client_ca_list_type) GetProcAddress(library, "grpc_tls_credentials_options_set_send_client_ca_list");
|
483
|
+
grpc_tls_credentials_options_set_check_call_host_import = (grpc_tls_credentials_options_set_check_call_host_type) GetProcAddress(library, "grpc_tls_credentials_options_set_check_call_host");
|
484
|
+
grpc_insecure_credentials_create_import = (grpc_insecure_credentials_create_type) GetProcAddress(library, "grpc_insecure_credentials_create");
|
485
|
+
grpc_insecure_server_credentials_create_import = (grpc_insecure_server_credentials_create_type) GetProcAddress(library, "grpc_insecure_server_credentials_create");
|
486
|
+
grpc_xds_credentials_create_import = (grpc_xds_credentials_create_type) GetProcAddress(library, "grpc_xds_credentials_create");
|
487
|
+
grpc_xds_server_credentials_create_import = (grpc_xds_server_credentials_create_type) GetProcAddress(library, "grpc_xds_server_credentials_create");
|
488
|
+
grpc_authorization_policy_provider_static_data_create_import = (grpc_authorization_policy_provider_static_data_create_type) GetProcAddress(library, "grpc_authorization_policy_provider_static_data_create");
|
489
|
+
grpc_authorization_policy_provider_file_watcher_create_import = (grpc_authorization_policy_provider_file_watcher_create_type) GetProcAddress(library, "grpc_authorization_policy_provider_file_watcher_create");
|
490
|
+
grpc_authorization_policy_provider_release_import = (grpc_authorization_policy_provider_release_type) GetProcAddress(library, "grpc_authorization_policy_provider_release");
|
491
|
+
grpc_tls_credentials_options_set_tls_session_key_log_file_path_import = (grpc_tls_credentials_options_set_tls_session_key_log_file_path_type) GetProcAddress(library, "grpc_tls_credentials_options_set_tls_session_key_log_file_path");
|
492
|
+
grpc_slice_ref_import = (grpc_slice_ref_type) GetProcAddress(library, "grpc_slice_ref");
|
493
|
+
grpc_slice_unref_import = (grpc_slice_unref_type) GetProcAddress(library, "grpc_slice_unref");
|
494
|
+
grpc_slice_copy_import = (grpc_slice_copy_type) GetProcAddress(library, "grpc_slice_copy");
|
495
|
+
grpc_slice_new_import = (grpc_slice_new_type) GetProcAddress(library, "grpc_slice_new");
|
496
|
+
grpc_slice_new_with_user_data_import = (grpc_slice_new_with_user_data_type) GetProcAddress(library, "grpc_slice_new_with_user_data");
|
497
|
+
grpc_slice_new_with_len_import = (grpc_slice_new_with_len_type) GetProcAddress(library, "grpc_slice_new_with_len");
|
498
|
+
grpc_slice_malloc_import = (grpc_slice_malloc_type) GetProcAddress(library, "grpc_slice_malloc");
|
499
|
+
grpc_slice_malloc_large_import = (grpc_slice_malloc_large_type) GetProcAddress(library, "grpc_slice_malloc_large");
|
500
|
+
grpc_slice_from_copied_string_import = (grpc_slice_from_copied_string_type) GetProcAddress(library, "grpc_slice_from_copied_string");
|
501
|
+
grpc_slice_from_copied_buffer_import = (grpc_slice_from_copied_buffer_type) GetProcAddress(library, "grpc_slice_from_copied_buffer");
|
502
|
+
grpc_slice_from_static_string_import = (grpc_slice_from_static_string_type) GetProcAddress(library, "grpc_slice_from_static_string");
|
503
|
+
grpc_slice_from_static_buffer_import = (grpc_slice_from_static_buffer_type) GetProcAddress(library, "grpc_slice_from_static_buffer");
|
504
|
+
grpc_slice_sub_import = (grpc_slice_sub_type) GetProcAddress(library, "grpc_slice_sub");
|
505
|
+
grpc_slice_sub_no_ref_import = (grpc_slice_sub_no_ref_type) GetProcAddress(library, "grpc_slice_sub_no_ref");
|
506
|
+
grpc_slice_split_tail_import = (grpc_slice_split_tail_type) GetProcAddress(library, "grpc_slice_split_tail");
|
507
|
+
grpc_slice_split_tail_maybe_ref_import = (grpc_slice_split_tail_maybe_ref_type) GetProcAddress(library, "grpc_slice_split_tail_maybe_ref");
|
508
|
+
grpc_slice_split_head_import = (grpc_slice_split_head_type) GetProcAddress(library, "grpc_slice_split_head");
|
509
|
+
grpc_empty_slice_import = (grpc_empty_slice_type) GetProcAddress(library, "grpc_empty_slice");
|
510
|
+
grpc_slice_eq_import = (grpc_slice_eq_type) GetProcAddress(library, "grpc_slice_eq");
|
511
|
+
grpc_slice_cmp_import = (grpc_slice_cmp_type) GetProcAddress(library, "grpc_slice_cmp");
|
512
|
+
grpc_slice_str_cmp_import = (grpc_slice_str_cmp_type) GetProcAddress(library, "grpc_slice_str_cmp");
|
513
|
+
grpc_slice_buf_start_eq_import = (grpc_slice_buf_start_eq_type) GetProcAddress(library, "grpc_slice_buf_start_eq");
|
514
|
+
grpc_slice_rchr_import = (grpc_slice_rchr_type) GetProcAddress(library, "grpc_slice_rchr");
|
515
|
+
grpc_slice_chr_import = (grpc_slice_chr_type) GetProcAddress(library, "grpc_slice_chr");
|
516
|
+
grpc_slice_slice_import = (grpc_slice_slice_type) GetProcAddress(library, "grpc_slice_slice");
|
517
|
+
grpc_slice_is_equivalent_import = (grpc_slice_is_equivalent_type) GetProcAddress(library, "grpc_slice_is_equivalent");
|
518
|
+
grpc_slice_dup_import = (grpc_slice_dup_type) GetProcAddress(library, "grpc_slice_dup");
|
519
|
+
grpc_slice_to_c_string_import = (grpc_slice_to_c_string_type) GetProcAddress(library, "grpc_slice_to_c_string");
|
520
|
+
grpc_slice_buffer_init_import = (grpc_slice_buffer_init_type) GetProcAddress(library, "grpc_slice_buffer_init");
|
521
|
+
grpc_slice_buffer_destroy_import = (grpc_slice_buffer_destroy_type) GetProcAddress(library, "grpc_slice_buffer_destroy");
|
522
|
+
grpc_slice_buffer_add_import = (grpc_slice_buffer_add_type) GetProcAddress(library, "grpc_slice_buffer_add");
|
523
|
+
grpc_slice_buffer_add_indexed_import = (grpc_slice_buffer_add_indexed_type) GetProcAddress(library, "grpc_slice_buffer_add_indexed");
|
524
|
+
grpc_slice_buffer_addn_import = (grpc_slice_buffer_addn_type) GetProcAddress(library, "grpc_slice_buffer_addn");
|
525
|
+
grpc_slice_buffer_tiny_add_import = (grpc_slice_buffer_tiny_add_type) GetProcAddress(library, "grpc_slice_buffer_tiny_add");
|
526
|
+
grpc_slice_buffer_pop_import = (grpc_slice_buffer_pop_type) GetProcAddress(library, "grpc_slice_buffer_pop");
|
527
|
+
grpc_slice_buffer_reset_and_unref_import = (grpc_slice_buffer_reset_and_unref_type) GetProcAddress(library, "grpc_slice_buffer_reset_and_unref");
|
528
|
+
grpc_slice_buffer_swap_import = (grpc_slice_buffer_swap_type) GetProcAddress(library, "grpc_slice_buffer_swap");
|
529
|
+
grpc_slice_buffer_move_into_import = (grpc_slice_buffer_move_into_type) GetProcAddress(library, "grpc_slice_buffer_move_into");
|
530
|
+
grpc_slice_buffer_trim_end_import = (grpc_slice_buffer_trim_end_type) GetProcAddress(library, "grpc_slice_buffer_trim_end");
|
531
|
+
grpc_slice_buffer_move_first_import = (grpc_slice_buffer_move_first_type) GetProcAddress(library, "grpc_slice_buffer_move_first");
|
532
|
+
grpc_slice_buffer_move_first_no_ref_import = (grpc_slice_buffer_move_first_no_ref_type) GetProcAddress(library, "grpc_slice_buffer_move_first_no_ref");
|
533
|
+
grpc_slice_buffer_move_first_into_buffer_import = (grpc_slice_buffer_move_first_into_buffer_type) GetProcAddress(library, "grpc_slice_buffer_move_first_into_buffer");
|
534
|
+
grpc_slice_buffer_take_first_import = (grpc_slice_buffer_take_first_type) GetProcAddress(library, "grpc_slice_buffer_take_first");
|
535
|
+
grpc_slice_buffer_undo_take_first_import = (grpc_slice_buffer_undo_take_first_type) GetProcAddress(library, "grpc_slice_buffer_undo_take_first");
|
536
|
+
gpr_malloc_import = (gpr_malloc_type) GetProcAddress(library, "gpr_malloc");
|
537
|
+
gpr_zalloc_import = (gpr_zalloc_type) GetProcAddress(library, "gpr_zalloc");
|
538
|
+
gpr_free_import = (gpr_free_type) GetProcAddress(library, "gpr_free");
|
539
|
+
gpr_realloc_import = (gpr_realloc_type) GetProcAddress(library, "gpr_realloc");
|
540
|
+
gpr_malloc_aligned_import = (gpr_malloc_aligned_type) GetProcAddress(library, "gpr_malloc_aligned");
|
541
|
+
gpr_free_aligned_import = (gpr_free_aligned_type) GetProcAddress(library, "gpr_free_aligned");
|
542
|
+
gpr_cpu_num_cores_import = (gpr_cpu_num_cores_type) GetProcAddress(library, "gpr_cpu_num_cores");
|
543
|
+
gpr_cpu_current_cpu_import = (gpr_cpu_current_cpu_type) GetProcAddress(library, "gpr_cpu_current_cpu");
|
544
|
+
gpr_log_severity_string_import = (gpr_log_severity_string_type) GetProcAddress(library, "gpr_log_severity_string");
|
545
|
+
gpr_log_import = (gpr_log_type) GetProcAddress(library, "gpr_log");
|
546
|
+
gpr_should_log_import = (gpr_should_log_type) GetProcAddress(library, "gpr_should_log");
|
547
|
+
gpr_log_message_import = (gpr_log_message_type) GetProcAddress(library, "gpr_log_message");
|
548
|
+
gpr_set_log_verbosity_import = (gpr_set_log_verbosity_type) GetProcAddress(library, "gpr_set_log_verbosity");
|
549
|
+
gpr_log_verbosity_init_import = (gpr_log_verbosity_init_type) GetProcAddress(library, "gpr_log_verbosity_init");
|
550
|
+
gpr_set_log_function_import = (gpr_set_log_function_type) GetProcAddress(library, "gpr_set_log_function");
|
551
|
+
gpr_assertion_failed_import = (gpr_assertion_failed_type) GetProcAddress(library, "gpr_assertion_failed");
|
552
|
+
gpr_format_message_import = (gpr_format_message_type) GetProcAddress(library, "gpr_format_message");
|
553
|
+
gpr_strdup_import = (gpr_strdup_type) GetProcAddress(library, "gpr_strdup");
|
554
|
+
gpr_asprintf_import = (gpr_asprintf_type) GetProcAddress(library, "gpr_asprintf");
|
555
|
+
gpr_mu_init_import = (gpr_mu_init_type) GetProcAddress(library, "gpr_mu_init");
|
556
|
+
gpr_mu_destroy_import = (gpr_mu_destroy_type) GetProcAddress(library, "gpr_mu_destroy");
|
557
|
+
gpr_mu_lock_import = (gpr_mu_lock_type) GetProcAddress(library, "gpr_mu_lock");
|
558
|
+
gpr_mu_unlock_import = (gpr_mu_unlock_type) GetProcAddress(library, "gpr_mu_unlock");
|
559
|
+
gpr_mu_trylock_import = (gpr_mu_trylock_type) GetProcAddress(library, "gpr_mu_trylock");
|
560
|
+
gpr_cv_init_import = (gpr_cv_init_type) GetProcAddress(library, "gpr_cv_init");
|
561
|
+
gpr_cv_destroy_import = (gpr_cv_destroy_type) GetProcAddress(library, "gpr_cv_destroy");
|
562
|
+
gpr_cv_wait_import = (gpr_cv_wait_type) GetProcAddress(library, "gpr_cv_wait");
|
563
|
+
gpr_cv_signal_import = (gpr_cv_signal_type) GetProcAddress(library, "gpr_cv_signal");
|
564
|
+
gpr_cv_broadcast_import = (gpr_cv_broadcast_type) GetProcAddress(library, "gpr_cv_broadcast");
|
565
|
+
gpr_once_init_import = (gpr_once_init_type) GetProcAddress(library, "gpr_once_init");
|
566
|
+
gpr_event_init_import = (gpr_event_init_type) GetProcAddress(library, "gpr_event_init");
|
567
|
+
gpr_event_set_import = (gpr_event_set_type) GetProcAddress(library, "gpr_event_set");
|
568
|
+
gpr_event_get_import = (gpr_event_get_type) GetProcAddress(library, "gpr_event_get");
|
569
|
+
gpr_event_wait_import = (gpr_event_wait_type) GetProcAddress(library, "gpr_event_wait");
|
570
|
+
gpr_ref_init_import = (gpr_ref_init_type) GetProcAddress(library, "gpr_ref_init");
|
571
|
+
gpr_ref_import = (gpr_ref_type) GetProcAddress(library, "gpr_ref");
|
572
|
+
gpr_ref_non_zero_import = (gpr_ref_non_zero_type) GetProcAddress(library, "gpr_ref_non_zero");
|
573
|
+
gpr_refn_import = (gpr_refn_type) GetProcAddress(library, "gpr_refn");
|
574
|
+
gpr_unref_import = (gpr_unref_type) GetProcAddress(library, "gpr_unref");
|
575
|
+
gpr_ref_is_unique_import = (gpr_ref_is_unique_type) GetProcAddress(library, "gpr_ref_is_unique");
|
576
|
+
gpr_stats_init_import = (gpr_stats_init_type) GetProcAddress(library, "gpr_stats_init");
|
577
|
+
gpr_stats_inc_import = (gpr_stats_inc_type) GetProcAddress(library, "gpr_stats_inc");
|
578
|
+
gpr_stats_read_import = (gpr_stats_read_type) GetProcAddress(library, "gpr_stats_read");
|
579
|
+
gpr_thd_currentid_import = (gpr_thd_currentid_type) GetProcAddress(library, "gpr_thd_currentid");
|
580
|
+
gpr_time_0_import = (gpr_time_0_type) GetProcAddress(library, "gpr_time_0");
|
581
|
+
gpr_inf_future_import = (gpr_inf_future_type) GetProcAddress(library, "gpr_inf_future");
|
582
|
+
gpr_inf_past_import = (gpr_inf_past_type) GetProcAddress(library, "gpr_inf_past");
|
583
|
+
gpr_time_init_import = (gpr_time_init_type) GetProcAddress(library, "gpr_time_init");
|
584
|
+
gpr_now_import = (gpr_now_type) GetProcAddress(library, "gpr_now");
|
585
|
+
gpr_convert_clock_type_import = (gpr_convert_clock_type_type) GetProcAddress(library, "gpr_convert_clock_type");
|
586
|
+
gpr_time_cmp_import = (gpr_time_cmp_type) GetProcAddress(library, "gpr_time_cmp");
|
587
|
+
gpr_time_max_import = (gpr_time_max_type) GetProcAddress(library, "gpr_time_max");
|
588
|
+
gpr_time_min_import = (gpr_time_min_type) GetProcAddress(library, "gpr_time_min");
|
589
|
+
gpr_time_add_import = (gpr_time_add_type) GetProcAddress(library, "gpr_time_add");
|
590
|
+
gpr_time_sub_import = (gpr_time_sub_type) GetProcAddress(library, "gpr_time_sub");
|
591
|
+
gpr_time_from_micros_import = (gpr_time_from_micros_type) GetProcAddress(library, "gpr_time_from_micros");
|
592
|
+
gpr_time_from_nanos_import = (gpr_time_from_nanos_type) GetProcAddress(library, "gpr_time_from_nanos");
|
593
|
+
gpr_time_from_millis_import = (gpr_time_from_millis_type) GetProcAddress(library, "gpr_time_from_millis");
|
594
|
+
gpr_time_from_seconds_import = (gpr_time_from_seconds_type) GetProcAddress(library, "gpr_time_from_seconds");
|
595
|
+
gpr_time_from_minutes_import = (gpr_time_from_minutes_type) GetProcAddress(library, "gpr_time_from_minutes");
|
596
|
+
gpr_time_from_hours_import = (gpr_time_from_hours_type) GetProcAddress(library, "gpr_time_from_hours");
|
597
|
+
gpr_time_to_millis_import = (gpr_time_to_millis_type) GetProcAddress(library, "gpr_time_to_millis");
|
598
|
+
gpr_time_similar_import = (gpr_time_similar_type) GetProcAddress(library, "gpr_time_similar");
|
599
|
+
gpr_sleep_until_import = (gpr_sleep_until_type) GetProcAddress(library, "gpr_sleep_until");
|
600
|
+
gpr_timespec_to_micros_import = (gpr_timespec_to_micros_type) GetProcAddress(library, "gpr_timespec_to_micros");
|
601
|
+
}
|
602
|
+
|
603
|
+
#endif /* GPR_WINDOWS */
|