/openssl-master/doc/man3/ |
A D | DEFINE_STACK_OF.pod | 36 typedef TYPE * (*sk_TYPE_copyfunc)(const TYPE *a); 46 TYPE *sk_TYPE_delete(STACK_OF(TYPE) *sk, int i); 47 TYPE *sk_TYPE_delete_ptr(STACK_OF(TYPE) *sk, TYPE *ptr); 50 TYPE *sk_TYPE_pop(STACK_OF(TYPE) *sk); 51 TYPE *sk_TYPE_shift(STACK_OF(TYPE) *sk); 54 TYPE *sk_TYPE_set(STACK_OF(TYPE) *sk, int idx, const TYPE *ptr); 55 int sk_TYPE_find(STACK_OF(TYPE) *sk, TYPE *ptr); 251 B<sk_I<TYPE>_new>(), B<sk_I<TYPE>_new_null>() and B<sk_I<TYPE>_new_reserve>() 260 B<sk_I<TYPE>_free>(), B<sk_I<TYPE>_zero>(), B<sk_I<TYPE>_pop_free>() and 263 B<sk_I<TYPE>_pop>(), B<sk_I<TYPE>_shift>(), B<sk_I<TYPE>_delete>() and [all …]
|
A D | d2i_RSAPrivateKey.pod | 78 TYPE *d2i_TYPEPrivateKey_bio(BIO *bp, TYPE **a); 79 TYPE *d2i_TYPEPrivateKey_fp(FILE *fp, TYPE **a); 81 TYPE *d2i_TYPEPublicKey_bio(BIO *bp, TYPE **a); 82 TYPE *d2i_TYPEPublicKey_fp(FILE *fp, TYPE **a); 83 TYPE *d2i_TYPEparams(TYPE **a, const unsigned char **ppin, long length); 84 TYPE *d2i_TYPEparams_bio(BIO *bp, TYPE **a); 85 TYPE *d2i_TYPEparams_fp(FILE *fp, TYPE **a); 87 TYPE *d2i_TYPE_PUBKEY_bio(BIO *bp, TYPE **a); 88 TYPE *d2i_TYPE_PUBKEY_fp(FILE *fp, TYPE **a); 258 The actual TYPE structure passed to B<i2d_I<TYPE>>() must be a valid [all …]
|
A D | OPENSSL_LH_COMPFUNC.pod | 23 DECLARE_LHASH_OF(TYPE); 29 TYPE *lh_TYPE_insert(LHASH_OF(TYPE) *table, TYPE *data); 30 TYPE *lh_TYPE_delete(LHASH_OF(TYPE) *table, TYPE *data); 31 TYPE *lh_retrieve(LHASH_OF(TYPE) *table, TYPE *data); 64 B<lh_I<TYPE>_new>() creates a new B<LHASH_OF>(B<I<TYPE>>) structure to store 88 static int stuff_cmp(const TYPE *a, const TYPE *b) 111 B<lh_I<TYPE>_free>() frees the B<LHASH_OF>(B<I<TYPE>>) structure 157 B<lh_I<TYPE>_doall_arg>() is the same as B<lh_I<TYPE>_doall>() except that 172 static IMPLEMENT_LHASH_DOALL_ARG_FN(TYPE, const TYPE, BIO) 189 function returns or uses a B<I<TYPE> *> or B<LHASH_OF(I<TYPE>) *>. B<lh_I<TYPE>> [all …]
|
A D | PEM_read_CMS.pod | 51 DECLARE_PEM_rw(name, TYPE) 53 TYPE *PEM_read_TYPE(FILE *fp, TYPE **a, pem_password_cb *cb, void *u); 54 TYPE *PEM_read_bio_TYPE(BIO *bp, TYPE **a, pem_password_cb *cb, void *u); 55 int PEM_write_TYPE(FILE *fp, const TYPE *a); 56 int PEM_write_bio_TYPE(BIO *bp, const TYPE *a); 91 In the description below, B<I<TYPE>> is used 101 B<PEM_read_I<TYPE>>() reads a PEM-encoded object of B<I<TYPE>> from the file 105 B<PEM_read_bio_I<TYPE>>() is similar to B<PEM_read_I<TYPE>>() but reads from 111 B<PEM_write_bio_I<TYPE>>() similarly writes to the BIO I<bp>. 121 B<PEM_read_I<TYPE>>() and B<PEM_read_bio_I<TYPE>>() return a pointer to an [all …]
|
A D | d2i_X509.pod | 357 TYPE *d2i_TYPE(TYPE **a, const unsigned char **ppin, long length); 358 TYPE *d2i_TYPE_bio(BIO *bp, TYPE **a); 359 TYPE *d2i_TYPE_fp(FILE *fp, TYPE **a); 392 B<d2i_I<TYPE>_bio>() is similar to B<d2i_I<TYPE>>() except it attempts 395 B<d2i_I<TYPE>_fp>() is similar to B<d2i_I<TYPE>>() except it attempts 408 B<i2d_I<TYPE>_bio>() is similar to B<i2d_I<TYPE>>() except it writes 412 B<i2d_I<TYPE>_fp>() is similar to B<i2d_I<TYPE>>() except it writes 427 The actual TYPE structure passed to B<i2d_I<TYPE>>() must be a valid 485 B<d2i_I<TYPE>>(), B<d2i_I<TYPE>_bio>() and B<d2i_I<TYPE>_fp>() return a valid 493 B<i2d_I<TYPE>_bio>() and B<i2d_I<TYPE>_fp>() return 1 for success and 0 if an [all …]
|
A D | X509_dup.pod | 318 TYPE *TYPE_new(void); 319 TYPE *TYPE_dup(const TYPE *a); 320 void TYPE_free(TYPE *a); 333 In the description below, B<I<TYPE>> is used 350 B<I<TYPE>_new>() allocates an empty object of the indicated type. 351 The object returned must be released by calling B<I<TYPE>_free>(). 353 B<I<TYPE>_new_ex>() is similiar to B<I<TYPE>_new>() but also passes the 356 binary data using B<d2i_I<TYPE>>(). 358 B<I<TYPE>_dup>() copies an existing object, leaving it untouched. 371 B<I<TYPE>_new>(), B<I<TYPE>_new_ex>() and B<I<TYPE>_dup>() return a pointer to [all …]
|
A D | BIO_get_ex_new_index.pod | 39 int TYPE_set_ex_data(TYPE *d, int idx, void *arg); 41 void *TYPE_get_ex_data(const TYPE *d, int idx); 43 #define TYPE_set_app_data(TYPE *d, void *arg) 44 #define TYPE_get_app_data(TYPE *d) 75 In the description here, I<TYPE> is used a placeholder 78 All functions with a I<TYPE> of B<DH>, B<DSA>, B<RSA> and B<EC_KEY> are deprecated. 82 All functions with a I<TYPE> of B<ENGINE> are deprecated. 92 an offset into the opaque exdata part of the TYPE object. 95 an offset into the opaque exdata part of the TYPE object.
|
/openssl-master/crypto/pem/ |
A D | pem_local.h | 96 # define IMPLEMENT_PEM_provided_write_to(name, TYPE, type, str, asn1, \ argument 98 PEM_write_fnsig(name, TYPE, OUTTYPE, writename) \ 105 PEM_write_ex_fnsig(name, TYPE, OUTTYPE, writename) \ 116 PEM_write_cb_fnsig(name, TYPE, OUTTYPE, writename) \ 124 PEM_write_ex_cb_fnsig(name, TYPE, OUTTYPE, writename) \ 135 # define IMPLEMENT_PEM_provided_write_fp(name, TYPE, type, str, asn1) argument 136 # define IMPLEMENT_PEM_provided_write_cb_fp(name, TYPE, type, str, asn1) argument 154 IMPLEMENT_PEM_provided_write_fp(name, TYPE, type, str, asn1) 158 IMPLEMENT_PEM_provided_write_cb_fp(name, TYPE, type, str, asn1) 162 IMPLEMENT_PEM_provided_write(name, TYPE, type, str, asn1) [all …]
|
/openssl-master/doc/internal/man3/ |
A D | OSSL_SAFE_MATH_SIGNED.pod | 16 OSSL_SAFE_MATH_SIGNED(NAME, TYPE) 17 OSSL_SAFE_MATH_UNSIGNED(NAME, TYPE) 19 TYPE safe_add_TYPE(TYPE a, TYPE b, int *err); 20 TYPE safe_sub_TYPE(TYPE a, TYPE b, int *err); 21 TYPE safe_mul_TYPE(TYPE a, TYPE b, int *err); 22 TYPE safe_div_TYPE(TYPE a, TYPE b, int *err); 23 TYPE safe_mod_TYPE(TYPE a, TYPE b, int *err); 24 TYPE safe_muldiv_TYPE(TYPE a, TYPE b, TYPE c, int *err); 25 TYPE safe_neg_TYPE(TYPE a, int *err); 26 TYPE safe_abs_TYPE(TYPE a, int *err); [all …]
|
A D | OPENSSL_SA.pod | 16 SPARSE_ARRAY_OF(TYPE) 17 DEFINE_SPARSE_ARRAY_OF(TYPE) 19 SPARSE_ARRAY_OF(TYPE) *ossl_sa_TYPE_new(void); 20 void ossl_sa_TYPE_free(const SPARSE_ARRAY_OF(TYPE) *sa); 28 TYPE *ossl_sa_TYPE_get(const SPARSE_ARRAY_OF(TYPE) *sa, ossl_uintmax_t idx); 30 TYPE *value); 44 array of B<I<TYPE>>. This will mean that a pointer to type B<I<TYPE>> 47 B<ossl_sa_I<TYPE>_>. For example: 49 TYPE *ossl_sa_TYPE_get(SPARSE_ARRAY_OF(TYPE) *sa, ossl_uintmax_t idx); 113 B<ossl_sa_I<TYPE>_doall>(), B<ossl_sa_I<TYPE>_doall_arg>(), [all …]
|
/openssl-master/external/perl/Text-Template-1.56/t/ |
A D | taint.t | 76 should_fail TYPE => 'file', SOURCE => $tfile; 77 should_fail TYPE => 'file', SOURCE => $tfile, UNTAINT => 1; 78 should_fail TYPE => 'file', SOURCE => $file; 79 should_work TYPE => 'file', SOURCE => $file, UNTAINT => 1; 83 should_fail TYPE => 'filehandle', SOURCE => $fh; 95 should_fail TYPE => 'string', SOURCE => $ttemplate; 97 should_work TYPE => 'string', SOURCE => $template; 103 should_fail TYPE => 'array', SOURCE => $tarray; 104 should_fail TYPE => 'array', SOURCE => $tarray, UNTAINT => 1; 105 should_work TYPE => 'array', SOURCE => $array; [all …]
|
A D | broken.t | 13 TYPE => 'string', 21 TYPE => 'string', 30 TYPE => 'string', 38 TYPE => 'string', 50 TYPE => 'string', 62 my $r = Text::Template->new(TYPE => 'string', SOURCE => 'abc{1/0}defg')
|
A D | prepend.t | 20 TYPE => 'STRING', 24 TYPE => 'STRING', 41 TYPE => 'STRING', 45 TYPE => 'STRING', 61 TYPE => 'STRING', 65 TYPE => 'STRING',
|
A D | delimiters.t | 18 TYPE => 'STRING', 27 $template1 = Text::Template->new(TYPE => 'STRING', SOURCE => $template); 35 TYPE => 'STRING', 44 $template1 = Text::Template->new(TYPE => 'STRING', SOURCE => $template); 74 TYPE => 'STRING',
|
A D | error.t | 20 eval { Text::Template->new(TYPE => 'FILE'); }; 24 eval { Text::Template->new(TYPE => 'wlunch', SOURCE => 'fish food'); }; 29 TYPE => 'file',
|
A D | basic.t | 103 $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => 'B{"\\}"}C{"\\{"}D'); 111 $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => qq{A{"\t"}B}); 141 my $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => $test); 175 TYPE => 'string',
|
A D | template-encoding.t | 27 TYPE => 'FILE', 42 TYPE => 'FILE',
|
A D | strict.t | 20 TYPE => 'STRING', 24 TYPE => 'STRING',
|
A D | preprocess.t | 32 $tmpl = Text::Template::Preprocess->new(TYPE => 'STRING', SOURCE => $t) or die; 36 $tmpl = Text::Template::Preprocess->new(TYPE => 'FILEHANDLE', SOURCE => $tfh) or die;
|
A D | safe2.t | 29 TYPE => 'STRING', 55 TYPE => 'STRING',
|
/openssl-master/test/ |
A D | cmp_ctx_test.c | 346 TYPE val1_to_free = NEW; \ 349 TYPE val2_to_free = NEW; \ 351 TYPE val2_read = 0; \ 352 TYPE val3_read = 0; \ 512 TYPE *, NULL, IS_0, TYPE##_new(), TYPE##_free) 529 TYPE *, NULL, DEFAULT, TYPE##_new(), TYPE##_free) 548 sk_##TYPE##_new_null(), sk_##TYPE##_free) 625 TYPE val1_to_free = NEW; \ 630 TYPE val2_read = 0; \ 717 DEFINE_PUSH_BASE_TEST(push##N, DUP, FIELD, ELEM, TYPE *, TYPE, \ [all …]
|
A D | cmp_client_test.c | 239 const int TYPE = OSSL_CMP_KUR; in execute_try_certreq_poll_test() local 243 return TEST_int_eq(-1, OSSL_CMP_try_certreq(ctx, TYPE, NULL, &check_after)) in execute_try_certreq_poll_test() 246 && TEST_int_eq(-1, OSSL_CMP_try_certreq(ctx, TYPE, NULL, &check_after)) in execute_try_certreq_poll_test() 250 OSSL_CMP_try_certreq(ctx, TYPE, NULL, NULL)) in execute_try_certreq_poll_test() 268 const int TYPE = OSSL_CMP_CR; in execute_try_certreq_poll_abort_test() local 272 return TEST_int_eq(-1, OSSL_CMP_try_certreq(ctx, TYPE, NULL, &check_after)) in execute_try_certreq_poll_abort_test()
|
/openssl-master/external/perl/Text-Template-1.56/lib/Text/ |
A D | Template.pm | 81 TYPE => $stype, 107 my $type = $self->{TYPE}; 129 $self->{TYPE} = 'STRING'; 134 $self->{TYPE} = 'STRING'; 138 $self->{TYPE} = 'STRING'; 170 $self->{TYPE} = $type || 'STRING'; 178 return 1 if $self->{TYPE} eq 'PREPARSED'; 182 unless ($self->{TYPE} eq 'STRING') { 270 $self->{TYPE} = 'PREPARSED'; 296 unless ($fi_self->{TYPE} eq 'PREPARSED') { [all …]
|
/openssl-master/fuzz/ |
A D | asn1.c | 212 #define DO_TEST(TYPE, D2I, I2D, PRINT) { \ argument 215 TYPE *type = D2I(NULL, &p, len); \ 226 TYPE ## _free(type); \ 233 TYPE *type = D2I(NULL, &p, len); \ 242 TYPE ## _free(type); \ 246 #define DO_TEST_PRINT_PCTX(TYPE, D2I, I2D, PRINT) { \ argument 249 TYPE *type = D2I(NULL, &p, len); \ 258 TYPE ## _free(type); \ 263 #define DO_TEST_NO_PRINT(TYPE, D2I, I2D) { \ argument 266 TYPE *type = D2I(NULL, &p, len); \ [all …]
|
/openssl-master/util/ |
A D | check-format-test-negatives.c | 265 #define DEFINE_SET_GET_BASE_TEST(PREFIX, SETN, GETN, DUP, FIELD, TYPE, ERR, \ argument 271 int (*set_fn)(CTX *ctx, TYPE) = \ 272 (int (*)(CTX *ctx, TYPE))PREFIX##_##SETN##_##FIELD; \
|