Home
last modified time | relevance | path

Searched refs:qemu_strtol (Results 1 – 12 of 12) sorted by relevance

/openbmc/qemu/tests/unit/
H A Dtest-cutils.c1188 err = qemu_strtol(str, &endptr, 0, &res); in test_qemu_strtol_correct()
1202 err = qemu_strtol(NULL, &endptr, 0, &res); in test_qemu_strtol_null()
1217 err = qemu_strtol(str, &endptr, 0, &res); in test_qemu_strtol_empty()
1232 err = qemu_strtol(str, &endptr, 0, &res); in test_qemu_strtol_whitespace()
1247 err = qemu_strtol(str, &endptr, 0, &res); in test_qemu_strtol_invalid()
1262 err = qemu_strtol(str, &endptr, 0, &res); in test_qemu_strtol_trailing()
1277 err = qemu_strtol(str, &endptr, 8, &res); in test_qemu_strtol_octal()
1285 err = qemu_strtol(str, &endptr, 0, &res); in test_qemu_strtol_octal()
1300 err = qemu_strtol(str, &endptr, 10, &res); in test_qemu_strtol_decimal()
1309 err = qemu_strtol(str, &endptr, 0, &res); in test_qemu_strtol_decimal()
[all …]
/openbmc/qemu/include/qemu/
H A Dcutils.h155 int qemu_strtol(const char *nptr, const char **endptr, int base,
/openbmc/qemu/hw/i386/
H A Dacpi-microvm.c74 if (qemu_strtol(separator + 1, NULL, 10, &index) != 0) { in acpi_dsdt_add_virtio()
H A Dmicrovm.c357 if (qemu_strtol(separator + 1, NULL, 10, &index) != 0) { in microvm_get_mmio_cmdline()
/openbmc/qemu/accel/tcg/
H A Dicount-common.c438 if (qemu_strtol(option, NULL, 0, &time_shift) < 0 in icount_configure()
/openbmc/qemu/util/
H A Dcutils.c573 int qemu_strtol(const char *nptr, const char **endptr, int base, in qemu_strtol() function
/openbmc/qemu/hw/core/
H A Dqdev-properties-system.c375 if (qemu_strtol(str + pos, &p, 16, &val) < 0 || val > 0xff) { in set_mac()
/openbmc/qemu/net/
H A Dnet.c115 if (qemu_strtol(port, &r, 0, &p) != 0) { in convert_host_port()
/openbmc/qemu/tests/qtest/
H A Dlibqtest.c687 ret = qemu_strtol(words[2], NULL, 0, &irq); in qtest_rsp_args()
/openbmc/qemu/docs/devel/
H A Dstyle.rst139 example ``qemu_strtol`` or ``qemu_mutex_lock``. Other utility functions
/openbmc/qemu/block/
H A Dfile-posix.c1288 ret = qemu_strtol(str, &end, 10, &val); in get_sysfs_long_val()
/openbmc/qemu/
H A Dqemu-img.c2367 if (qemu_strtol(optarg, NULL, 0, &s.num_coroutines) || in img_convert()