Home
last modified time | relevance | path

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

/qemu/
H A Dos-posix.c106 unsigned long lv; in os_set_runas() local
119 rc = qemu_strtoul(user_id, &ep, 0, &lv); in os_set_runas()
120 got_uid = lv; /* overflow here is ID in C99 */ in os_set_runas()
121 if (rc || *ep != ':' || got_uid != lv || got_uid == (uid_t)-1) { in os_set_runas()
125 rc = qemu_strtoul(ep + 1, 0, 0, &lv); in os_set_runas()
126 got_gid = lv; /* overflow here is ID in C99 */ in os_set_runas()
127 if (rc || got_gid != lv || got_gid == (gid_t)-1) { in os_set_runas()
H A Dqemu-options.hx735 de en-us fi fr-be hr it lv nl-be pt sl tr
/qemu/pc-bios/keymaps/
H A Dmeson.build24 'lv': '-l lv',
H A Dlv4 # layout : lv
/qemu/docs/system/devices/
H A Dkeyboard.rst107 - lv
/qemu/migration/
H A Drdma.c244 union { uint32_t lv[2]; uint64_t llv; } u; in htonll() member
245 u.lv[0] = htonl(v >> 32); in htonll()
246 u.lv[1] = htonl(v & 0xFFFFFFFFULL); in htonll()
254 union { uint32_t lv[2]; uint64_t llv; } u; in ntohll() member
256 return ((uint64_t)ntohl(u.lv[0]) << 32) | (uint64_t) ntohl(u.lv[1]); in ntohll()
/qemu/linux-user/
H A Dsyscall.c2526 socklen_t lv; in do_getsockopt() local
2615 lv = len; in do_getsockopt()
2618 if (put_user_u32(lv, optlen)) { in do_getsockopt()
2734 lv = sizeof(lv); in do_getsockopt()
2746 if (len > lv) in do_getsockopt()
2747 len = lv; in do_getsockopt()
2779 lv = sizeof(lv); in do_getsockopt()
2841 lv = sizeof(lv); in do_getsockopt()
2885 lv = len; in do_getsockopt()
2890 if (put_user_u32(lv, optlen) in do_getsockopt()
[all …]