Home
last modified time | relevance | path

Searched refs:compression_options (Results 1 – 5 of 5) sorted by relevance

/third_party/grpc/src/ruby/ext/grpc/
Drb_compression_options.c229 grpc_compression_options* compression_options, VALUE algorithm_name) { in grpc_rb_compression_options_disable_algorithm() argument
234 grpc_compression_options_disable_algorithm(compression_options, in grpc_rb_compression_options_disable_algorithm()
242 grpc_compression_options* compression_options = NULL; in grpc_rb_compression_options_to_hash() local
249 compression_options = wrapper->wrapped; in grpc_rb_compression_options_to_hash()
253 if (compression_options->default_level.is_set) { in grpc_rb_compression_options_to_hash()
255 value = INT2NUM((int)compression_options->default_level.level); in grpc_rb_compression_options_to_hash()
259 if (compression_options->default_algorithm.is_set) { in grpc_rb_compression_options_to_hash()
261 value = INT2NUM((int)compression_options->default_algorithm.algorithm); in grpc_rb_compression_options_to_hash()
266 value = INT2NUM((int)compression_options->enabled_algorithms_bitset); in grpc_rb_compression_options_to_hash()
/third_party/grpc/src/core/lib/surface/
Dchannel.cc99 grpc_compression_options_init(&channel->compression_options); in grpc_channel_create_with_builder()
103 channel->compression_options.default_level.is_set = true; in grpc_channel_create_with_builder()
104 channel->compression_options.default_level.level = in grpc_channel_create_with_builder()
111 channel->compression_options.default_algorithm.is_set = true; in grpc_channel_create_with_builder()
112 channel->compression_options.default_algorithm.algorithm = in grpc_channel_create_with_builder()
119 channel->compression_options.enabled_algorithms_bitset = in grpc_channel_create_with_builder()
Dchannel.h106 grpc_compression_options compression_options; member
126 return channel->compression_options; in grpc_channel_compression_options()
Dcall.cc1446 const grpc_compression_options compression_options = in validate_filtered_metadata() local
1452 &compression_options, compression_algorithm) == 0)) { in validate_filtered_metadata()
/third_party/grpc/src/ruby/pb/test/
Dclient.rb104 compression_options =
106 compression_channel_args = compression_options.to_channel_arg_hash