Home
last modified time | relevance | path

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

/qemu/bsd-user/
H A Dbsd-proc.h47 g_autofree gid_t *grouplist; in do_bsd_getgroups() local
50 grouplist = g_try_new(gid_t, gidsetsize); in do_bsd_getgroups()
51 ret = get_errno(getgroups(gidsetsize, grouplist)); in do_bsd_getgroups()
59 target_grouplist[i] = tswap32(grouplist[i]); in do_bsd_getgroups()
71 g_autofree gid_t *grouplist; in do_bsd_setgroups() local
74 grouplist = g_try_new(gid_t, gidsetsize); in do_bsd_setgroups()
80 grouplist[i] = tswap32(target_grouplist[i]); in do_bsd_setgroups()
83 return get_errno(setgroups(gidsetsize, grouplist)); in do_bsd_setgroups()
/qemu/linux-user/
H A Dsyscall.c11841 g_autofree gid_t *grouplist = NULL; in _syscall2() local
11848 grouplist = g_try_new(gid_t, gidsetsize); in _syscall2()
11849 if (!grouplist) { in _syscall2()
11872 g_autofree gid_t *grouplist = NULL; in _syscall2() local
11879 grouplist = g_try_new(gid_t, gidsetsize); in _syscall2()
11880 if (!grouplist) { in _syscall2()
12177 g_autofree gid_t *grouplist = NULL; in _syscall2() local
12184 grouplist = g_try_new(gid_t, gidsetsize); in _syscall2()
12185 if (!grouplist) { in _syscall2()
12209 g_autofree gid_t *grouplist = NULL; in _syscall2() local
[all …]