Lines Matching defs:rep
305 xIAQueryVersionReply rep;
308 rep.type = X_Reply;
309 rep.length = 0;
310 rep.sequenceNumber = client->sequence;
311 rep.majorVersion = IA_MAJOR_VERSION;
312 rep.minorVersion = IA_MINOR_VERSION;
313 WriteToClient(client, sizeof(xIAQueryVersionReply), (char *)&rep);
353 xIAGetProcessInfoReply rep;
359 rep.type = X_Reply;
360 rep.length = 0;
361 rep.sequenceNumber = client->sequence;
366 rep.count = 0;
369 rep.count = CurrentPids->count;
370 length = rep.count << 2;
371 rep.length = rep.count;
372 write_back = malloc((size_t) rep.count * sizeof(int32_t));
384 rep.count=1;
385 length=rep.count << 2;
386 rep.length = rep.count;
395 WriteToClient(client, sizeof(xIAGetProcessInfoReply), (char *)&rep);
397 if (rep.length > 0) {
398 (void) WriteToClient(client, (int) sizeof(int32_t) * rep.count,