/illumos-gate/usr/src/cmd/oamuser/group/ |
H A D | groupdel.c | 39 * groupdel group 43 * group - a character string group name 54 char *group; /* group name from command line */ local 62 group = argv[1]; 64 switch (retval = del_group(group)) { 69 errmsg(M_NO_GROUP, group);
|
H A D | del_group.c | 48 /* Delete a group from the GROUP file */ 50 del_group(char *group) argument 54 struct group *grpstruct; 92 /* check to see if group is one to delete */ 93 if (strcmp(grpstruct->gr_name, group) == 0)
|
H A D | mod_group.c | 48 /* Modify group to new gid and/or new name */ 50 mod_group(char *group, gid_t gid, char *newgroup) argument 56 struct group *g_ptr; 89 /* check to see if group is one to modify */ 90 if (strcmp(g_ptr->gr_name, group) == 0) {
|
/illumos-gate/usr/src/lib/libbc/inc/5include/ |
H A D | grp.h | 37 struct group { /* see getgrent(3) */ struct 51 struct group *getgrent(); 54 struct group *getgrgid(/* gid_t gid */); 55 struct group *getgrnam(/* char *name */);
|
/illumos-gate/usr/src/lib/libbc/inc/include/ |
H A D | grp.h | 29 struct group { /* see getgrent(3) */ struct 37 struct group *getgrent(); 40 struct group *getgrgid(/* gid_t gid */); 41 struct group *getgrnam(/* char *name */);
|
/illumos-gate/usr/src/cmd/make/lib/vroot/ |
H A D | chown.cc | 30 extern int chown(const char *path, uid_t owner, gid_t group); 37 vroot_result= chown(path, vroot_args.chown.user, vroot_args.chown.group); 41 int chown_vroot(char *path, int user, int group, pathpt vroot_path, pathpt vroot_vroot) argument 44 vroot_args.chown.group= group;
|
/illumos-gate/usr/src/common/acl/ |
H A D | acl_common.h | 40 uint32_t deny2; /* deny mask for bits not in group */ 42 uint32_t group; /* allow mask matching mode */ member in struct:trivial_acl 56 uid_t owner, gid_t group);
|
/illumos-gate/usr/src/cmd/oamuser/lib/ |
H A D | vgname.c | 42 * validate string given as group name. 45 valid_gname(char *group, struct group **gptr, int *warning) argument 47 struct group *t_gptr; 48 char *ptr = group; 54 if (!group || !*group) 74 if ((t_gptr = getgrnam(group)) != NULL) {
|
H A D | vgroup.c | 45 extern int valid_gid(gid_t, struct group **); 50 * validate a group name or number and return the appropriate 51 * group structure for it. 54 valid_group(char *group, struct group **gptr, int *warning) argument 59 struct group *grp; 63 if (!isalldigit(group)) 64 return (valid_gname(group, gptr, warning)); 67 * There are only digits in group name. 71 l = strtol(group, [all...] |
/illumos-gate/usr/src/common/crypto/ecc/ |
H A D | ecp_384.c | 295 ec_group_set_gfp384(ECGroup *group, ECCurveName name) argument 298 group->meth->field_mod = &ec_GFp_nistp384_mod; 299 group->meth->field_mul = &ec_GFp_nistp384_mul; 300 group->meth->field_sqr = &ec_GFp_nistp384_sqr;
|
H A D | ecp_521.c | 171 ec_group_set_gfp521(ECGroup *group, ECCurveName name) argument 174 group->meth->field_mod = &ec_GFp_nistp521_mod; 175 group->meth->field_mul = &ec_GFp_nistp521_mul; 176 group->meth->field_sqr = &ec_GFp_nistp521_sqr; 177 group->meth->field_div = &ec_GFp_nistp521_div;
|
H A D | ec2_163.c | 263 ec_group_set_gf2m163(ECGroup *group, ECCurveName name) argument 265 group->meth->field_mod = &ec_GF2m_163_mod; 266 group->meth->field_mul = &ec_GF2m_163_mul; 267 group->meth->field_sqr = &ec_GF2m_163_sqr;
|
H A D | ec2_test.c | 120 ECGroup_free(group); \ 121 group = ECGroup_fromHex(params, KM_SLEEP); \ 122 if (group == NULL) { \ 123 printf(" Error: could not construct group.\n"); \ 127 MP_CHECKOK( ectest_curve_GF2m(group, ectestPrint, ectestTime, 1, KM_SLEEP) ); \ 133 ECGroup_free(group); \ 134 group = ECGroup_fromName(name, KM_SLEEP); \ 135 if (group == NULL) { \ 136 printf(" Warning: could not construct group.\n"); \ 139 MP_CHECKOK( ectest_curve_GF2m(group, ectestPrin 147 ectest_curve_GF2m(ECGroup *group, int ectestPrint, int ectestTime, int generic, int kmflag) argument 467 ECGroup *group = NULL; local [all...] |
H A D | ecl.c | 63 ECGroup *group; local 65 group = (ECGroup *) kmem_alloc(sizeof(ECGroup), kmflag); 67 group = (ECGroup *) malloc(sizeof(ECGroup)); 69 if (group == NULL) 71 group->constructed = MP_YES; 72 group->meth = NULL; 73 group->text = NULL; 74 MP_DIGITS(&group->curvea) = 0; 75 MP_DIGITS(&group->curveb) = 0; 76 MP_DIGITS(&group 106 ECGroup *group = NULL; local 147 ECGroup *group = NULL; local 192 ECGroup *group = NULL; local 234 ECGroup *group = NULL; local 395 ECGroup *group = NULL; local 422 ECPoint_validate(const ECGroup *group, const mp_int *px, const mp_int *py) argument 438 ECGroup_free(ECGroup *group) argument [all...] |
/illumos-gate/usr/src/grub/grub-0.97/netboot/ |
H A D | igmp.h | 18 in_addr group; member in struct:igmp
|
/illumos-gate/usr/src/head/ |
H A D | grp.h | 48 struct group { /* see getgrent(3C) */ struct 55 extern struct group *getgrgid(gid_t); /* MT-unsafe */ 56 extern struct group *getgrnam(const char *); /* MT-unsafe */ 59 extern struct group *getgrent_r(struct group *, char *, int); 60 extern struct group *fgetgrent_r(FILE *, struct group *, char *, int); 63 extern struct group *fgetgrent(FILE *); /* MT-unsafe */ 70 extern struct group *getgrent(void); /* MT-unsafe */ 117 extern int getgrgid_r(gid_t, struct group *, cha [all...] |
/illumos-gate/usr/src/cmd/tip/ |
H A D | log.c | 22 logent(char *group, char *num, char *acu, char *message) argument 45 user, timestamp, group,
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | group.h | 40 #define GRP_RESIZE 0x1 /* Resize group capacity if needed */ 41 #define GRP_NORESIZE 0x2 /* Do not resize group capacity; may fail */ 44 * group structure 46 typedef struct group { struct 48 uint_t grp_capacity; /* current group capacity */ 56 * Return the number of elements in the group 61 * Access the element at the specified group index 72 * Expand a group's holding capacity 83 * Add / remove an element (or elements) from the group 91 * The group mus [all...] |
/illumos-gate/usr/src/lib/libsocket/inet/ |
H A D | sourcefilter.c | 41 getsourcefilter(int s, uint32_t interface, struct sockaddr *group, argument 58 switch (group->sa_family) { 64 (void) memcpy((void *)&gf->gf_group, (void *)group, 72 (void) memcpy((void *)&gf->gf_group, (void *)group, 101 setsourcefilter(int s, uint32_t interface, struct sockaddr *group, argument 116 switch (group->sa_family) { 122 (void) memcpy((void *)&gf->gf_group, (void *)group, 130 (void) memcpy((void *)&gf->gf_group, (void *)group, 158 getipv4sourcefilter(int s, struct in_addr interface, struct in_addr group, argument 174 imsf->imsf_multiaddr = group; 197 setipv4sourcefilter(int s, struct in_addr interface, struct in_addr group, uint32_t fmode, uint32_t numsrc, struct in_addr *slist) argument [all...] |
/illumos-gate/usr/src/lib/libresolv2/common/irs/ |
H A D | gen_ng.c | 148 ng_rewind(struct irs_ng *this, const char *group) { argument 156 pvt->curgroup = strdup(group);
|
H A D | irp_ng.c | 121 * void ng_rewind(struct irs_ng *this, const char *group) 127 ng_rewind(struct irs_ng *this, const char *group) { argument 137 "setnetgrent %s", group) != 0) { 145 group, text);
|
/illumos-gate/usr/src/cmd/picl/plugins/sun4v/lib/snmp/ |
H A D | snmplib.h | 56 oidgroup_t *group; member in struct:picl_snmphdl
|
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/ |
H A D | group.c | 30 * Display group information and walk all elements of a group 33 #include "group.h" 36 #include <sys/group.h> 39 * Display group information 44 group(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) function 46 group_t group; local 69 if (mdb_vread(&group, sizeof (struct group), addr) == -1) { 70 mdb_warn("unable to read 'group' a 105 group_t group; local [all...] |
/illumos-gate/usr/src/lib/librdc/common/ |
H A D | librdc.h | 57 char group[NSC_MAXPATH]; member in struct:rdcconfig_s 79 const char *mode, const char *group, const char *ctag, const char *options, 101 extern rdc_rc_t *rdc_reconfig_group(rdcconfig_t *rdc, char *group);
|
/illumos-gate/usr/src/lib/libresolv2/common/isc/ |
H A D | logging_p.h | 28 gid_t group; member in struct:log_file_desc
|