HomeSort by: relevance | last modified time | path
    Searched refs:input_type (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/crypto/external/apache2/openssl/dist/crypto/encode_decode/
decoder_pkey.c 267 && di->input_type != NULL
268 && OPENSSL_strcasecmp(di->input_type, data->ctx->start_input_type) != 0
269 && (OPENSSL_strcasecmp(di->input_type, "DER") != 0
445 const char *input_type = ctx->start_input_type; local
453 input_type != NULL ? " from " : "",
454 input_type != NULL ? input_type : "",
577 const char *input_type,
591 if (!OSSL_DECODER_CTX_set_input_type(dest, input_type)
666 char *input_type; member in struct:__anon215
    [all...]
encoder_local.h 109 const char *input_type; /* Never NULL */ member in struct:ossl_decoder_instance_st
decoder_lib.c 97 const char *input_type local
106 spaces, input_type_label, input_type, comma,
184 const char *input_type)
195 ctx->start_input_type = input_type;
271 decoder_inst->input_type = ossl_property_get_string_value(libctx, prop);
273 if (decoder_inst->input_type == NULL) {
785 return decoder_inst->input_type;
  /src/crypto/external/apache2/openssl/dist/providers/implementations/storemgmt/
file_store.c 79 char *input_type; member in struct:file_ctx_st::__anon598::__anon599
118 OPENSSL_free(ctx->_.file.input_type);
337 OPENSSL_free(ctx->_.file.input_type);
338 ctx->_.file.input_type = NULL;
339 if (!OSSL_PARAM_get_utf8_string(p, &ctx->_.file.input_type, 0))
430 ctx->_.file.input_type)) {
492 const char *input_type; local
512 input_type = OSSL_DECODER_INSTANCE_get_input_type(to_obj_inst);
513 if (ctx->_.file.input_type != NULL
514 && OPENSSL_strcasecmp(input_type, ctx->_.file.input_type) !=
    [all...]
file_store_any2obj.c 92 static int any2obj_decode_final(void *vctx, int objtype, const char *input_type,
109 if (input_type != NULL)
111 (char *)input_type, 0);
winstore_store.c 209 const char *input_type; local
229 input_type = OSSL_DECODER_INSTANCE_get_input_type(to_obj_inst);
230 if (OPENSSL_strcasecmp(input_type, "DER") != 0) {
  /src/crypto/external/apache2/openssl/dist/include/openssl/
decoder.h 74 const char *input_type);
125 const char *input_type,
  /src/crypto/external/bsd/openssl/dist/include/openssl/
decoder.h 74 const char *input_type);
125 const char *input_type,
  /src/sys/dev/fdt/
gpiokeys.c 163 u_int debounce, input_type, code; local
174 if (of_getprop_uint32(child, "linux,input-type", &input_type))
175 input_type = EV_KEY; /* default */
200 switch (input_type) {
  /src/crypto/external/bsd/openssl/dist/crypto/encode_decode/
encoder_local.h 109 const char *input_type; /* Never NULL */ member in struct:ossl_decoder_instance_st
decoder_pkey.c 313 const char *input_type = ctx->start_input_type; local
330 input_type != NULL ? " from " : "",
331 input_type != NULL ? input_type : "",
431 const char *input_type,
448 input_type, input_structure);
451 if (OSSL_DECODER_CTX_set_input_type(ctx, input_type)
decoder_lib.c 94 const char *input_type local
103 spaces, input_type_label, input_type, comma,
181 const char *input_type)
192 ctx->start_input_type = input_type;
243 decoder_inst->input_type = ossl_property_get_string_value(libctx, prop);
244 if (decoder_inst->input_type == NULL) {
662 return decoder_inst->input_type;
  /src/crypto/external/bsd/openssl/dist/providers/implementations/storemgmt/
file_store.c 80 char *input_type; member in struct:file_ctx_st::__anon1637::__anon1638
119 OPENSSL_free(ctx->_.file.input_type);
341 OPENSSL_free(ctx->_.file.input_type);
342 ctx->_.file.input_type = NULL;
343 if (!OSSL_PARAM_get_utf8_string(p, &ctx->_.file.input_type, 0))
433 ctx->_.file.input_type)) {
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
random.h 86 typedef typename _Distribution::input_type result_type;
158 typedef typename _Distribution::input_type result_type;
1572 typedef _IntType input_type;
1697 typedef int input_type;
1788 typedef _RealType input_type;
1874 typedef _RealType input_type;
1961 typedef _RealType input_type;
2069 typedef _RealType input_type;
2158 typedef _RealType input_type;
2241 typedef _RealType input_type;
    [all...]
  /src/external/gpl3/binutils/dist/ld/
ldlex.h 492 } input_type; typedef in typeref:enum:input_enum
494 extern input_type parser_input;
ldlex.l 41 input_type parser_input;
117 input_type t = parser_input;
  /src/external/gpl3/binutils.old/dist/ld/
ldlex.h 486 } input_type; typedef in typeref:enum:input_enum
488 extern input_type parser_input;
ldlex.l 41 input_type parser_input;
117 input_type t = parser_input;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
random.h 85 typedef typename _Distribution::input_type result_type;
1535 typedef _IntType input_type;
1660 typedef int input_type;
1751 typedef _RealType input_type;
1837 typedef _RealType input_type;
1924 typedef _RealType input_type;
2032 typedef _RealType input_type;
2121 typedef _RealType input_type;
2204 typedef _RealType input_type;
2293 typedef _RealType input_type;
    [all...]
  /src/external/bsd/zstd/dist/tests/fuzz/
fuzz.py 40 def __init__(self, input_type, frame_type=FrameType.ZSTD):
41 self.input_type = input_type
748 if info.input_type == InputType.DICTIONARY_DATA:
770 if info.input_type == InputType.RAW_DATA:
773 elif info.input_type == InputType.COMPRESSED_DATA:
777 assert info.input_type == InputType.DICTIONARY_DATA
  /src/crypto/external/apache2/openssl/dist/crypto/store/
store_result.c 66 const char *input_type; member in struct:extracted_param_data_st
120 && !OSSL_PARAM_get_utf8_string_ptr(p, &helper_data.input_type))
302 decoderctx = OSSL_DECODER_CTX_new_for_pkey(&pk, data->input_type, data->data_structure,
  /src/crypto/external/apache2/openssl/dist/test/
endecode_test.c 141 const char *input_type, const char *structure_type,
285 const char *input_type,
298 if (strcmp(input_type, "DER") == 0)
314 const char *testtype = (i == 0) ? input_type
  /src/crypto/external/bsd/openssl/dist/test/
endecode_test.c 137 const char *input_type, const char *structure_type,
281 const char *input_type,
294 if (strcmp(input_type, "DER") == 0)
310 const char *testtype = (i == 0) ? input_type
  /src/external/gpl3/binutils/dist/libctf/
ctf-dedup.c 3159 ctf_id_t input_type, target_type; local
3166 input_type = CTF_DEDUP_GID_TO_TYPE (input_id);
3179 err_type = input_type;
3185 while ((offset = ctf_member_next (input_fp, input_type, &j, &name,
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-dedup.c 3159 ctf_id_t input_type, target_type; local
3166 input_type = CTF_DEDUP_GID_TO_TYPE (input_id);
3179 err_type = input_type;
3185 while ((offset = ctf_member_next (input_fp, input_type, &j, &name,

Completed in 57 milliseconds

1 2