Lines Matching refs:berval
297 ber_get_oid(BerElement *ber, struct berval *oid)
319 ber_get_bigint(BerElement *ber, struct berval **bv)
324 if ((*bv = (struct berval *)malloc(sizeof (struct berval)))
367 kmfber_get_stringal(BerElement *ber, struct berval **bv)
372 if ((*bv = (struct berval *)malloc(sizeof (struct berval)))
481 kmfber_bvfree(struct berval *bv)
492 kmfber_bvecfree(struct berval **bv)
511 struct berval ***bv, **bvp, *bval;
534 bval = va_arg(ap, struct berval *);
558 case 'o': /* octet string in a supplied berval */
559 bval = va_arg(ap, struct berval *);
566 bvp = va_arg(ap, struct berval **);
570 bvp = va_arg(ap, struct berval **);
627 bv = va_arg(ap, struct berval ***);
636 *bv = (struct berval **)malloc(
637 2 * sizeof (struct berval *));
639 *bv = (struct berval **)realloc(*bv,
640 (j + 2) * sizeof (struct berval *));
710 case 'o': /* octet string in a supplied berval */
711 bval = va_arg(ap, struct berval *);
713 (void) memset(bval, 0, sizeof (struct berval));
717 bvp = va_arg(ap, struct berval **);
747 bv = va_arg(ap, struct berval ***);
773 struct berval *
774 kmfber_bvdup(const struct berval *bv)
776 struct berval *new;
778 if ((new = (struct berval *)malloc(sizeof (struct berval)))