Lines Matching defs:atom
53 call_handler(xcb_connection_t *c, uint8_t state, xcb_window_t window, xcb_atom_t atom, xcb_property_handler_t *h)
60 xcb_get_property_cookie_t cookie = xcb_get_any_property(c, 0, window, atom, h->long_len);
63 ret = h->handler(h->data, c, state, window, atom, propr);
69 xcb_property_changed(xcb_property_handlers_t *prophs, uint8_t state, xcb_window_t window, xcb_atom_t atom)
75 if(cur->name == atom)
76 return call_handler(c, state, window, atom, &cur->h);
79 return call_handler(c, state, window, atom, &prophs->def);
90 xcb_atom_t atom = e->atom;
92 return xcb_property_changed(prophs, state, window, atom);