Searched refs:qemu_strtol (Results 1 – 12 of 12) sorted by relevance
/openbmc/qemu/tests/unit/ |
H A D | test-cutils.c | 1188 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 D | cutils.h | 155 int qemu_strtol(const char *nptr, const char **endptr, int base,
|
/openbmc/qemu/hw/i386/ |
H A D | acpi-microvm.c | 74 if (qemu_strtol(separator + 1, NULL, 10, &index) != 0) { in acpi_dsdt_add_virtio()
|
H A D | microvm.c | 357 if (qemu_strtol(separator + 1, NULL, 10, &index) != 0) { in microvm_get_mmio_cmdline()
|
/openbmc/qemu/accel/tcg/ |
H A D | icount-common.c | 438 if (qemu_strtol(option, NULL, 0, &time_shift) < 0 in icount_configure()
|
/openbmc/qemu/util/ |
H A D | cutils.c | 573 int qemu_strtol(const char *nptr, const char **endptr, int base, in qemu_strtol() function
|
/openbmc/qemu/hw/core/ |
H A D | qdev-properties-system.c | 375 if (qemu_strtol(str + pos, &p, 16, &val) < 0 || val > 0xff) { in set_mac()
|
/openbmc/qemu/net/ |
H A D | net.c | 115 if (qemu_strtol(port, &r, 0, &p) != 0) { in convert_host_port()
|
/openbmc/qemu/tests/qtest/ |
H A D | libqtest.c | 687 ret = qemu_strtol(words[2], NULL, 0, &irq); in qtest_rsp_args()
|
/openbmc/qemu/docs/devel/ |
H A D | style.rst | 139 example ``qemu_strtol`` or ``qemu_mutex_lock``. Other utility functions
|
/openbmc/qemu/block/ |
H A D | file-posix.c | 1288 ret = qemu_strtol(str, &end, 10, &val); in get_sysfs_long_val()
|
/openbmc/qemu/ |
H A D | qemu-img.c | 2367 if (qemu_strtol(optarg, NULL, 0, &s.num_coroutines) || in img_convert()
|