/openbmc/qemu/tests/unit/ |
H A D | test-cutils.c | 306 err = qemu_strtoi(str, &endptr, 0, &res); in test_qemu_strtoi_correct() 320 err = qemu_strtoi(NULL, &endptr, 0, &res); in test_qemu_strtoi_null() 335 err = qemu_strtoi(str, &endptr, 0, &res); in test_qemu_strtoi_empty() 350 err = qemu_strtoi(str, &endptr, 0, &res); in test_qemu_strtoi_whitespace() 365 err = qemu_strtoi(str, &endptr, 0, &res); in test_qemu_strtoi_invalid() 380 err = qemu_strtoi(str, &endptr, 0, &res); in test_qemu_strtoi_trailing() 395 err = qemu_strtoi(str, &endptr, 8, &res); in test_qemu_strtoi_octal() 403 err = qemu_strtoi(str, &endptr, 0, &res); in test_qemu_strtoi_octal() 418 err = qemu_strtoi(str, &endptr, 10, &res); in test_qemu_strtoi_decimal() 427 err = qemu_strtoi(str, &endptr, 0, &res); in test_qemu_strtoi_decimal() [all …]
|
/openbmc/qemu/ui/ |
H A D | input-barrier.c | 596 err = qemu_strtoi(value, NULL, 0, &result); in input_barrier_set_x_origin() 618 err = qemu_strtoi(value, NULL, 0, &result); in input_barrier_set_y_origin() 640 err = qemu_strtoi(value, NULL, 0, &result); in input_barrier_set_width() 662 err = qemu_strtoi(value, NULL, 0, &result); in input_barrier_set_height()
|
H A D | ui-hmp-cmds.c | 379 if (qemu_strtoi(keys, &endp, 0, &value) < 0) { in hmp_sendkey()
|
/openbmc/qemu/include/qemu/ |
H A D | cutils.h | 151 int qemu_strtoi(const char *nptr, const char **endptr, int base,
|
/openbmc/qemu/util/ |
H A D | qemu-coroutine.c | 378 qemu_strtoi(contents, NULL, 10, &max_map_count) == 0) { in get_global_pool_hard_max_size()
|
H A D | cutils.c | 448 int qemu_strtoi(const char *nptr, const char **endptr, int base, in qemu_strtoi() function
|
H A D | qemu-sockets.c | 1127 if (qemu_strtoi(fdstr, NULL, 10, &fd) < 0) { in socket_get_fd()
|
/openbmc/qemu/net/ |
H A D | slirp.c | 776 if (qemu_strtoi(p, NULL, 10, &host_port)) { in hmp_hostfwd_remove() 845 err = qemu_strtoi(buf, &end, 0, &host_port); in slirp_hostfwd() 861 err = qemu_strtoi(p, &end, 0, &guest_port); in slirp_hostfwd()
|
/openbmc/qemu/linux-user/ |
H A D | signal.c | 531 if (qemu_strtoi(s, &s, 10, &tsig) || *s++ != ' ') { in signal_table_init() 535 if (qemu_strtoi(s, &s, 10, &hsig) || *s++ != ' ') { in signal_table_init() 539 if (qemu_strtoi(s, &s, 10, &count) || (*s && *s != ',')) { in signal_table_init()
|
/openbmc/qemu/system/ |
H A D | qtest.c | 447 ret = qemu_strtoi(words[3], NULL, 0, &num); in qtest_process_command() 449 ret = qemu_strtoi(words[4], NULL, 0, &level); in qtest_process_command()
|
/openbmc/qemu/tests/fp/ |
H A D | fp-test.c | 864 if (qemu_strtoi(optarg, NULL, 0, &test_level)) { in parse_args()
|
/openbmc/qemu/ |
H A D | qemu-nbd.c | 747 if (qemu_strtoi(optarg, NULL, 0, &shared) < 0 || in main()
|