Lines Matching full:head
51 QemuPluginList *head; member
58 .head = QTAILQ_HEAD_INITIALIZER(qemu_plugin_opts.head),
78 static struct qemu_plugin_desc *plugin_find_desc(QemuPluginList *head, in plugin_find_desc() argument
83 QTAILQ_FOREACH(desc, head, entry) { in plugin_find_desc()
109 p = plugin_find_desc(arg->head, value); in plugin_add()
113 QTAILQ_INSERT_TAIL(arg->head, p, entry); in plugin_add()
145 void qemu_plugin_opt_parse(const char *optstr, QemuPluginList *head) in qemu_plugin_opt_parse() argument
154 arg.head = head; in qemu_plugin_opt_parse()
285 * @head: head of the list of descriptors of the plugins to be loaded
290 * from the list given by @head.
292 int qemu_plugin_load_list(QemuPluginList *head, Error **errp) in qemu_plugin_load_list() argument
303 QTAILQ_FOREACH_SAFE(desc, head, entry, next) { in qemu_plugin_load_list()
310 QTAILQ_REMOVE(head, desc, entry); in qemu_plugin_load_list()