Lines Matching refs:rep
656 xGetGeometryReply rep;
663 if ((status = GetGeometry(client, &rep)) != Success)
667 if (stuff->id == rep.root)
669 rep.height -= StripeHeight;
672 WriteReplyToClient(client, sizeof(xGetGeometryReply), &rep);
906 xQueryPointerReply rep;
940 memset(&rep, 0, sizeof(xQueryPointerReply));
941 rep.type = X_Reply;
942 rep.sequenceNumber = client->sequence;
943 rep.mask = mouse->button ? (mouse->button->state) : 0;
944 rep.mask |= XkbStateFieldFromRec(&keyboard->key->xkbInfo->state);
945 rep.length = 0;
946 rep.root = RootOf(pWin);
947 rep.rootX = 0;
948 rep.rootY = 0;
949 rep.child = None;
950 rep.sameScreen = xTrue;
951 rep.winX = 0;
952 rep.winY = 0;
954 WriteReplyToClient(client, sizeof(xQueryPointerReply), &rep);