Lines Matching defs:sarray
165 PropList sarray = (PropList) closure;
168 XDeleteContext(sarray->dpy, DefaultRootWindow(sarray->dpy),
171 XtFree((char *) sarray->list);
178 PropList sarray;
184 (XPointer *) &sarray)) {
196 sarray = (PropList) __XtMalloc((unsigned) sizeof(PropListRec));
197 sarray->dpy = dpy;
199 sarray->incr_atom = atoms[0];
200 sarray->indirect_atom = atoms[1];
201 sarray->timestamp_atom = atoms[2];
202 sarray->propCount = 1;
203 sarray->list =
205 sarray->list[0].prop = atoms[3];
206 sarray->list[0].avail = TRUE;
208 (char *) sarray);
210 FreePropList, (XtPointer) sarray);
213 return sarray;
222 PropList sarray = GetPropList(dpy);
224 for (p = sarray->list, propCount = sarray->propCount;
231 propCount = sarray->propCount++;
232 sarray->list = XtReallocArray(sarray->list, (Cardinal) sarray->propCount,
235 sarray->list[propCount].prop = XInternAtom(dpy, propname, FALSE);
236 sarray->list[propCount].avail = FALSE;
237 return (sarray->list[propCount].prop);
245 PropList sarray;
251 (XPointer *) &sarray))
258 for (p = sarray->list, propCount = sarray->propCount;