Home
last modified time | relevance | path

Searched refs:algorithm_name (Results 1 – 9 of 9) sorted by relevance

/external/grpc-grpc/src/ruby/ext/grpc/
Drb_compression_options.c161 grpc_compression_algorithm* algorithm_value, VALUE algorithm_name) { in grpc_rb_compression_options_algorithm_name_to_value_internal() argument
165 Check_Type(algorithm_name, T_SYMBOL); in grpc_rb_compression_options_algorithm_name_to_value_internal()
169 algorithm_name_as_string = rb_funcall(algorithm_name, rb_intern("to_s"), 0); in grpc_rb_compression_options_algorithm_name_to_value_internal()
198 VALUE algorithm_name) { in grpc_rb_compression_options_is_algorithm_enabled() argument
205 &internal_algorithm_value, algorithm_name); in grpc_rb_compression_options_is_algorithm_enabled()
217 grpc_compression_options* options, VALUE algorithm_name) { in grpc_rb_compression_options_set_default_algorithm() argument
219 &options->default_algorithm.algorithm, algorithm_name); in grpc_rb_compression_options_set_default_algorithm()
227 grpc_compression_options* compression_options, VALUE algorithm_name) { in grpc_rb_compression_options_disable_algorithm() argument
231 &internal_algorithm_value, algorithm_name); in grpc_rb_compression_options_disable_algorithm()
297 char* algorithm_name = NULL; in grpc_rb_compression_options_algorithm_value_to_name_internal() local
[all …]
/external/grpc-grpc/src/cpp/client/
Dclient_context.cc100 const char* algorithm_name = nullptr; in set_compression_algorithm() local
101 if (!grpc_compression_algorithm_name(algorithm, &algorithm_name)) { in set_compression_algorithm()
106 GPR_ASSERT(algorithm_name != nullptr); in set_compression_algorithm()
107 AddMetadata(GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY, algorithm_name); in set_compression_algorithm()
/external/grpc-grpc/src/cpp/server/
Dserver_context.cc196 const char* algorithm_name = nullptr; in set_compression_algorithm() local
197 if (!grpc_compression_algorithm_name(algorithm, &algorithm_name)) { in set_compression_algorithm()
202 GPR_ASSERT(algorithm_name != nullptr); in set_compression_algorithm()
203 AddInitialMetadata(GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY, algorithm_name); in set_compression_algorithm()
/external/grpc-grpc/test/core/compression/
Dmessage_compress_test.cc52 const char* algorithm_name; in assert_passthrough() local
55 grpc_message_compression_algorithm_name(algorithm, &algorithm_name) != 0); in assert_passthrough()
63 algorithm_name, grpc_slice_split_mode_name(uncompressed_split_mode), in assert_passthrough()
/external/avb/
Davbtool441 algorithm_name, signature_num_bytes, key_path, argument
465 [signing_helper_with_files, algorithm_name, key_path, signing_file.name])
474 [signing_helper, algorithm_name, key_path],
2549 def make_vbmeta_image(self, output, chain_partitions, algorithm_name, argument
2608 algorithm_name, key_path, public_key_metadata_path, descriptors,
2624 def _generate_vbmeta_blob(self, algorithm_name, key_path, argument
2678 alg = ALGORITHMS[algorithm_name]
2680 raise AvbError('Unknown algorithm with name {}'.format(algorithm_name))
2796 algorithm_name))
2800 algorithm_name))
[all …]
/external/python/cpython2/Lib/test/
Dtest_hashlib.py196 def check_unicode(self, algorithm_name): argument
198 expected = hashlib.new(algorithm_name, str(u'spam')).hexdigest()
199 self.check(algorithm_name, u'spam', expected)
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dmetric_recorder.cc56 MetricRecorder::MetricRecorder(const std::string algorithm_name, in MetricRecorder() argument
60 : algorithm_name_(algorithm_name), in MetricRecorder()
Dmetric_recorder.h67 MetricRecorder(const std::string algorithm_name,
/external/python/cpython3/Lib/test/
Dtest_hashlib.py310 def check_no_unicode(self, algorithm_name): argument
312 constructors = self.constructors_to_test[algorithm_name]