Searched refs:group (Results 201 - 225 of 433) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_write_disk_set_standard_lookup.c125 struct group grent, *result;
149 struct group *result;
/freebsd-9.3-release/contrib/wpa/src/ap/
H A Dwpa_auth_i.h32 struct wpa_group *group; member in struct:wpa_state_machine
126 /* per group key state machine data */
159 struct wpa_group *group; member in struct:wpa_authenticator
/freebsd-9.3-release/share/mk/
H A Dbsd.nls.mk16 # NLSGRP National Language Support files group. [${SHAREGRP}]
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-pow.h108 CVMX_POW_TAG_OP_SWTAG_DESCH = 2L, /**< switch the tag (and/or group) for this PP and de-schedule
109 - OK to keep the tag the same and only change the group
155 uint64_t grp : 4; /**< the group that the work queue entry will be scheduled to grp is used for CVMX_POW_TAG_OP_ADDWQ, CVMX_POW_TAG_OP_SWTAG_FULL, CVMX_POW_TAG_OP_SWTAG_DESCH, and CVMX_POW_TAG_OP_UPDATE_WQP_GRP */
278 16 deschedule lists (per group);
459 uint64_t grp : 4; /**< The group attached to the core (updated when new tag list entered on SWTAG_FULL). */
491 uint64_t grp : 4; /**< The group attached to the core (updated when new tag list entered on SWTAG_FULL). */
522 uint64_t grp : 4; /**< The group attached to the core (updated when new tag list entered on SWTAG_FULL). */
544 uint64_t grp : 4; /**< The group attached to the core (updated when new tag list entered on SWTAG_FULL). */
564 uint64_t grp : 4; /**< The group of the POW entry. */
590 uint64_t grp : 4; /**< The group o
1226 cvmx_pow_tag_sw_full_nocheck(cvmx_wqe_t *wqp, uint32_t tag, cvmx_pow_tag_type_t tag_type, uint64_t group) argument
1287 cvmx_pow_tag_sw_full(cvmx_wqe_t *wqp, uint32_t tag, cvmx_pow_tag_type_t tag_type, uint64_t group) argument
1515 cvmx_pow_tag_sw_desched_nocheck(uint32_t tag, cvmx_pow_tag_type_t tag_type, uint64_t group, uint64_t no_sched) argument
1585 cvmx_pow_tag_sw_desched(uint32_t tag, cvmx_pow_tag_type_t tag_type, uint64_t group, uint64_t no_sched) argument
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/win32/
H A Dfsaccess.c128 #define SET_AND_CLEAR(user, group, other) \
131 SET_AND_CLEAR1(group); \
237 * Group is ignored since we can be in multiple groups or no group
/freebsd-9.3-release/contrib/binutils/bfd/
H A Dbfd.c450 %A section name from section. For group components, print group name too.
547 const char *group = NULL;
558 group = elf_group_name (sec);
563 group = ci->name;
564 if (group != NULL)
565 snprintf (bufp, avail, "%s[%s]", sec->name, group);
545 const char *group = NULL; local
/freebsd-9.3-release/contrib/openbsm/etc/
H A Daudit_event631 6511:AUE_DARWIN_create_group:create group:ad
632 6512:AUE_DARWIN_delete_group:delete group:ad
633 6513:AUE_DARWIN_modify_group:modify group:ad
634 6514:AUE_DARWIN_add_to_group:add to group:ad
635 6515:AUE_DARWIN_remove_from_group:remove from group:ad
653 45015:AUE_create_group:create group:ad
654 45016:AUE_delete_group:delete group:ad
655 45017:AUE_modify_group:modify group:ad
656 45018:AUE_add_to_group:add to group:ad
657 45019:AUE_remove_from_group:remove from group
[all...]
/freebsd-9.3-release/sys/netncp/
H A Dncp_conn.c226 if (cap->group != NCP_DEFAULT_GROUP &&
227 !groupmember(cap->group, cred) && !isroot)
245 ncp->nc_group = (cap->group != NCP_DEFAULT_GROUP) ?
246 cap->group : cred->cr_groups[0];
633 ncs->group = ncp->nc_group;
/freebsd-9.3-release/contrib/dialog/
H A Ddialog.c501 howmany_tags(char *argv[], int group) argument
511 if ((have = arg_rest(argv)) < group) {
512 sprintf(temp, format, group, have);
516 argv += group;
799 int group = FORMBOX_TAGS; local
800 int tags = howmany_tags(av + 5, group);
801 *offset_add = 5 + tags * group;
829 int group = MIXEDFORM_TAGS; local
830 int tags = howmany_tags(av + 5, group);
831 *offset_add = 5 + tags * group;
[all...]
/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_reset.c736 uint32_t rd, group; local
765 group = ((freq - 5170) / 10);
767 if (group > 11) {
768 /* Pull 5.29 into the 5.27 group */
769 group--;
772 /* Integer divide will set group from 0 to 4 */
773 group = group / 3;
774 pRD = &ee->ee_tpc[group];
/freebsd-9.3-release/contrib/gcc/
H A Dtree-sra.c94 each (accessed) member or group of members of such an aggregate. */
128 /* True if this element is a group of members of its parent. */
157 /* Helper function for above macro. Return next child in group. */
159 next_child_for_group (struct sra_elt *child, struct sra_elt *group) argument
161 gcc_assert (group->is_group);
167 child = group->parent->children;
169 /* Skip siblings that do not belong to the group. */
172 tree g_elt = group->element;
1256 struct sra_elt *c, *group;
1262 for (group
1250 struct sra_elt *c, *group; local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp83 static void addPackageToCheckerGroup(const Record *package, const Record *group, argument
88 recordGroupMap[group]->Checkers.insert(*I);
93 addPackageToCheckerGroup(*I, group, recordGroupMap);
103 // Invert the mapping of checkers to package/group into a one to many
141 // Create a pseudo-group to hold this checker.
160 // Insert the checker into the set of its group.
165 // If a package is in group, add all its checkers and its sub-packages
166 // checkers into the group.
/freebsd-9.3-release/crypto/heimdal/appl/su/
H A Dsu.c366 group_member_p(const char *group, const char *user) argument
368 struct group *g;
370 g = getgrnam(group);
401 /* if su:ing to root, check membership of group wheel or root; if
402 that group doesn't exist, or is empty, allow anyone to su
410 syslog (LOG_ERR | LOG_AUTH, "%s to %s: not in group %s",
/freebsd-9.3-release/lib/libncp/
H A Dncpl_conn.c132 li->group = NCP_DEFAULT_GROUP;
312 struct group *gr;
352 li->group = gr->gr_gid;
354 ncp_error("invalid group name %s, ignored",
/freebsd-9.3-release/contrib/amd/amd/
H A Dops_pcfs.c176 pcfs_args.gid = 0; /* default to wheel/root group */
178 struct group *gr;
181 else /* maybe used passed a GID number, not group name */
/freebsd-9.3-release/contrib/libarchive/cpio/
H A Dcmdline.c153 * We're parsing a group of POSIX-style single-character options.
156 /* Peel next option off of a group of short options. */
159 /* End of this group; recurse to get next option. */
275 * <username|uid> - Override user but not group
276 * <username>: - Override both, group is user's default group
277 * <uid>: - Override user but not group
279 * :<groupname|gid> - Override group but not user
304 return ("Invalid empty user/group spec");
307 * Split spec into [user][:.][group]
[all...]
/freebsd-9.3-release/contrib/pf/authpf/
H A Dauthpf.c296 /* whack the group list */
463 * Users may be listed by <username>, %<group>, or @<login_class>.
527 /* check group membership */
529 struct group *group; local
531 if ((group = getgrnam(buf + 1)) == NULL) {
533 "invalid group '%s' in %s (%s)",
546 if (group->gr_gid == groups[cnt]) {
563 return (1); /* matched an allowed user/group */
804 /* revoke group priv
[all...]
/freebsd-9.3-release/crypto/heimdal/appl/login/
H A Dlimits_conf.c176 /* XXX unclear: if you set group hard and user soft limit,
181 struct group *gr;
/freebsd-9.3-release/crypto/heimdal/appl/rsh/
H A Dlimits_conf.c176 /* XXX unclear: if you set group hard and user soft limit,
181 struct group *gr;
/freebsd-9.3-release/crypto/openssh/contrib/aix/
H A Dbuildbff.sh205 # Create PrivilegeSeparation user and group if not present
206 echo Checking for PrivilegeSeparation user and group.
207 if cut -f1 -d: /etc/group | egrep '^'$SSH_PRIVSEP_USER'\$' >/dev/null
209 echo "PrivSep group $SSH_PRIVSEP_USER already exists."
211 echo "Creating PrivSep group $SSH_PRIVSEP_USER."
/freebsd-9.3-release/lib/libc/posix1e/
H A Dacl_from_text.c60 if ((!strcmp(tag, "group")) || (!strcmp(tag, "g"))) {
74 if ((!strcmp(tag, "group")) || (!strcmp(tag, "g"))) {
276 struct group *g;
/freebsd-9.3-release/sbin/mount_unionfs/
H A Dmount_unionfs.c93 struct group *gr;
101 errx(EX_NOUSER, "unknown group id: %s", s);
/freebsd-9.3-release/sys/dev/drm/
H A Ddrm.h84 #define DRM_IOC(dir, group, nr, size) _IOC(dir, group, nr, size)
92 #define DRM_IOC(dir, group, nr, size) _IOC(dir, group, nr, size)
/freebsd-9.3-release/sys/dev/drm2/
H A Ddrm.h84 #define DRM_IOC(dir, group, nr, size) _IOC(dir, group, nr, size)
92 #define DRM_IOC(dir, group, nr, size) _IOC(dir, group, nr, size)
H A Ddrm_crtc.c908 drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group) argument
916 group->id_list = malloc(total_objects * sizeof(uint32_t),
919 group->num_crtcs = 0;
920 group->num_connectors = 0;
921 group->num_encoders = 0;
926 struct drm_mode_group *group)
933 if ((ret = drm_mode_group_init(dev, group)))
937 group->id_list[group->num_crtcs++] = crtc->base.id;
940 group
925 drm_mode_group_init_legacy_group(struct drm_device *dev, struct drm_mode_group *group) argument
[all...]

Completed in 180 milliseconds

1234567891011>>