Lines Matching +full:9 +full:a
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * You should have received a copy of the GNU Lesser General Public
20 * Not so fast! You might want to read the 9p developer docs first:
21 * https://wiki.qemu.org/Documentation/9p
28 #include "virtio-9p.h"
35 static char *concat_path(const char* a, const char* b) in concat_path() argument
37 return g_build_filename(a, b, NULL); in concat_path()
49 char *template = concat_path(pwd, "qtest-9p-local-XXXXXX"); in virtio_9p_create_local_test_dir()
60 /* ... and is actually a directory */ in virtio_9p_create_local_test_dir()
99 /* virtio-9p-device */
119 if (!g_strcmp0(interface, "virtio-9p")) { in virtio_9p_get_driver()
126 fprintf(stderr, "%s not present in virtio-9p-device\n", interface); in virtio_9p_get_driver()
153 /* virtio-9p-pci */
204 * Performs regular expression based search and replace on @a haystack.
207 * stored back to @a haystack
208 * @param pattern - the regular expression pattern for scanning @a haystack
209 * @param replace_fmt - matches of supplied @a pattern are replaced by this,
263 /* virtio-9p-device */ in virtio_9p_register_nodes()
265 qos_node_create_driver("virtio-9p-device", virtio_9p_device_create); in virtio_9p_register_nodes()
266 qos_node_consumes("virtio-9p-device", "virtio-bus", &opts); in virtio_9p_register_nodes()
267 qos_node_produces("virtio-9p-device", "virtio"); in virtio_9p_register_nodes()
268 qos_node_produces("virtio-9p-device", "virtio-9p"); in virtio_9p_register_nodes()
270 /* virtio-9p-pci */ in virtio_9p_register_nodes()
273 qos_node_create_driver("virtio-9p-pci", virtio_9p_pci_create); in virtio_9p_register_nodes()
274 qos_node_consumes("virtio-9p-pci", "pci-bus", &opts); in virtio_9p_register_nodes()
275 qos_node_produces("virtio-9p-pci", "pci-device"); in virtio_9p_register_nodes()
276 qos_node_produces("virtio-9p-pci", "virtio"); in virtio_9p_register_nodes()
277 qos_node_produces("virtio-9p-pci", "virtio-9p"); in virtio_9p_register_nodes()