/freebsd/libexec/mknetid/ |
H A D | hash.c | 109 struct grouplist *lookup(struct member_entry *table[], char *key) in lookup() 124 struct grouplist dummy = { 99999, NULL }; 132 struct grouplist *tmp; in mstore() 139 tmp = (struct grouplist *)malloc(sizeof(struct grouplist)); in mstore() 160 new->groups = (struct grouplist *)&dummy; in mstore()
|
H A D | hash.h | 36 struct grouplist { struct 38 struct grouplist *next; argument 44 struct grouplist *groups; 53 extern struct grouplist *lookup(struct member_entry **, char *);
|
H A D | mknetid.c | 104 struct grouplist *glist; in main()
|
/freebsd/usr.bin/showmount/ |
H A D | showmount.c | 70 struct grouplist { struct 71 struct grouplist *gr_next; argument 77 struct grouplist *ex_groups; argument 112 register struct grouplist *grp; in main() 346 register struct grouplist *gp; in xdr_exportslist() 357 ep->ex_groups = (struct grouplist *)0; in xdr_exportslist() 364 gp = (struct grouplist *)malloc(sizeof(struct grouplist)); in xdr_exportslist()
|
/freebsd/usr.sbin/chroot/ |
H A D | chroot.c | 54 char *endp, *p, *user, *group, *grouplist; in main() local 64 user = group = grouplist = NULL; in main() 79 grouplist = optarg; in main() 80 if (*grouplist == '\0') in main() 115 (p = strsep(&grouplist, ",")) != NULL && gids < ngroups_max; ) { in main()
|
/freebsd/libexec/revnetgroup/ |
H A D | hash.h | 36 struct grouplist { struct 38 struct grouplist *next; argument 45 struct grouplist *groups;
|
H A D | hash.c | 176 struct grouplist *tmp; in mstore() 182 tmp = (struct grouplist *)malloc(sizeof(struct grouplist)); in mstore()
|
H A D | revnetgroup.c | 160 struct grouplist *tmp; in main()
|
/freebsd/usr.bin/wall/ |
H A D | wall.c | 65 } *grouplist; variable 107 g->next = grouplist; in main() 110 grouplist = g; in main() 121 for (g = grouplist; g; g = g->next) { in main() 139 if (grouplist) { in main() 144 for (g = grouplist; g && ingroup == 0; g = g->next) { in main()
|
/freebsd/lib/libpam/modules/pam_login_access/ |
H A D | login_access.c | 180 gid_t *grouplist; in group_match() local 193 if ((grouplist = calloc(ngroups, sizeof(gid_t))) == NULL) { in group_match() 198 if (getgrouplist(username, passwd->pw_gid, grouplist, &ngroups) != 0) in group_match() 201 if (grouplist[i] == group->gr_gid) in group_match() 203 free(grouplist); in group_match()
|
/freebsd/usr.sbin/mountd/ |
H A D | mountd.c | 118 struct grouplist *ex_grphead; 152 struct grouplist { struct 155 struct grouplist *gr_next; argument 174 struct grouplist *ht_grp; argument 197 struct grouplist *, int, struct exportlist *, 214 static int do_mount(struct exportlist *, struct grouplist *, uint64_t, 217 struct grouplist *, int *, uint64_t *, struct expcred *); 222 static void free_grp(struct grouplist *); 235 static int get_host(char *, struct grouplist *, struct grouplist *); 240 static void getexp_err(struct exportlist *, struct grouplist *, const char *); [all …]
|
/freebsd/sbin/ipf/ippool/ |
H A D | ippool_y.y | 87 %type <ipe> groupentry setgrouplist grouplist 205 setgroup hashopts start grouplist end 260 grouplist: 262 | groupentry next grouplist { $$ = $1; $1->ipe_next = $3; } 263 | addrmask next grouplist { $$ = calloc(1, sizeof(iphtent_t));
|
/freebsd/contrib/llvm-project/compiler-rt/include/sanitizer/ |
H A D | linux_syscall_hooks.h | 99 #define __sanitizer_syscall_pre_getgroups(gidsetsize, grouplist) \ argument 100 __sanitizer_syscall_pre_impl_getgroups((long)(gidsetsize), (long)(grouplist)) 101 #define __sanitizer_syscall_post_getgroups(res, gidsetsize, grouplist) \ argument 103 (long)(grouplist)) 147 #define __sanitizer_syscall_pre_setgroups(gidsetsize, grouplist) \ argument 148 __sanitizer_syscall_pre_impl_setgroups((long)(gidsetsize), (long)(grouplist)) 149 #define __sanitizer_syscall_post_setgroups(res, gidsetsize, grouplist) \ argument 151 (long)(grouplist)) 901 #define __sanitizer_syscall_pre_getgroups16(gidsetsize, grouplist) \ argument 903 (long)(grouplist)) [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_syscalls.inc | 361 PRE_SYSCALL(getgroups)(long gidsetsize, void *grouplist) {} 364 (long res, long gidsetsize, __sanitizer___kernel_gid_t *grouplist) { 366 if (grouplist) 367 POST_WRITE(grouplist, res * sizeof(*grouplist)); 411 PRE_SYSCALL(setgroups)(long gidsetsize, __sanitizer___kernel_gid_t *grouplist) { 412 if (grouplist) 413 POST_WRITE(grouplist, gidsetsize * sizeof(*grouplist)); 417 (long res, long gidsetsize, __sanitizer___kernel_gid_t *grouplist) {} 1646 (long gidsetsize, __sanitizer___kernel_old_gid_t *grouplist) {} 1649 (long res, long gidsetsize, __sanitizer___kernel_old_gid_t *grouplist) { [all …]
|
/freebsd/tools/sched/ |
H A D | schedgraph.py | 516 grouplist = [] 519 grouplist.append(source) 520 graph.sourcehidelist(grouplist)
|
/freebsd/sys/compat/linux/ |
H A D | linux_misc.c | 1041 error = copyin(args->grouplist, linux_gidset, ngrp * sizeof(l_gid_t)); in linux_setgroups() 1119 error = copyout(linux_gidset, args->grouplist, ngrp * sizeof(l_gid_t)); in linux_getgroups()
|
/freebsd/contrib/sendmail/src/ |
H A D | conf.c | 2969 setgroups(ngroups, grouplist) in setgroups() argument 2971 GIDSET_T grouplist[];
|
/freebsd/sys/arm64/linux/ |
H A D | linux_systrace_args.c | 1257 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */ in systrace_args() 1265 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */ in systrace_args()
|
/freebsd/sys/amd64/linux/ |
H A D | linux_systrace_args.c | 968 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */ in systrace_args() 976 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */ in systrace_args()
|
/freebsd/sys/i386/linux/ |
H A D | linux_systrace_args.c | 1452 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */ in systrace_args() 1460 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */ in systrace_args()
|
/freebsd/sys/amd64/linux32/ |
H A D | linux32_systrace_args.c | 1421 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */ in systrace_args() 1429 uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */ in systrace_args()
|