Lines Matching refs:reply

98    xcb_get_geometry_reply_t *reply;
103 reply = xcb_get_geometry_reply (dri2_dpy->conn, cookie, &error);
104 if (reply == NULL)
111 *w = reply->width;
112 *h = reply->height;
114 free(reply);
152 xcb_get_image_reply_t *reply;
157 reply = xcb_get_image_reply (dri2_dpy->conn, cookie, &error);
158 if (reply == NULL)
165 uint32_t bytes = xcb_get_image_data_length(reply);
166 uint8_t *idata = xcb_get_image_data(reply);
169 free(reply);
185 xcb_get_geometry_reply_t *reply;
239 reply = xcb_get_geometry_reply (dri2_dpy->conn, cookie, &error);
240 if (reply == NULL || error != NULL) {
246 dri2_surf->base.Width = reply->width;
247 dri2_surf->base.Height = reply->height;
248 free(reply);
327 * Processes the list of buffers received in a reply from the server to either
381 xcb_dri2_get_buffers_reply_t *reply;
389 reply = xcb_dri2_get_buffers_reply (dri2_dpy->conn, cookie, NULL);
390 buffers = xcb_dri2_get_buffers_buffers (reply);
394 *out_count = reply->count;
395 dri2_surf->base.Width = *width = reply->width;
396 dri2_surf->base.Height = *height = reply->height;
399 free(reply);
414 xcb_dri2_get_buffers_with_format_reply_t *reply;
426 reply = xcb_dri2_get_buffers_with_format_reply (dri2_dpy->conn,
428 if (reply == NULL)
431 buffers = xcb_dri2_get_buffers_with_format_buffers (reply);
432 dri2_surf->base.Width = *width = reply->width;
433 dri2_surf->base.Height = *height = reply->height;
434 *out_count = reply->count;
437 free(reply);
710 xcb_dri2_swap_buffers_reply_t *reply;
728 reply = xcb_dri2_swap_buffers_reply(dri2_dpy->conn, cookie, NULL);
730 if (reply) {
731 swap_count = (((int64_t)reply->swap_hi) << 32) | reply->swap_lo;
732 free(reply);