Lines Matching defs:as
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 Except as contained in this notice, the name of The Open Group shall not be
132 atom_state *as = closure;
134 reply = xcb_intern_atom_reply(as->c, as->cookie, NULL);
138 *(as->atom) = reply->atom;
142 free(as);
147 atom_state *as;
149 as = malloc(sizeof(*as));
150 as->c = c;
151 as->atom = &WM_STATE;
152 as->cookie = xcb_intern_atom(c, 0, strlen("WM_STATE"), "WM_STATE");
153 enqueue(atom_done, as);
665 /* This should happen so rarely as to make no odds. Eat a round-trip: */