Home
last modified time | relevance | path

Searched refs:qdict_set_default_str (Results 1 – 8 of 8) sorted by relevance

/openbmc/qemu/tests/unit/
H A Dtest-replication.c186 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); in start_primary()
187 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); in start_primary()
306 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); in start_secondary()
307 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); in start_secondary()
332 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); in start_secondary()
333 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); in start_secondary()
H A Dcheck-block-qdict.c23 qdict_set_default_str(dict, "foo", "abc"); in qdict_defaults_test()
24 qdict_set_default_str(dict, "foo", "def"); in qdict_defaults_test()
26 qdict_set_default_str(dict, "bar", "ghi"); in qdict_defaults_test()
30 qdict_set_default_str(copy, "bar", "xyz"); in qdict_defaults_test()
/openbmc/qemu/include/block/
H A Dqdict.h19 void qdict_set_default_str(QDict *dst, const char *key, const char *val);
/openbmc/qemu/block/
H A Discsi.c1637 qdict_set_default_str(options, "user", user); in iscsi_parse_iscsi_option()
1642 qdict_set_default_str(options, "password", password); in iscsi_parse_iscsi_option()
1652 qdict_set_default_str(options, "initiator-name", initiator_name); in iscsi_parse_iscsi_option()
1660 qdict_set_default_str(options, "header-digest", qapi_value); in iscsi_parse_iscsi_option()
1666 qdict_set_default_str(options, "timeout", timeout); in iscsi_parse_iscsi_option()
1704 qdict_set_default_str(options, "transport", transport_name); in iscsi_parse_filename()
1705 qdict_set_default_str(options, "portal", iscsi_url->portal); in iscsi_parse_filename()
1706 qdict_set_default_str(options, "target", iscsi_url->target); in iscsi_parse_filename()
1709 qdict_set_default_str(options, "lun", lun_str); in iscsi_parse_filename()
1716 qdict_set_default_str(options, "user", iscsi_url->user); in iscsi_parse_filename()
[all …]
H A Dvvfat.c3152 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "off"); in vvfat_qcow_options()
3153 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off"); in vvfat_qcow_options()
3154 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); in vvfat_qcow_options()
/openbmc/qemu/
H A Dblockdev.c601 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off"); in blockdev_init()
602 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off"); in blockdev_init()
603 qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY, in blockdev_init()
605 qdict_set_default_str(bs_opts, BDRV_OPT_AUTO_READ_ONLY, "on"); in blockdev_init()
672 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off"); in bds_tree_init()
673 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off"); in bds_tree_init()
674 qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY, "off"); in bds_tree_init()
H A Dblock.c1248 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); in bdrv_temp_snapshot_options()
1249 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); in bdrv_temp_snapshot_options()
1392 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); in bdrv_inherited_options()
1393 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off"); in bdrv_inherited_options()
1406 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); in bdrv_inherited_options()
3861 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); in bdrv_open_blockdev_ref()
3862 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); in bdrv_open_blockdev_ref()
3863 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); in bdrv_open_blockdev_ref()
3864 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off"); in bdrv_open_blockdev_ref()
/openbmc/qemu/qobject/
H A Dblock-qdict.c43 void qdict_set_default_str(QDict *dst, const char *key, const char *val) in qdict_set_default_str() function