Lines Matching defs:sections
47 char **sections;
76 char **sections = NULL;
81 if (sections == NULL || sections_offset > sections_size - 1) { \
83 sections = erealloc(sections, sections_size * sizeof(*sections)); \
101 sections[sections_offset++] = section;
140 sections[sections_offset++] = estrdup(optarg);
147 if (sections) {
149 sections[sections_offset] = NULL;
151 aflags->sections = sections;
169 aflags.sections = NULL;
239 args.sections = aflags.sections;
262 if (aflags.sections) {
263 for(i = 0; aflags.sections[i]; i++)
264 free(aflags.sections[i]);
265 free(aflags.sections);