Lines Matching refs:str
266 ASN1_STRING *str = NULL;
279 str = (ASN1_STRING *)M_ASN1_OCTET_STRING_new();
280 if (str == NULL ||
281 M_ASN1_OCTET_STRING_set(str, keyid_str, keyid_len) == 0 ||
287 ASN1_TYPE_set(keyid, V_ASN1_OCTET_STRING, str);
288 str = NULL;
320 if (str != NULL)
321 ASN1_STRING_free(str);
353 ASN1_OCTET_STRING *str = NULL;
384 str = ty->value.octet_string;
385 len = str->length;
391 (void) memcpy(*keyid_str, str->data, len);
417 ASN1_BMPSTRING *str = NULL;
446 str = ty->value.bmpstring;
448 *fname = uni2asc(str->data, str->length);
450 *fname = OPENSSL_uni2asc(str->data, str->length);