Lines Matching full:list
64 strList *list = features->dev_features; in hmp_virtio_dump_features() local
65 if (list) { in hmp_virtio_dump_features()
66 while (list) { in hmp_virtio_dump_features()
67 monitor_printf(mon, "\t%s", list->value); in hmp_virtio_dump_features()
68 list = list->next; in hmp_virtio_dump_features()
69 if (list != NULL) { in hmp_virtio_dump_features()
85 VirtioInfoList *list = qmp_x_query_virtio(&err); in hmp_virtio_query() local
93 if (list == NULL) { in hmp_virtio_query()
98 node = list; in hmp_virtio_query()
104 qapi_free_VirtioInfoList(list); in hmp_virtio_query()
275 VirtioRingDescList *list; in hmp_virtio_queue_element() local
290 list = e->descs; in hmp_virtio_queue_element()
291 while (list) { in hmp_virtio_queue_element()
293 list->value->addr, list->value->len); in hmp_virtio_queue_element()
294 if (list->value->flags) { in hmp_virtio_queue_element()
295 strList *flag = list->value->flags; in hmp_virtio_queue_element()
306 list = list->next; in hmp_virtio_queue_element()
307 if (list) { in hmp_virtio_queue_element()