| /external/grpc-grpc/src/ruby/ext/grpc/ |
| D | rb_compression_options.c | 163 grpc_compression_algorithm* algorithm_value, VALUE algorithm_name) { in grpc_rb_compression_options_algorithm_name_to_value_internal() argument 167 Check_Type(algorithm_name, T_SYMBOL); in grpc_rb_compression_options_algorithm_name_to_value_internal() 171 algorithm_name_as_string = rb_funcall(algorithm_name, rb_intern("to_s"), 0); in grpc_rb_compression_options_algorithm_name_to_value_internal() 200 VALUE algorithm_name) { in grpc_rb_compression_options_is_algorithm_enabled() argument 207 &internal_algorithm_value, algorithm_name); in grpc_rb_compression_options_is_algorithm_enabled() 219 grpc_compression_options* options, VALUE algorithm_name) { in grpc_rb_compression_options_set_default_algorithm() argument 221 &options->default_algorithm.algorithm, algorithm_name); in grpc_rb_compression_options_set_default_algorithm() 229 grpc_compression_options* compression_options, VALUE algorithm_name) { in grpc_rb_compression_options_disable_algorithm() argument 233 &internal_algorithm_value, algorithm_name); in grpc_rb_compression_options_disable_algorithm() 299 char* algorithm_name = NULL; in grpc_rb_compression_options_algorithm_value_to_name_internal() local [all …]
|
| /external/rust/crates/grpcio-sys/grpc/src/cpp/client/ |
| D | client_context.cc | 147 const char* algorithm_name = nullptr; in set_compression_algorithm() local 148 if (!grpc_compression_algorithm_name(algorithm, &algorithm_name)) { in set_compression_algorithm() 152 GPR_ASSERT(algorithm_name != nullptr); in set_compression_algorithm() 153 AddMetadata(GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY, algorithm_name); in set_compression_algorithm()
|
| /external/grpc-grpc/src/cpp/client/ |
| D | client_context.cc | 146 const char* algorithm_name = nullptr; in set_compression_algorithm() local 147 if (!grpc_compression_algorithm_name(algorithm, &algorithm_name)) { in set_compression_algorithm() 151 GPR_ASSERT(algorithm_name != nullptr); in set_compression_algorithm() 152 AddMetadata(GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY, algorithm_name); in set_compression_algorithm()
|
| /external/rust/crates/ring/tests/ |
| D | digest_tests.rs | 78 ( $file_name:ident, $algorithm_name:ident ) => { 80 mod $algorithm_name { 90 &digest::$algorithm_name, 102 &digest::$algorithm_name, 114 &digest::$algorithm_name,
|
| /external/rust/crates/ring/src/ |
| D | digest.rs | 510 ( $algorithm_name:ident ) => { 511 mod $algorithm_name { 516 super::max_input_test(&digest::$algorithm_name); 522 super::too_long_input_test_block(&digest::$algorithm_name); 528 super::too_long_input_test_byte(&digest::$algorithm_name);
|
| /external/cronet/third_party/boringssl/src/pki/ |
| D | verify_signed_data.cc | 36 std::string SignatureVerifyCacheKey(std::string_view algorithm_name, in SignatureVerifyCacheKey() argument 50 &s_ctx, reinterpret_cast<const uint8_t*>(algorithm_name.data()), in SignatureVerifyCacheKey() 51 algorithm_name.length()) && in SignatureVerifyCacheKey()
|
| /external/grpc-grpc/src/cpp/server/ |
| D | server_context.cc | 372 const char* algorithm_name = nullptr; in set_compression_algorithm() local 373 if (!grpc_compression_algorithm_name(algorithm, &algorithm_name)) { in set_compression_algorithm() 377 GPR_ASSERT(algorithm_name != nullptr); in set_compression_algorithm() 378 AddInitialMetadata(GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY, algorithm_name); in set_compression_algorithm()
|
| /external/rust/crates/grpcio-sys/grpc/src/cpp/server/ |
| D | server_context.cc | 372 const char* algorithm_name = nullptr; in set_compression_algorithm() local 373 if (!grpc_compression_algorithm_name(algorithm, &algorithm_name)) { in set_compression_algorithm() 377 GPR_ASSERT(algorithm_name != nullptr); in set_compression_algorithm() 378 AddInitialMetadata(GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY, algorithm_name); in set_compression_algorithm()
|
| /external/grpc-grpc/test/core/compression/ |
| D | message_compress_test.cc | 57 const char* algorithm_name; in assert_passthrough() local 59 ASSERT_NE(grpc_compression_algorithm_name(algorithm, &algorithm_name), 0); in assert_passthrough() 63 GRPC_SLICE_LENGTH(value), algorithm_name, in assert_passthrough()
|
| /external/avb/ |
| D | avbtool.py | 436 def sign(self, algorithm_name, data_to_sign, signing_helper=None, argument 456 algorithm = ALGORITHMS.get(algorithm_name) 459 .format(algorithm_name)) 465 algorithm_name)) 479 p = subprocess.Popen([signing_helper_with_files, algorithm_name, 489 [signing_helper, algorithm_name, self.key_path], 2928 chain_partitions_do_not_use_ab, algorithm_name, argument 2992 algorithm_name, key_path, public_key_metadata_path, descriptors, 3009 def _generate_vbmeta_blob(self, algorithm_name, key_path, argument 3065 alg = ALGORITHMS[algorithm_name] [all …]
|
| /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 | 410 def check_no_unicode(self, algorithm_name): argument 412 constructors = self.constructors_to_test[algorithm_name]
|