Lines Matching refs:rv
151 ASN1_STRING_TABLE *tmp, *rv; in stable_get() local
162 if ((rv = OPENSSL_zalloc(sizeof(*rv))) == NULL) { in stable_get()
166 if (!sk_ASN1_STRING_TABLE_push(stable, rv)) { in stable_get()
167 OPENSSL_free(rv); in stable_get()
171 rv->nid = tmp->nid; in stable_get()
172 rv->minsize = tmp->minsize; in stable_get()
173 rv->maxsize = tmp->maxsize; in stable_get()
174 rv->mask = tmp->mask; in stable_get()
175 rv->flags = tmp->flags | STABLE_FLAGS_MALLOC; in stable_get()
177 rv->nid = nid; in stable_get()
178 rv->minsize = -1; in stable_get()
179 rv->maxsize = -1; in stable_get()
180 rv->flags = STABLE_FLAGS_MALLOC; in stable_get()
182 return rv; in stable_get()