Lines Matching refs:size
46 internal_getgrouplist (const char *user, gid_t group, long int *size, in internal_getgrouplist() argument
56 int n = __nscd_getgrouplist (user, group, size, groupsp, limit); in internal_getgrouplist()
68 assert (*size > 0); in internal_getgrouplist()
98 status = compat_call (nip, user, group, &start, size, groupsp, in internal_getgrouplist()
101 status = DL_CALL_FCT (fct, (user, group, &start, size, groupsp, in internal_getgrouplist()
145 long int size = MAX (1, *ngroups); in getgrouplist() local
147 gid_t *newgroups = (gid_t *) malloc (size * sizeof (gid_t)); in getgrouplist()
156 int total = internal_getgrouplist (user, group, &size, &newgroups, -1); in getgrouplist()
183 long int size; in nss_interface_function()
195 size = MIN (limit, 64); in nss_interface_function()
198 size = 16; in nss_interface_function()
200 groups = (gid_t *) malloc (size * sizeof (gid_t)); in nss_interface_function()
205 ngroups = internal_getgrouplist (user, group, &size, &groups, limit); in nss_interface_function()