Home
last modified time | relevance | path

Searched refs:protocol_name (Results 1 – 21 of 21) sorted by relevance

/openbmc/qemu/scripts/modules/
H A Dmodule_block.py25 def add_module(fheader, library, format_name, protocol_name): argument
30 if protocol_name != "":
31 lines.append('.protocol_name = "' + protocol_name + '",')
47 protocol_name = get_string_struct(line)
49 add_module(fheader, library, format_name, protocol_name)
54 protocol_name = ""
/openbmc/qemu/block/
H A Dcurl.c767 if (!strstart(file, bs->drv->protocol_name, &protocol_delimiter) || in curl_open()
771 "start with '%s://')", bs->drv->protocol_name, file, in curl_open()
772 bs->drv->protocol_name); in curl_open()
1039 .protocol_name = "http",
1058 .protocol_name = "https",
1077 .protocol_name = "ftp",
1096 .protocol_name = "ftps",
H A Dblkio.c797 const char *blkio_driver = bs->drv->protocol_name; in blkio_open()
1116 .protocol_name = "io_uring",
1123 .protocol_name = "nvme-io_uring",
1129 .protocol_name = "virtio-blk-vfio-pci",
1135 .protocol_name = "virtio-blk-vhost-user",
1141 .protocol_name = "virtio-blk-vhost-vdpa",
H A Dnull.c283 .protocol_name = "null-co",
304 .protocol_name = "null-aio",
H A Dblkverify.c320 .protocol_name = "blkverify",
H A Dstream.c98 unfiltered_base->drv->protocol_name) { in stream_prepare()
H A Dgluster.c1547 .protocol_name = "gluster",
1576 .protocol_name = "gluster+tcp",
1605 .protocol_name = "gluster+unix",
H A Dfile-win32.c745 .protocol_name = "file",
918 .protocol_name = "host_device",
H A Dnbd.c2144 .protocol_name = "nbd",
2172 .protocol_name = "nbd+tcp",
2200 .protocol_name = "nbd+unix",
H A Dnfs.c869 .protocol_name = "nfs",
H A Dfile-posix.c3995 .protocol_name = "file",
4455 .protocol_name = "host_device",
4594 .protocol_name = "host_cdrom",
4720 .protocol_name = "host_cdrom",
H A Dblkdebug.c1071 .protocol_name = "blkdebug",
H A Discsi.c2428 .protocol_name = "iscsi",
2467 .protocol_name = "iser",
H A Dssh.c1360 .protocol_name = "ssh",
H A Drbd.c1858 .protocol_name = "rbd",
H A Dnvme.c1645 .protocol_name = "nvme",
H A Dio.c2436 if (bs->drv->protocol_name) { in bdrv_co_do_block_status()
H A Dvvfat.c3255 .protocol_name = "fat",
/openbmc/qemu/
H A Dblock.c912 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { in bdrv_do_find_protocol()
962 if (block_driver_modules[i].protocol_name && in bdrv_find_protocol()
963 !strcmp(block_driver_modules[i].protocol_name, protocol)) { in bdrv_find_protocol()
1339 if (backing_mask_protocol && base->drv->protocol_name) { in bdrv_backing_update_filename()
1995 assert(!drv->protocol_name || file == NULL); in bdrv_open_common()
2097 protocol = drv->protocol_name; in bdrv_fill_options()
4173 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->protocol_name); in bdrv_open_inherit()
6020 if (drv->protocol_name) { in bdrv_co_get_allocated_file_size()
8157 primary_child_bs->drv->protocol_name && in bdrv_refresh_filename()
H A Dqemu-io-cmds.c2092 if (bs->drv && bs->drv->protocol_name) { in info_f()
2093 printf("format name: %s\n", bs->drv->protocol_name); in info_f()
/openbmc/qemu/include/block/
H A Dblock_int-common.h172 const char *protocol_name; member