Lines Matching refs:p_global
66 struct Global *p_global; in registry_handle_global() local
68 p_global = (struct Global*)allocate(sizeof(struct Global), 0); in registry_handle_global()
69 if (NULL != p_global) in registry_handle_global()
71 p_global->name = id; in registry_handle_global()
72 p_global->p_interface = strdup(p_interface); in registry_handle_global()
73 p_global->version = version; in registry_handle_global()
74 wl_list_insert(p_display->global_list.prev, &p_global->link); in registry_handle_global()
447 struct Global *p_global; in DisplaySetGlobalHandler() local
455 wl_list_for_each(p_global, &p_display->global_list, link) in DisplaySetGlobalHandler()
457 p_display->global_handler(p_display, p_global->name, in DisplaySetGlobalHandler()
458 p_global->p_interface, p_global->version, p_display->p_user_data); in DisplaySetGlobalHandler()