Lines Matching refs:reply
49 xcb_intern_atom_reply_t *reply;
56 reply = xcb_intern_atom_reply(xcb,
60 if (reply) {
61 xcb_change_property(xcb, XCB_PROP_MODE_REPLACE, xs->root, reply->atom,
65 free(reply);
72 xcb_intern_atom_reply_t *reply;
78 reply = xcb_intern_atom_reply(xcb,
82 if (reply) {
83 xcb_delete_property(xcb, xs->root, reply->atom);
84 free(reply);
95 xcb_intern_atom_reply_t *reply;
112 reply = xcb_intern_atom_reply(xcb,
116 if (!reply)
119 req = xcb_get_property(xcb, 0, xs->root, reply->atom, XCB_ATOM_STRING, 0, (uint32_t)(l-1));
120 free(reply);