Lines Matching refs:preply
2499 xListInstalledColormapsReply *preply; in ProcListInstalledColormaps() local
2515 preply = malloc(sizeof(xListInstalledColormapsReply) + in ProcListInstalledColormaps()
2518 if (!preply) in ProcListInstalledColormaps()
2521 preply->type = X_Reply; in ProcListInstalledColormaps()
2522 preply->sequenceNumber = client->sequence; in ProcListInstalledColormaps()
2524 (pWin->drawable.pScreen, (Colormap *) &preply[1]); in ProcListInstalledColormaps()
2525 preply->nColormaps = nummaps; in ProcListInstalledColormaps()
2526 preply->length = nummaps; in ProcListInstalledColormaps()
2527 WriteReplyToClient(client, sizeof(xListInstalledColormapsReply), preply); in ProcListInstalledColormaps()
2529 WriteSwappedDataToClient(client, nummaps * sizeof(Colormap), &preply[1]); in ProcListInstalledColormaps()
2530 free(preply); in ProcListInstalledColormaps()