Lines Matching refs:reply
269 xXF86BigfontQueryVersionReply reply; in ProcXF86BigfontQueryVersion() local
272 reply = (xXF86BigfontQueryVersionReply) { in ProcXF86BigfontQueryVersion()
290 swaps(&reply.sequenceNumber); in ProcXF86BigfontQueryVersion()
291 swapl(&reply.length); in ProcXF86BigfontQueryVersion()
292 swaps(&reply.majorVersion); in ProcXF86BigfontQueryVersion()
293 swaps(&reply.minorVersion); in ProcXF86BigfontQueryVersion()
294 swapl(&reply.uid); in ProcXF86BigfontQueryVersion()
295 swapl(&reply.gid); in ProcXF86BigfontQueryVersion()
296 swapl(&reply.signature); in ProcXF86BigfontQueryVersion()
298 WriteToClient(client, sizeof(xXF86BigfontQueryVersionReply), &reply); in ProcXF86BigfontQueryVersion()
543 xXF86BigfontQueryFontReply *reply = calloc(1, rlength); in ProcXF86BigfontQueryFont() local
546 if (!reply) { in ProcXF86BigfontQueryFont()
555 reply->type = X_Reply; in ProcXF86BigfontQueryFont()
556 reply->length = bytes_to_int32(rlength - sizeof(xGenericReply)); in ProcXF86BigfontQueryFont()
557 reply->sequenceNumber = client->sequence; in ProcXF86BigfontQueryFont()
558 reply->minBounds = pFont->info.ink_minbounds; in ProcXF86BigfontQueryFont()
559 reply->maxBounds = pFont->info.ink_maxbounds; in ProcXF86BigfontQueryFont()
560 reply->minCharOrByte2 = pFont->info.firstCol; in ProcXF86BigfontQueryFont()
561 reply->maxCharOrByte2 = pFont->info.lastCol; in ProcXF86BigfontQueryFont()
562 reply->defaultChar = pFont->info.defaultCh; in ProcXF86BigfontQueryFont()
563 reply->nFontProps = pFont->info.nprops; in ProcXF86BigfontQueryFont()
564 reply->drawDirection = pFont->info.drawDirection; in ProcXF86BigfontQueryFont()
565 reply->minByte1 = pFont->info.firstRow; in ProcXF86BigfontQueryFont()
566 reply->maxByte1 = pFont->info.lastRow; in ProcXF86BigfontQueryFont()
567 reply->allCharsExist = pFont->info.allExist; in ProcXF86BigfontQueryFont()
568 reply->fontAscent = pFont->info.fontAscent; in ProcXF86BigfontQueryFont()
569 reply->fontDescent = pFont->info.fontDescent; in ProcXF86BigfontQueryFont()
570 reply->nCharInfos = nCharInfos; in ProcXF86BigfontQueryFont()
571 reply->nUniqCharInfos = nUniqCharInfos; in ProcXF86BigfontQueryFont()
572 reply->shmid = shmid; in ProcXF86BigfontQueryFont()
573 reply->shmsegoffset = 0; in ProcXF86BigfontQueryFont()
575 swaps(&reply->sequenceNumber); in ProcXF86BigfontQueryFont()
576 swapl(&reply->length); in ProcXF86BigfontQueryFont()
577 swapCharInfo(&reply->minBounds); in ProcXF86BigfontQueryFont()
578 swapCharInfo(&reply->maxBounds); in ProcXF86BigfontQueryFont()
579 swaps(&reply->minCharOrByte2); in ProcXF86BigfontQueryFont()
580 swaps(&reply->maxCharOrByte2); in ProcXF86BigfontQueryFont()
581 swaps(&reply->defaultChar); in ProcXF86BigfontQueryFont()
582 swaps(&reply->nFontProps); in ProcXF86BigfontQueryFont()
583 swaps(&reply->fontAscent); in ProcXF86BigfontQueryFont()
584 swaps(&reply->fontDescent); in ProcXF86BigfontQueryFont()
585 swapl(&reply->nCharInfos); in ProcXF86BigfontQueryFont()
586 swapl(&reply->nUniqCharInfos); in ProcXF86BigfontQueryFont()
587 swapl(&reply->shmid); in ProcXF86BigfontQueryFont()
588 swapl(&reply->shmsegoffset); in ProcXF86BigfontQueryFont()
590 p = (char *) &reply[1]; in ProcXF86BigfontQueryFont()
626 WriteToClient(client, rlength, reply); in ProcXF86BigfontQueryFont()
627 free(reply); in ProcXF86BigfontQueryFont()