Lines Matching defs:flist
56 char **flist = NULL;
104 tmp_flist = Xreallocarray (flist, size + 1, sizeof(char *));
106 flist = tmp_flist;
113 if (! (flist = Xmallocarray(size + 1, sizeof(char *)))) {
157 flist[i] = Xmalloc (nbytes);
158 if (! flist[i]) {
163 *flist[0] = 0; /* zero to distinguish from XListFonts */
164 flist[0]++;
166 flist[i][reply.nameLength] = '\0';
167 _XReadPad (dpy, flist[i], (long) reply.nameLength);
171 if (flist)
172 flist[i] = NULL; /* required in case XFreeFontNames is called */
175 return (flist);
182 flist[j]--; /* was incremented above */
183 Xfree(flist[j]);
186 Xfree(flist);