Home | History | Annotate | Download | only in dropbear

Lines Matching full:list

8  *    notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
154 if (args->list == NULL) {
160 args->list = xrealloc(args->list, nalloc * sizeof(char *));
162 args->list[args->num++] = cp;
163 args->list[args->num] = NULL;
182 xfree(args->list[which]);
183 args->list[which] = cp;
191 if (args->list != NULL) {
193 xfree(args->list[i]);
194 xfree(args->list);
196 args->list = NULL;