Home
last modified time | relevance | path

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

/qemu/linux-user/
H A Dsyscall.c4707 struct ifconf *host_ifconf; in do_ioctl_ifconf() local
4737 target_ifc_len = host_ifconf->ifc_len; in do_ioctl_ifconf()
4741 outbufsz = sizeof(*host_ifconf) + host_ifc_len; in do_ioctl_ifconf()
4747 host_ifconf = g_try_malloc(outbufsz); in do_ioctl_ifconf()
4748 if (!host_ifconf) { in do_ioctl_ifconf()
4751 memcpy(host_ifconf, buf_temp, sizeof(*host_ifconf)); in do_ioctl_ifconf()
4754 host_ifc_buf = (char *)host_ifconf + sizeof(*host_ifconf); in do_ioctl_ifconf()
4756 host_ifconf->ifc_len = host_ifc_len; in do_ioctl_ifconf()
4760 host_ifconf->ifc_buf = host_ifc_buf; in do_ioctl_ifconf()
4768 host_ifconf->ifc_len = target_ifc_len; in do_ioctl_ifconf()
[all …]