Lines Matching refs:ch
41 char *ch = NULL;
56 ch = Xmalloc (nbytes + 1);
60 if ((! flist) || (! ch)) {
62 Xfree(ch);
69 _XReadPad (dpy, ch, nbytes);
73 chend = ch + nbytes;
74 length = *(unsigned char *)ch;
76 if (ch + length < chend) {
77 flist[i] = ch+1; /* skip over length */
78 ch += length + 1; /* find next length ... */
79 length = *(unsigned char *)ch;
80 *ch = '\0'; /* and replace with null-termination */
84 Xfree(ch);