Lines Matching refs:dest
108 int X509_ALGOR_copy(X509_ALGOR *dest, const X509_ALGOR *src) in X509_ALGOR_copy() argument
110 if (src == NULL || dest == NULL) in X509_ALGOR_copy()
113 if (dest->algorithm) in X509_ALGOR_copy()
114 ASN1_OBJECT_free(dest->algorithm); in X509_ALGOR_copy()
115 dest->algorithm = NULL; in X509_ALGOR_copy()
117 if (dest->parameter) in X509_ALGOR_copy()
118 ASN1_TYPE_free(dest->parameter); in X509_ALGOR_copy()
119 dest->parameter = NULL; in X509_ALGOR_copy()
122 if ((dest->algorithm = OBJ_dup(src->algorithm)) == NULL) in X509_ALGOR_copy()
126 dest->parameter = ASN1_TYPE_new(); in X509_ALGOR_copy()
127 if (dest->parameter == NULL) in X509_ALGOR_copy()
133 if (ASN1_TYPE_set1(dest->parameter, src->parameter->type, in X509_ALGOR_copy()