sections           32 source4/param/generic.c 	for (sect = ctx->sections; sect; sect = sect->next) {
sections           70 source4/param/generic.c 	DLIST_ADD_END(ctx->sections, section, struct param_section *);
sections          195 source4/param/generic.c 		DLIST_ADD_END(ctx->sections, section, struct param_section *);
sections          199 source4/param/generic.c 	DLIST_PROMOTE(ctx->sections, section);
sections          207 source4/param/generic.c 	struct param_opt *p = param_section_get(ctx->sections, name);
sections          210 source4/param/generic.c 		p = talloc_zero(ctx->sections, struct param_opt);
sections          216 source4/param/generic.c 		DLIST_ADD(ctx->sections->parameters, p);
sections          233 source4/param/generic.c 	ctx->sections = talloc_zero(ctx, struct param_section);
sections          234 source4/param/generic.c 	if (ctx->sections == NULL)
sections          237 source4/param/generic.c 	ctx->sections->name = talloc_strdup(ctx->sections, "global");
sections          249 source4/param/generic.c 	for (section = ctx->sections; section; section = section->next) {
sections          281 source4/param/generic.c 	for (section = ctx->sections; section; section = section->next) {
sections           31 source4/param/param.h 	struct param_section *sections;