Home
last modified time | relevance | path

Searched refs:inf (Results 1 – 13 of 13) sorted by relevance

/openssl/crypto/dso/
H A Ddso_dl.c250 struct shl_descriptor inf; in dl_pathbyaddr() local
263 for (i = -1; shl_get_r(i, &inf) == 0; i++) { in dl_pathbyaddr()
264 if (((size_t)addr >= inf.tstart && (size_t)addr < inf.tend) || in dl_pathbyaddr()
265 ((size_t)addr >= inf.dstart && (size_t)addr < inf.dend)) { in dl_pathbyaddr()
266 len = (int)strlen(inf.filename); in dl_pathbyaddr()
271 memcpy(path, inf.filename, len); in dl_pathbyaddr()
/openssl/crypto/asn1/
H A Dtasn_dec.c705 char cst, inf, free_cont = 0; in asn1_d2i_ex_primitive() local
775 if (inf) { in asn1_d2i_ex_primitive()
977 if (inf == 0) { in asn1_find_end()
1003 if (inf) { in asn1_find_end()
1045 inf &= 1; in asn1_collect()
1050 if (!buf && !inf) { in asn1_collect()
1061 if (!inf) { in asn1_collect()
1065 inf = 0; in asn1_collect()
1087 if (inf) { in asn1_collect()
1199 if (inf != NULL) in asn1_check_tlen()
[all …]
H A Dasn1_lib.c16 static int asn1_get_length(const unsigned char **pp, int *inf, long *rl,
52 int tag, xclass, inf; in ASN1_get_object() local
88 if (!asn1_get_length(&p, &inf, plength, max)) in ASN1_get_object()
91 if (inf && !(ret & V_ASN1_CONSTRUCTED)) in ASN1_get_object()
103 return ret | inf; in ASN1_get_object()
116 static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, in asn1_get_length() argument
126 *inf = 1; in asn1_get_length()
129 *inf = 0; in asn1_get_length()
H A Da_d2i_fp.c122 int inf, tag, xclass; in asn1_d2i_read_bio() local
160 inf = ASN1_get_object(&q, &slen, &tag, &xclass, diff); in asn1_d2i_read_bio()
161 if (inf & 0x80) { in asn1_d2i_read_bio()
172 if (inf & 1) { in asn1_d2i_read_bio()
H A Da_object.c222 int inf, i; in d2i_ASN1_OBJECT() local
225 inf = ASN1_get_object(&p, &len, &tag, &xclass, length); in d2i_ASN1_OBJECT()
226 if (inf & 0x80) { in d2i_ASN1_OBJECT()
H A Da_int.c402 int inf, tag, xclass; in d2i_ASN1_UINTEGER() local
413 inf = ASN1_get_object(&p, &len, &tag, &xclass, length); in d2i_ASN1_UINTEGER()
414 if (inf & 0x80) { in d2i_ASN1_UINTEGER()
/openssl/crypto/ocsp/
H A Docsp_prn.c93 OCSP_REQINFO *inf = &o->tbsRequest; in OCSP_REQUEST_print() local
98 l = ASN1_INTEGER_get(inf->version); in OCSP_REQUEST_print()
101 if (inf->requestorName != NULL) { in OCSP_REQUEST_print()
104 GENERAL_NAME_print(bp, inf->requestorName); in OCSP_REQUEST_print()
108 for (i = 0; i < sk_OCSP_ONEREQ_num(inf->requestList); i++) { in OCSP_REQUEST_print()
109 one = sk_OCSP_ONEREQ_value(inf->requestList, i); in OCSP_REQUEST_print()
118 inf->requestExtensions, flags, 4)) in OCSP_REQUEST_print()
/openssl/crypto/x509/
H A Dby_file.c219 STACK_OF(X509_INFO) *inf; in X509_load_cert_crl_file_ex()
231 inf = PEM_X509_INFO_read_bio_ex(in, NULL, NULL, "", libctx, propq); in X509_load_cert_crl_file_ex()
233 if (!inf) { in X509_load_cert_crl_file_ex()
237 for (i = 0; i < sk_X509_INFO_num(inf); i++) { in X509_load_cert_crl_file_ex()
238 itmp = sk_X509_INFO_value(inf, i); in X509_load_cert_crl_file_ex()
253 sk_X509_INFO_pop_free(inf, X509_INFO_free); in X509_load_cert_crl_file_ex()
H A Dx_crl.c363 X509_CRL_INFO *inf; in X509_CRL_add0_revoked() local
365 inf = &crl->crl; in X509_CRL_add0_revoked()
366 if (inf->revoked == NULL) in X509_CRL_add0_revoked()
367 inf->revoked = sk_X509_REVOKED_new(X509_REVOKED_cmp); in X509_CRL_add0_revoked()
368 if (inf->revoked == NULL || !sk_X509_REVOKED_push(inf->revoked, rev)) { in X509_CRL_add0_revoked()
372 inf->enc.modified = 1; in X509_CRL_add0_revoked()
/openssl/apps/
H A Drehash.c239 STACK_OF (X509_INFO) *inf = NULL; in do_file()
265 inf = PEM_X509_INFO_read_bio(b, NULL, NULL, NULL); in do_file()
267 if (inf == NULL) in do_file()
270 if (sk_X509_INFO_num(inf) != 1) { in do_file()
278 x = sk_X509_INFO_value(inf, 0); in do_file()
320 sk_X509_INFO_pop_free(inf, X509_INFO_free); in do_file()
H A Docsp.c1062 char **inf; in make_ocsp_response() local
1092 inf = lookup_serial(db, serial); in make_ocsp_response()
1103 if (inf == NULL) { in make_ocsp_response()
1107 } else if (inf[DB_type][0] == DB_TYPE_VAL) { in make_ocsp_response()
1111 } else if (inf[DB_type][0] == DB_TYPE_REV) { in make_ocsp_response()
1118 unpack_revinfo(&revtm, &reason, &inst, &invtm, inf[DB_rev_date]); in make_ocsp_response()
H A Ds_client.c3450 int tag, xclass, inf, ret = -1; in ldap_ExtendedResponse_parse() local
3483 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem); in ldap_ExtendedResponse_parse()
3484 if (inf != V_ASN1_CONSTRUCTED || tag != V_ASN1_SEQUENCE || in ldap_ExtendedResponse_parse()
3493 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem); in ldap_ExtendedResponse_parse()
3494 if (inf != V_ASN1_UNIVERSAL || tag != V_ASN1_INTEGER || in ldap_ExtendedResponse_parse()
3504 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem); in ldap_ExtendedResponse_parse()
3505 if (inf != V_ASN1_CONSTRUCTED || xclass != V_ASN1_APPLICATION || in ldap_ExtendedResponse_parse()
3513 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem); in ldap_ExtendedResponse_parse()
3514 if (inf != V_ASN1_UNIVERSAL || tag != V_ASN1_ENUMERATED || len == 0 || in ldap_ExtendedResponse_parse()
3521 for (ret = 0, inf = 0; inf < len; inf++) { in ldap_ExtendedResponse_parse()
[all …]
/openssl/test/recipes/04-test_params_conversion_data/
H A Dnative_types.txt335 double=inf

Completed in 45 milliseconds