/external/grpc-grpc/src/ruby/ext/grpc/ |
D | rb_compression_options.c | 161 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/ |
D | client_context.cc | 100 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/rust/crates/grpcio-sys/grpc/src/cpp/client/ |
D | client_context.cc | 137 const char* algorithm_name = nullptr; in set_compression_algorithm() local 138 if (!grpc_compression_algorithm_name(algorithm, &algorithm_name)) { in set_compression_algorithm() 143 GPR_ASSERT(algorithm_name != nullptr); in set_compression_algorithm() 144 AddMetadata(GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY, algorithm_name); in set_compression_algorithm()
|
/external/grpc-grpc/src/cpp/server/ |
D | server_context.cc | 196 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/rust/crates/ring/tests/ |
D | digest_tests.rs | 77 ( $file_name:ident, $algorithm_name:ident ) => { 79 mod $algorithm_name { 90 &digest::$algorithm_name, 103 &digest::$algorithm_name, 116 &digest::$algorithm_name,
|
/external/rust/crates/grpcio-sys/grpc/src/cpp/server/ |
D | server_context.cc | 344 const char* algorithm_name = nullptr; in set_compression_algorithm() local 345 if (!grpc_compression_algorithm_name(algorithm, &algorithm_name)) { in set_compression_algorithm() 350 GPR_ASSERT(algorithm_name != nullptr); in set_compression_algorithm() 351 AddInitialMetadata(GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY, algorithm_name); in set_compression_algorithm()
|
/external/rust/crates/ring/src/ |
D | digest.rs | 525 ( $algorithm_name:ident ) => { 526 mod $algorithm_name { 531 super::max_input_test(&digest::$algorithm_name); 537 super::too_long_input_test_block(&digest::$algorithm_name); 543 super::too_long_input_test_byte(&digest::$algorithm_name);
|
/external/grpc-grpc/test/core/compression/ |
D | message_compress_test.cc | 52 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/ |
D | avbtool.py | 425 def sign(self, algorithm_name, data_to_sign, signing_helper=None, argument 445 algorithm = ALGORITHMS.get(algorithm_name) 448 .format(algorithm_name)) 454 algorithm_name)) 468 p = subprocess.Popen([signing_helper_with_files, algorithm_name, 478 [signing_helper, algorithm_name, self.key_path], 2907 def make_vbmeta_image(self, output, chain_partitions, algorithm_name, argument 2968 algorithm_name, key_path, public_key_metadata_path, descriptors, 2985 def _generate_vbmeta_blob(self, algorithm_name, key_path, argument 3040 alg = ALGORITHMS[algorithm_name] [all …]
|
D | avbtool | 425 def sign(self, algorithm_name, data_to_sign, signing_helper=None, argument 445 algorithm = ALGORITHMS.get(algorithm_name) 448 .format(algorithm_name)) 454 algorithm_name)) 468 p = subprocess.Popen([signing_helper_with_files, algorithm_name, 478 [signing_helper, algorithm_name, self.key_path], 2907 def make_vbmeta_image(self, output, chain_partitions, algorithm_name, argument 2968 algorithm_name, key_path, public_key_metadata_path, descriptors, 2985 def _generate_vbmeta_blob(self, algorithm_name, key_path, argument 3040 alg = ALGORITHMS[algorithm_name] [all …]
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/http/message_compress/ |
D | message_compress_filter.cc | 214 const char* algorithm_name; in FindCompressionAlgorithm() local 216 grpc_compression_algorithm_name(compression_algorithm, &algorithm_name)); in FindCompressionAlgorithm() 221 algorithm_name); in FindCompressionAlgorithm()
|
/external/python/cpython2/Lib/test/ |
D | test_hashlib.py | 196 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/python/asn1crypto/tests/ |
D | test_keys.py | 474 def algorithm_name(self, private_key_file, public_key_file, algorithm, _): member in KeysTests
|
/external/python/cpython3/Lib/test/ |
D | test_hashlib.py | 374 def check_no_unicode(self, algorithm_name): argument 376 constructors = self.constructors_to_test[algorithm_name]
|