Home
last modified time | relevance | path

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

/freebsd-13-stable/sys/compat/linux/
HDlinux_uid16.c190 int bsd_gidsetsz, ngrp, error; in linux_getgroups16() local
194 bsd_gidsetsz = cred->cr_ngroups - 1; in linux_getgroups16()
203 td->td_retval[0] = bsd_gidsetsz; in linux_getgroups16()
207 if (ngrp < bsd_gidsetsz) in linux_getgroups16()
211 linux_gidset = malloc(bsd_gidsetsz * sizeof(*linux_gidset), in linux_getgroups16()
213 while (ngrp < bsd_gidsetsz) { in linux_getgroups16()
HDlinux_misc.c1125 int bsd_gidsetsz, ngrp, error; in linux_getgroups() local
1129 bsd_gidsetsz = cred->cr_ngroups - 1; in linux_getgroups()
1138 td->td_retval[0] = bsd_gidsetsz; in linux_getgroups()
1142 if (ngrp < bsd_gidsetsz) in linux_getgroups()
1146 linux_gidset = malloc(bsd_gidsetsz * sizeof(*linux_gidset), in linux_getgroups()
1148 while (ngrp < bsd_gidsetsz) { in linux_getgroups()