Lines Matching defs:point
207 DIST_POINT *point = DIST_POINT_new();
209 if (point == NULL)
214 ret = set_dist_point_name(&point->distpoint, ctx, cnf);
220 if (!set_reasons(&point->reasons, cnf->value))
223 point->CRLissuer = gnames_from_sectname(ctx, cnf->value);
224 if (point->CRLissuer == NULL)
229 return point;
232 DIST_POINT_free(point);
250 DIST_POINT *point;
258 point = crldp_from_section(ctx, dpsect);
260 if (point == NULL)
262 sk_DIST_POINT_push(crld, point); /* no failure as it was reserved */
271 if ((point = DIST_POINT_new()) == NULL)
273 sk_DIST_POINT_push(crld, point); /* no failure as it was reserved */
274 if ((point->distpoint = DIST_POINT_NAME_new()) == NULL)
276 point->distpoint->name.fullname = gens;
277 point->distpoint->type = 0;
463 DIST_POINT *point;
468 point = sk_DIST_POINT_value(crld, i);
469 if (point->distpoint)
470 print_distpoint(out, point->distpoint, indent);
471 if (point->reasons)
472 print_reasons(out, "Reasons", point->reasons, indent);
473 if (point->CRLissuer) {
475 print_gens(out, point->CRLissuer, indent);