Home | History | Annotate | Download | only in libdw

Lines Matching defs:dirlist

223       struct dirlist
227 struct dirlist *next;
234 struct dirlist *dirlist = &comp_dir_elem;
240 struct dirlist *new_dir =
241 (struct dirlist *) alloca (sizeof (*new_dir));
248 new_dir->next = dirlist;
249 dirlist = new_dir;
257 struct dirlist **dirarray
258 = (struct dirlist **) alloca (ndirlist * sizeof (*dirarray));
259 for (unsigned int n = ndirlist; n-- > 0; dirlist = dirlist->next)
260 dirarray[n] = dirlist;