• Home
  • Raw
  • Download

Lines Matching refs:c_

103     xcb_disconnect(c_);  in ~ShellXcb()
110 c_ = xcb_connect(nullptr, &scr); in init_connection()
111 if (!c_ || xcb_connection_has_error(c_)) { in init_connection()
112 xcb_disconnect(c_); in init_connection()
116 const xcb_setup_t *setup = xcb_get_setup(c_); in init_connection()
126 win_ = xcb_generate_id(c_); in create_window()
134 xcb_create_window(c_, in create_window()
142 xcb_intern_atom_cookie_t utf8_string_cookie = intern_atom_cookie(c_, "UTF8_STRING"); in create_window()
143 xcb_intern_atom_cookie_t _net_wm_name_cookie = intern_atom_cookie(c_, "_NET_WM_NAME"); in create_window()
144 xcb_intern_atom_cookie_t wm_protocols_cookie = intern_atom_cookie(c_, "WM_PROTOCOLS"); in create_window()
145 xcb_intern_atom_cookie_t wm_delete_window_cookie = intern_atom_cookie(c_, "WM_DELETE_WINDOW"); in create_window()
148 xcb_atom_t utf8_string = intern_atom(c_, utf8_string_cookie); in create_window()
149 xcb_atom_t _net_wm_name = intern_atom(c_, _net_wm_name_cookie); in create_window()
150 xcb_change_property(c_, XCB_PROP_MODE_REPLACE, win_, _net_wm_name, in create_window()
154 wm_protocols_ = intern_atom(c_, wm_protocols_cookie); in create_window()
155 wm_delete_window_ = intern_atom(c_, wm_delete_window_cookie); in create_window()
156 xcb_change_property(c_, XCB_PROP_MODE_REPLACE, win_, wm_protocols_, in create_window()
194 queue_family, c_, scr_->root_visual); in can_present()
201 surface_info.connection = c_; in create_surface()
264 xcb_generic_event_t *ev = xcb_wait_for_event(c_); in loop_wait()
290 xcb_generic_event_t *ev = xcb_poll_for_event(c_); in loop_poll()
328 xcb_map_window(c_, win_); in run()
329 xcb_flush(c_); in run()
342 xcb_destroy_window(c_, win_); in run()
343 xcb_flush(c_); in run()