Searched defs:glist (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/libbc/libc/sys/sys5/
H A Dsetgroups.c43 int glist[NGROUPS]; /* setgroups() syscall expects ints */ local
51 glist[i] = (int)grouplist[i];
52 return (_syscall(SYS_setgroups, ngroups, glist));
H A Dgetgroups.c42 int glist[NGROUPS]; /* getgroups() syscall returns ints */ local
46 rc = _syscall(SYS_getgroups, gidsetsize, glist);
49 grouplist[i] = (gid_t)glist[i];
/illumos-gate/usr/src/cmd/ypcmd/revnetgroup/
H A Drevnetgroup.c87 static void storegroup(char *group, struct grouplist *glist, int byuser);
100 struct grouplist *glist; local
115 glist = my_getgroup(group);
116 storegroup(group, glist, byuser);
182 storegroup(char *group, struct grouplist *glist, int byuser) argument
189 for (; glist; glist = glist->gl_nxt) {
190 name = byuser ? glist->gl_name : glist
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/mountd/
H A Dnetgroup.c85 * members (or non-members) of the netgroups in glist.
96 * glist is a character array containing grc strings
102 netgroup_check(struct nd_hostservlist *clnames, char *glist, int grc) argument
134 for (i = 0, gr = glist; i < grc && !belong; ) {
/illumos-gate/usr/src/uts/common/fs/portfs/
H A Dport.c1170 list_t *glist; local
1376 glist = &portq->portq_get_list; /* use temporary event queue */
1393 pev = port_get_kevent(glist, lev);
1398 list_remove(glist, pev);
1407 if (port_copy_event(&kevp[nevents], pev, glist)) {
1413 list_insert_after(glist, lev, pev);
1415 list_insert_head(glist, pev);
1435 pev = port_get_kevent(glist, lev);
1440 list_remove(glist, pev);
1449 if (port_copy_event32(&kevp32[nevents], pev, glist)) {
[all...]
/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_util.c535 * members (or non-members) of the netgroups in glist.
546 * glist is a character array containing grc strings
552 smb_netgroup_match(struct nd_hostservlist *clnames, char *glist, int grc) argument
587 for (i = 0, gr = glist; i < grc && !belong; ) {
/illumos-gate/usr/src/uts/sun4u/sunfire/io/
H A Dsysctrl.c1111 fhc_bd_t *glist; local
1121 glist = fhc_bd_clock();
1123 list = glist;
1127 sysc_stat_gk = &glist->sc;
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dspa.c2057 uint64_t *glist; local
2068 &glist, &gcount) != 0)
2076 if (glist[i] == 0) /* vdev is hole */
2079 vd[i] = spa_lookup_by_guid(spa, glist[i], B_FALSE);
5030 uint64_t txg, *glist; local
5091 glist = kmem_zalloc(children * sizeof (uint64_t), KM_SLEEP);
5112 &glist[c]) != 0) {
5118 vml[c] = spa_lookup_by_guid(spa, glist[c], B_FALSE);
5166 kmem_free(glist, children * sizeof (uint64_t));
5183 glist, childre
[all...]

Completed in 85 milliseconds