Lines Matching defs:reply
51 unsigned long reply_left; /* unused data left in reply buffer */
57 xListFontsWithInfoReply reply;
73 if (!_XReply (dpy, (xReply *) &reply,
76 reply.nameLength = 0; /* avoid trying to read more replies */
80 reply_left = reply.length -
82 if (reply.nameLength == 0) {
86 if (reply.nReplies >= (INT_MAX - i)) /* avoid overflowing size */
88 if ((i + reply.nReplies) >= size) {
89 size = i + reply.nReplies + 1;
124 fs->direction = reply.drawDirection;
125 fs->min_char_or_byte2 = reply.minCharOrByte2;
126 fs->max_char_or_byte2 = reply.maxCharOrByte2;
127 fs->min_byte1 = reply.minByte1;
128 fs->max_byte1 = reply.maxByte1;
129 fs->default_char = reply.defaultChar;
130 fs->all_chars_exist = reply.allCharsExist;
131 fs->ascent = cvtINT16toInt (reply.fontAscent);
132 fs->descent = cvtINT16toInt (reply.fontDescent);
135 fs->min_bounds = * (XCharStruct *) &reply.minBounds;
136 fs->max_bounds = * (XCharStruct *) &reply.maxBounds;
138 fs->n_properties = reply.nFontProps;
142 nbytes = reply.nFontProps * SIZEOF(xFontProp);
144 fs->properties = Xmallocarray (reply.nFontProps,
154 nbytes = reply.nameLength + 1;
166 flist[i][reply.nameLength] = '\0';
167 _XReadPad (dpy, flist[i], (long) reply.nameLength);
192 while ((reply.nameLength != 0) &&
193 _XReply(dpy, (xReply *) &reply,