Lines Matching defs:list
37 * XTextPropertyToStringList - set list and count to contain data stored in
46 char **list; /* return value */
65 * walk the list to figure out how many elements there are
73 * allocate list and duplicate
75 list = Xmallocarray (nelements, sizeof (char *));
76 if (!list) return False;
80 Xfree (list);
91 * walk down list setting value
95 list[j] = start;
104 *list_return = list;
110 void XFreeStringList (char **list)
112 if (list) {
113 if (list[0]) Xfree (list[0]);
114 Xfree (list);
115 list = NULL;