Lines Matching defs:reply
107 xcb_intern_atom_reply_t* reply;
111 reply = xcb_intern_atom_reply(conn, cookie, NULL);
112 if (reply == NULL)
117 drawable, reply->atom,
120 check = xcb_delete_property_checked(conn, drawable, reply->atom);
123 free(reply);
392 xcb_get_geometry_reply_t *reply;
445 reply = xcb_get_geometry_reply(draw->conn, cookie, &error);
446 if (reply == NULL || error != NULL) {
451 draw->screen = get_screen_for_root(draw->conn, reply->root);
452 draw->width = reply->width;
453 draw->height = reply->height;
454 draw->depth = reply->depth;
456 free(reply);
1232 xcb_dri3_open_reply_t *reply;
1241 reply = xcb_dri3_open_reply(conn, cookie, NULL);
1242 if (!reply)
1245 if (reply->nfd != 1) {
1246 free(reply);
1250 fd = xcb_dri3_open_reply_fds(conn, reply)[0];
1251 free(reply);