/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | app_x509.c | 90 char *stmp, *vtmp = NULL; in do_x509_ctrl_string() local 94 stmp = OPENSSL_strdup(value); in do_x509_ctrl_string() 95 if (stmp == NULL) in do_x509_ctrl_string() 97 vtmp = strchr(stmp, ':'); in do_x509_ctrl_string() 104 if (strcmp(stmp, "distid") == 0) { in do_x509_ctrl_string() 108 } else if (strcmp(stmp, "hexdistid") == 0) { in do_x509_ctrl_string() 114 OPENSSL_free(stmp); in do_x509_ctrl_string() 115 stmp = vtmp = hexid; in do_x509_ctrl_string() 125 OPENSSL_free(stmp); in do_x509_ctrl_string()
|
H A D | apps.c | 2032 char *stmp, *vtmp = NULL; in pkey_ctrl_string() local 2034 stmp = OPENSSL_strdup(value); in pkey_ctrl_string() 2035 if (stmp == NULL) in pkey_ctrl_string() 2037 vtmp = strchr(stmp, ':'); in pkey_ctrl_string() 2043 rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp); in pkey_ctrl_string() 2046 OPENSSL_free(stmp); in pkey_ctrl_string() 3305 char *opt = "", *stmp, *vtmp = NULL; in STACK_OF() local 3317 if ((stmp = OPENSSL_strdup(opt)) == NULL in STACK_OF() 3318 || (vtmp = strchr(stmp, ':')) == NULL) in STACK_OF() 3320 /* Replace ':' with 0 to terminate the string pointed to by stmp */ in STACK_OF() [all...] |
/third_party/openssl/apps/lib/ |
H A D | app_x509.c | 90 char *stmp, *vtmp = NULL; in do_x509_ctrl_string() local 94 stmp = OPENSSL_strdup(value); in do_x509_ctrl_string() 95 if (stmp == NULL) in do_x509_ctrl_string() 97 vtmp = strchr(stmp, ':'); in do_x509_ctrl_string() 104 if (strcmp(stmp, "distid") == 0) { in do_x509_ctrl_string() 108 } else if (strcmp(stmp, "hexdistid") == 0) { in do_x509_ctrl_string() 114 OPENSSL_free(stmp); in do_x509_ctrl_string() 115 stmp = vtmp = hexid; in do_x509_ctrl_string() 125 OPENSSL_free(stmp); in do_x509_ctrl_string()
|
H A D | apps.c | 2025 char *stmp, *vtmp = NULL; in pkey_ctrl_string() local 2027 stmp = OPENSSL_strdup(value); in pkey_ctrl_string() 2028 if (stmp == NULL) in pkey_ctrl_string() 2030 vtmp = strchr(stmp, ':'); in pkey_ctrl_string() 2036 rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp); in pkey_ctrl_string() 2039 OPENSSL_free(stmp); in pkey_ctrl_string() 3298 char *opt = "", *stmp, *vtmp = NULL; in STACK_OF() local 3310 if ((stmp = OPENSSL_strdup(opt)) == NULL in STACK_OF() 3311 || (vtmp = strchr(stmp, ':')) == NULL) in STACK_OF() 3313 /* Replace ':' with 0 to terminate the string pointed to by stmp */ in STACK_OF() [all...] |
/third_party/openssl/crypto/x509/ |
H A D | x509_att.c | 267 ASN1_STRING *stmp = NULL; in X509_ATTRIBUTE_set1_data() local 272 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype, in X509_ATTRIBUTE_set1_data() 274 if (!stmp) { in X509_ATTRIBUTE_set1_data() 278 atype = stmp->type; in X509_ATTRIBUTE_set1_data() 280 if ((stmp = ASN1_STRING_type_new(attrtype)) == NULL) in X509_ATTRIBUTE_set1_data() 282 if (!ASN1_STRING_set(stmp, data, len)) in X509_ATTRIBUTE_set1_data() 292 ASN1_STRING_free(stmp); in X509_ATTRIBUTE_set1_data() 301 ASN1_TYPE_set(ttmp, atype, stmp); in X509_ATTRIBUTE_set1_data() 302 stmp = NULL; in X509_ATTRIBUTE_set1_data() 310 ASN1_STRING_free(stmp); in X509_ATTRIBUTE_set1_data() [all...] |
H A D | x509_lu.c | 315 X509_OBJECT stmp, *tmp; in X509_STORE_CTX_get_by_subject() local 321 stmp.type = X509_LU_NONE; in X509_STORE_CTX_get_by_subject() 322 stmp.data.ptr = NULL; in X509_STORE_CTX_get_by_subject() 333 j = X509_LOOKUP_by_subject_ex(lu, type, name, &stmp, vs->libctx, in X509_STORE_CTX_get_by_subject() 336 tmp = &stmp; in X509_STORE_CTX_get_by_subject() 505 X509_OBJECT stmp; in STACK_OF() local 510 stmp.type = type; in STACK_OF() 513 stmp.data.x509 = &x509_s; in STACK_OF() 517 stmp.data.crl = &crl_s; in STACK_OF() 525 idx = sk_X509_OBJECT_find_all(h, &stmp, pnmatc in STACK_OF() [all...] |
H A D | by_dir.c | 239 X509_OBJECT stmp, *tmp; in get_cert_by_subject_ex() local 245 stmp.type = type; in get_cert_by_subject_ex() 248 stmp.data.x509 = &data.st_x509; in get_cert_by_subject_ex() 251 stmp.data.crl = &data.crl; in get_cert_by_subject_ex() 352 j = sk_X509_OBJECT_find(xl->store_ctx->objs, &stmp); in get_cert_by_subject_ex()
|
H A D | v3_ncons.c | 413 ASN1_STRING stmp; 416 stmp.flags = 0; 417 stmp.type = V_ASN1_IA5STRING; 419 gntmp.d.dNSName = &stmp; 441 stmp.length = idlen; 442 stmp.data = idval;
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | x509_att.c | 336 ASN1_STRING *stmp = NULL; in X509_ATTRIBUTE_set1_data() local 341 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype, in X509_ATTRIBUTE_set1_data() 343 if (!stmp) { in X509_ATTRIBUTE_set1_data() 347 atype = stmp->type; in X509_ATTRIBUTE_set1_data() 349 if ((stmp = ASN1_STRING_type_new(attrtype)) == NULL) in X509_ATTRIBUTE_set1_data() 351 if (!ASN1_STRING_set(stmp, data, len)) in X509_ATTRIBUTE_set1_data() 361 ASN1_STRING_free(stmp); in X509_ATTRIBUTE_set1_data() 370 ASN1_TYPE_set(ttmp, atype, stmp); in X509_ATTRIBUTE_set1_data() 371 stmp = NULL; in X509_ATTRIBUTE_set1_data() 379 ASN1_STRING_free(stmp); in X509_ATTRIBUTE_set1_data() [all...] |
H A D | x509_lu.c | 315 X509_OBJECT stmp, *tmp; in X509_STORE_CTX_get_by_subject() local 321 stmp.type = X509_LU_NONE; in X509_STORE_CTX_get_by_subject() 322 stmp.data.ptr = NULL; in X509_STORE_CTX_get_by_subject() 333 j = X509_LOOKUP_by_subject_ex(lu, type, name, &stmp, vs->libctx, in X509_STORE_CTX_get_by_subject() 336 tmp = &stmp; in X509_STORE_CTX_get_by_subject() 505 X509_OBJECT stmp; in STACK_OF() local 510 stmp.type = type; in STACK_OF() 513 stmp.data.x509 = &x509_s; in STACK_OF() 517 stmp.data.crl = &crl_s; in STACK_OF() 525 idx = sk_X509_OBJECT_find_all(h, &stmp, pnmatc in STACK_OF() [all...] |
H A D | by_dir.c | 239 X509_OBJECT stmp, *tmp; in get_cert_by_subject_ex() local 245 stmp.type = type; in get_cert_by_subject_ex() 248 stmp.data.x509 = &data.st_x509; in get_cert_by_subject_ex() 251 stmp.data.crl = &data.crl; in get_cert_by_subject_ex() 353 j = sk_X509_OBJECT_find(xl->store_ctx->objs, &stmp); in get_cert_by_subject_ex()
|
H A D | v3_ncons.c | 413 ASN1_STRING stmp; 416 stmp.flags = 0; 417 stmp.type = V_ASN1_IA5STRING; 419 gntmp.d.dNSName = &stmp; 441 stmp.length = idlen; 442 stmp.data = idval;
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A D | a_strex.c | 607 ASN1_STRING stmp, *str = &stmp; in ASN1_STRING_to_UTF8() local 618 stmp.data = NULL; in ASN1_STRING_to_UTF8() 619 stmp.length = 0; in ASN1_STRING_to_UTF8() 620 stmp.flags = 0; in ASN1_STRING_to_UTF8() 626 *out = stmp.data; in ASN1_STRING_to_UTF8() 627 return stmp.length; in ASN1_STRING_to_UTF8()
|
H A D | tasn_dec.c | 835 ASN1_STRING *stmp; in asn1_ex_c2i() local 926 stmp = ASN1_STRING_type_new(utype); in asn1_ex_c2i() 927 if (stmp == NULL) { in asn1_ex_c2i() 931 *pval = (ASN1_VALUE *)stmp; in asn1_ex_c2i() 933 stmp = (ASN1_STRING *)*pval; in asn1_ex_c2i() 934 stmp->type = utype; in asn1_ex_c2i() 938 OPENSSL_free(stmp->data); in asn1_ex_c2i() 939 stmp->data = (unsigned char *)cont; /* UGLY CAST! RL */ in asn1_ex_c2i() 940 stmp->length = len; in asn1_ex_c2i() 943 if (!ASN1_STRING_set(stmp, con in asn1_ex_c2i() [all...] |
/third_party/openssl/crypto/asn1/ |
H A D | a_strex.c | 610 ASN1_STRING stmp, *str = &stmp; in ASN1_STRING_to_UTF8() local 621 stmp.data = NULL; in ASN1_STRING_to_UTF8() 622 stmp.length = 0; in ASN1_STRING_to_UTF8() 623 stmp.flags = 0; in ASN1_STRING_to_UTF8() 629 *out = stmp.data; in ASN1_STRING_to_UTF8() 630 return stmp.length; in ASN1_STRING_to_UTF8()
|
H A D | tasn_dec.c | 835 ASN1_STRING *stmp; in asn1_ex_c2i() local 926 stmp = ASN1_STRING_type_new(utype); in asn1_ex_c2i() 927 if (stmp == NULL) { in asn1_ex_c2i() 931 *pval = (ASN1_VALUE *)stmp; in asn1_ex_c2i() 933 stmp = (ASN1_STRING *)*pval; in asn1_ex_c2i() 934 stmp->type = utype; in asn1_ex_c2i() 938 OPENSSL_free(stmp->data); in asn1_ex_c2i() 939 stmp->data = (unsigned char *)cont; /* UGLY CAST! RL */ in asn1_ex_c2i() 940 stmp->length = len; in asn1_ex_c2i() 943 if (!ASN1_STRING_set(stmp, con in asn1_ex_c2i() [all...] |
/third_party/node/deps/openssl/openssl/providers/implementations/exchange/ |
H A D | ecdh_exch.c | 511 unsigned char *stmp = NULL; in ecdh_X9_63_kdf_derive() local 526 if ((stmp = OPENSSL_secure_malloc(stmplen)) == NULL) { in ecdh_X9_63_kdf_derive() 530 if (!ecdh_plain_derive(vpecdhctx, stmp, &stmplen, stmplen)) in ecdh_X9_63_kdf_derive() 535 stmp, stmplen, in ecdh_X9_63_kdf_derive() 545 OPENSSL_secure_clear_free(stmp, stmplen); in ecdh_X9_63_kdf_derive()
|
H A D | dh_exch.c | 182 unsigned char *stmp = NULL; in dh_X9_42_kdf_derive() local 197 if ((stmp = OPENSSL_secure_malloc(stmplen)) == NULL) { in dh_X9_42_kdf_derive() 201 if (!dh_plain_derive(pdhctx, stmp, &stmplen, stmplen, 1)) in dh_X9_42_kdf_derive() 207 stmp, stmplen, in dh_X9_42_kdf_derive() 218 OPENSSL_secure_clear_free(stmp, stmplen); in dh_X9_42_kdf_derive()
|
/third_party/openssl/providers/implementations/exchange/ |
H A D | ecdh_exch.c | 511 unsigned char *stmp = NULL; in ecdh_X9_63_kdf_derive() local 526 if ((stmp = OPENSSL_secure_malloc(stmplen)) == NULL) { in ecdh_X9_63_kdf_derive() 530 if (!ecdh_plain_derive(vpecdhctx, stmp, &stmplen, stmplen)) in ecdh_X9_63_kdf_derive() 535 stmp, stmplen, in ecdh_X9_63_kdf_derive() 545 OPENSSL_secure_clear_free(stmp, stmplen); in ecdh_X9_63_kdf_derive()
|
H A D | dh_exch.c | 182 unsigned char *stmp = NULL; in dh_X9_42_kdf_derive() local 197 if ((stmp = OPENSSL_secure_malloc(stmplen)) == NULL) { in dh_X9_42_kdf_derive() 201 if (!dh_plain_derive(pdhctx, stmp, &stmplen, stmplen, 1)) in dh_X9_42_kdf_derive() 207 stmp, stmplen, in dh_X9_42_kdf_derive() 218 OPENSSL_secure_clear_free(stmp, stmplen); in dh_X9_42_kdf_derive()
|
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
H A D | enums2names.py | 139 stmp = smatch.group(1) 142 self.error(f"enum '{stmp}' starting inside another enum '{self.name}'") 144 self.name = stmp
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | s_client.c | 754 BIO *stmp = BIO_new_file(sess_out, "w"); in new_session_cb() local 756 if (stmp == NULL) { in new_session_cb() 759 PEM_write_bio_SSL_SESSION(stmp, sess); in new_session_cb() 760 BIO_free(stmp); in new_session_cb() 1809 BIO *stmp = BIO_new_file(psksessf, "r"); in s_client_main() local 1811 if (stmp == NULL) { in s_client_main() 1816 psksess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL); in s_client_main() 1817 BIO_free(stmp); in s_client_main() 1954 BIO *stmp = BIO_new_file(sess_in, "r"); in s_client_main() local 1955 if (stmp in s_client_main() [all...] |
/third_party/openssl/apps/ |
H A D | s_client.c | 754 BIO *stmp = BIO_new_file(sess_out, "w"); in new_session_cb() local 756 if (stmp == NULL) { in new_session_cb() 759 PEM_write_bio_SSL_SESSION(stmp, sess); in new_session_cb() 760 BIO_free(stmp); in new_session_cb() 1809 BIO *stmp = BIO_new_file(psksessf, "r"); in s_client_main() local 1811 if (stmp == NULL) { in s_client_main() 1816 psksess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL); in s_client_main() 1817 BIO_free(stmp); in s_client_main() 1954 BIO *stmp = BIO_new_file(sess_in, "r"); in s_client_main() local 1955 if (stmp in s_client_main() [all...] |
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_blit.c | 1039 ASSERTED struct si_texture *stmp; in si_msaa_resolve_blit_via_CB() local 1142 stmp = (struct si_texture *)tmp; in si_msaa_resolve_blit_via_CB() 1144 stmp->swap_rgb_to_bgr = src->swap_rgb_to_bgr; in si_msaa_resolve_blit_via_CB() 1146 assert(!stmp->surface.is_linear); in si_msaa_resolve_blit_via_CB() 1147 assert(src->surface.micro_tile_mode == stmp->surface.micro_tile_mode); in si_msaa_resolve_blit_via_CB()
|
/third_party/libcoap/src/ |
H A D | coap_session.c | 659 coap_lg_srcv_t *sq, *stmp; in coap_session_mfree() local 661 LL_FOREACH_SAFE(session->lg_srcv, sq, stmp) { in coap_session_mfree() 985 coap_lg_srcv_t *sq, *stmp; in coap_session_disconnected() local 1071 LL_FOREACH_SAFE(session->lg_srcv, sq, stmp) { in coap_session_disconnected()
|