Searched refs:qemu_opt_get (Results 1 – 8 of 8) sorted by relevance
/external/qemu/util/ |
D | qemu-sockets-android.c | 92 const char* socket_fd = qemu_opt_get(opts, "socket"); in inet_listen_opts() 98 if ((qemu_opt_get(opts, "host") == NULL) || in inet_listen_opts() 99 (qemu_opt_get(opts, "port") == NULL)) { in inet_listen_opts() 103 pstrcpy(port, sizeof(port), qemu_opt_get(opts, "port")); in inet_listen_opts() 104 addr = qemu_opt_get(opts, "host"); in inet_listen_opts() 197 const char* socket_fd = qemu_opt_get(opts, "socket"); in inet_connect_opts() 203 addr = qemu_opt_get(opts, "host"); in inet_connect_opts() 204 port = qemu_opt_get(opts, "port"); in inet_connect_opts() 273 addr = qemu_opt_get(opts, "host"); in inet_dgram_opts() 274 port = qemu_opt_get(opts, "port"); in inet_dgram_opts() [all …]
|
D | qemu-sockets.c | 139 const char* socket_fd = qemu_opt_get(opts, "socket"); in inet_listen_opts() 145 if ((qemu_opt_get(opts, "host") == NULL) || in inet_listen_opts() 146 (qemu_opt_get(opts, "port") == NULL)) { in inet_listen_opts() 150 pstrcpy(port, sizeof(port), qemu_opt_get(opts, "port")); in inet_listen_opts() 151 addr = qemu_opt_get(opts, "host"); in inet_listen_opts() 242 const char* socket_fd = qemu_opt_get(opts, "socket"); in inet_connect_opts() 253 addr = qemu_opt_get(opts, "host"); in inet_connect_opts() 254 port = qemu_opt_get(opts, "port"); in inet_connect_opts() 324 addr = qemu_opt_get(opts, "host"); in inet_dgram_opts() 325 port = qemu_opt_get(opts, "port"); in inet_dgram_opts() [all …]
|
D | qemu-option.c | 539 const char *qemu_opt_get(QemuOpts *opts, const char *name) in qemu_opt_get() function
|
/external/qemu/ |
D | blockdev.c | 183 file = qemu_opt_get(opts, "file"); in drive_init() 184 serial = qemu_opt_get(opts, "serial"); in drive_init() 186 if ((buf = qemu_opt_get(opts, "if")) != NULL) { in drive_init() 236 if ((buf = qemu_opt_get(opts, "trans")) != NULL) { in drive_init() 255 if ((buf = qemu_opt_get(opts, "media")) != NULL) { in drive_init() 271 if ((buf = qemu_opt_get(opts, "cache")) != NULL) { in drive_init() 288 if ((buf = qemu_opt_get(opts, "aio")) != NULL) { in drive_init() 300 if ((buf = qemu_opt_get(opts, "format")) != NULL) { in drive_init() 315 if ((buf = qemu_opt_get(opts, "werror")) != NULL) { in drive_init() 328 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) { in drive_init() [all …]
|
D | qemu-char.c | 699 TFR(fd_out = qemu_open(qemu_opt_get(opts, "path"), in qemu_chr_open_file_out() 710 const char *filename = qemu_opt_get(opts, "path"); in qemu_chr_open_pipe() 1284 const char *filename = qemu_opt_get(opts, "path"); in qemu_chr_open_tty() 1421 const char *filename = qemu_opt_get(opts, "path"); in qemu_chr_open_pp() 1491 const char *filename = qemu_opt_get(opts, "path"); in qemu_chr_open_pp() 1711 const char *filename = qemu_opt_get(opts, "path"); in qemu_chr_open_win() 1811 const char *filename = qemu_opt_get(opts, "path"); in qemu_chr_open_win_pipe() 1851 const char *file_out = qemu_opt_get(opts, "path"); in qemu_chr_open_win_file_out() 2243 is_unix = qemu_opt_get(opts, "path") != NULL; in qemu_chr_open_socket() 2298 qemu_opt_get(opts, "path"), in qemu_chr_open_socket() [all …]
|
D | vl-android.c | 599 if (NULL == qemu_opt_get(opts, "snapshot")) { in drive_enable_snapshot()
|
/external/qemu/hw/core/ |
D | qdev.c | 115 driver = qemu_opt_get(opts, "driver"); in qdev_device_help() 126 if (!qemu_opt_get(opts, "?")) { in qdev_device_help() 161 driver = qemu_opt_get(opts, "driver"); in qdev_device_add() 176 path = qemu_opt_get(opts, "bus"); in qdev_device_add()
|
/external/qemu/include/qemu/ |
D | option.h | 107 const char *qemu_opt_get(QemuOpts *opts, const char *name);
|