Lines Matching refs:point
206 DIST_POINT *point = DIST_POINT_new(); in crldp_from_section() local
208 if (point == NULL) in crldp_from_section()
213 ret = set_dist_point_name(&point->distpoint, ctx, cnf); in crldp_from_section()
219 if (!set_reasons(&point->reasons, cnf->value)) in crldp_from_section()
222 point->CRLissuer = gnames_from_sectname(ctx, cnf->value); in crldp_from_section()
223 if (point->CRLissuer == NULL) in crldp_from_section()
228 return point; in crldp_from_section()
231 DIST_POINT_free(point); in crldp_from_section()
249 DIST_POINT *point; in v2i_crld() local
257 point = crldp_from_section(ctx, dpsect); in v2i_crld()
259 if (point == NULL) in v2i_crld()
261 sk_DIST_POINT_push(crld, point); /* no failure as it was reserved */ in v2i_crld()
270 if ((point = DIST_POINT_new()) == NULL) in v2i_crld()
272 sk_DIST_POINT_push(crld, point); /* no failure as it was reserved */ in v2i_crld()
273 if ((point->distpoint = DIST_POINT_NAME_new()) == NULL) in v2i_crld()
275 point->distpoint->name.fullname = gens; in v2i_crld()
276 point->distpoint->type = 0; in v2i_crld()
462 DIST_POINT *point; in i2r_crldp() local
467 point = sk_DIST_POINT_value(crld, i); in i2r_crldp()
468 if (point->distpoint) in i2r_crldp()
469 print_distpoint(out, point->distpoint, indent); in i2r_crldp()
470 if (point->reasons) in i2r_crldp()
471 print_reasons(out, "Reasons", point->reasons, indent); in i2r_crldp()
472 if (point->CRLissuer) { in i2r_crldp()
474 print_gens(out, point->CRLissuer, indent); in i2r_crldp()