Searched refs:group (Results 1 - 25 of 534) sorted by relevance

1234567891011>>

/freebsd-11-stable/share/mk/
H A Dbsd.files.mk12 .for group in ${FILESGROUPS}
14 ${${group}}:= ${${group}} ${${group}.yes}
15 ${${group}}:= ${${group}:O:u}
16 buildfiles: ${${group}}
23 .for group in ${FILESGROUPS}
24 .if defined(${group}) && !empty(${group})
[all...]
H A Dbsd.incs.mk19 .for group in ${INCSGROUPS}
20 buildincludes: ${${group}}
29 .for group in ${INCSGROUPS}
30 .if defined(${group}) && !empty(${group})
32 ${group}OWN?= ${BINOWN}
33 ${group}GRP?= ${BINGRP}
34 ${group}MODE?= ${NOBINMODE}
35 ${group}DIR?= ${INCLUDEDIR}${PRIVATELIB:D/private/${LIB}}
36 STAGE_SETS+= ${group
[all...]
H A Dbsd.confs.mk10 .for group in ${CONFGROUPS}
11 buildconfig: ${${group}}
20 .for group in ${CONFGROUPS}
21 .if defined(${group}) && !empty(${group})
23 ${group}OWN?= ${SHAREOWN}
24 ${group}GRP?= ${SHAREGRP}
25 ${group}MODE?= ${CONFMODE}
26 ${group}DIR?= ${CONFDIR}
27 STAGE_SETS+= ${group
[all...]
/freebsd-11-stable/contrib/ntp/sntp/unity/
H A Dunity_fixture.h19 #define TEST_GROUP(group)\
20 static const char* TEST_GROUP_##group = #group
22 #define TEST_SETUP(group) void TEST_##group##_SETUP(void);\
23 void TEST_##group##_SETUP(void)
25 #define TEST_TEAR_DOWN(group) void TEST_##group##_TEAR_DOWN(void);\
26 void TEST_##group##_TEAR_DOWN(void)
29 #define TEST(group, nam
[all...]
/freebsd-11-stable/include/
H A Dgrp.h44 #define _PATH_GROUP "/etc/group"
56 struct group { struct
57 char *gr_name; /* group name */
58 char *gr_passwd; /* group password */
59 gid_t gr_gid; /* group id */
60 char **gr_mem; /* group members */
66 struct group *getgrent(void);
68 struct group *getgrgid(gid_t);
69 struct group *getgrnam(const char *);
74 struct group * (*)(cons
[all...]
/freebsd-11-stable/usr.sbin/nscd/agents/
H A DMakefile.inc3 SRCS += passwd.c group.c services.c
/freebsd-11-stable/contrib/bmake/mk/
H A Dscripts.mk33 .for group in ${SCRIPTSGROUPS}
34 buildfiles: ${${group}}
40 .for group in ${SCRIPTSGROUPS}
41 .if !empty(${group}) && defined(${group}DIR)
42 .if ${group} != "SCRIPTS"
43 ${group}_INSTALL_OWN ?= ${SCRIPTS_INSTALL_OWN}
46 STAGE_DIR.${group} ?= ${STAGE_OBJTOP}${${group}DIR}
48 .for script in ${${group}
[all...]
H A Dfiles.mk26 .for group in ${FILESGROUPS}
27 buildfiles: ${${group}}
34 # ignore group if ${group}DIR is not defined
35 .for group in ${FILESGROUPS}
36 .if !empty(${group}) && defined(${group}DIR)
37 .if ${group} != "FILES"
38 ${group}_INSTALL_OWN ?= ${FILES_INSTALL_OWN}
41 STAGE_DIR.${group}
[all...]
H A Dinc.mk32 .for group in ${INCGROUPS}
33 buildincludes: ${${group}}
40 .for group in ${INCGROUPS}
41 .if !empty(${group})
42 .if ${group} != "INC"
43 ${group}_INSTALL_OWN ?= ${INC_INSTALL_OWN}
44 ${group}DIR ?= ${INCDIR}
47 STAGE_DIR.${group} ?= ${STAGE_OBJTOP}${${group}DIR}
49 .for header in ${${group}
[all...]
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Dec_lib.c75 static int ec_precompute_mont_data(EC_GROUP *group);
122 void EC_GROUP_free(EC_GROUP *group) argument
124 if (!group)
127 if (group->meth->group_finish != 0)
128 group->meth->group_finish(group);
130 EC_EX_DATA_free_all_data(&group->extra_data);
132 if (EC_GROUP_VERSION(group) && group->mont_data)
133 BN_MONT_CTX_free(group
146 EC_GROUP_clear_free(EC_GROUP *group) argument
287 EC_GROUP_method_of(const EC_GROUP *group) argument
310 ec_guess_cofactor(EC_GROUP *group) argument
358 EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
435 EC_GROUP_get0_generator(const EC_GROUP *group) argument
440 EC_GROUP_get_mont_data(const EC_GROUP *group) argument
445 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
453 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
462 EC_GROUP_set_curve_name(EC_GROUP *group, int nid) argument
467 EC_GROUP_get_curve_name(const EC_GROUP *group) argument
472 EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag) argument
478 EC_GROUP_get_asn1_flag(const EC_GROUP *group) argument
483 EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form) argument
489 EC_GROUP_get_point_conversion_form(const EC_GROUP *group) argument
495 EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len) argument
514 EC_GROUP_get0_seed(const EC_GROUP *group) argument
519 EC_GROUP_get_seed_len(const EC_GROUP *group) argument
524 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
534 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
545 EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
556 EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
568 EC_GROUP_get_degree(const EC_GROUP *group) argument
577 EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
806 EC_POINT_new(const EC_GROUP *group) argument
873 EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group) argument
897 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
911 EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
930 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
949 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
975 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
1001 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
1019 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
1037 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1052 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
1066 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) argument
1079 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
1100 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1114 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1128 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1141 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1165 EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
1176 EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) argument
1192 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
1204 EC_GROUP_have_precompute_mult(const EC_GROUP *group) argument
1229 ec_precompute_mont_data(EC_GROUP *group) argument
1269 ec_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
1297 ec_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
[all...]
H A Dec_oct.c71 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, argument
75 if (group->meth->point_set_compressed_coordinates == 0
76 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT)) {
81 if (group->meth != point->meth) {
86 if (group->meth->flags & EC_FLAGS_DEFAULT_OCT) {
87 if (group->meth->field_type == NID_X9_62_prime_field)
88 return ec_GFp_simple_set_compressed_coordinates(group, point, x,
98 return ec_GF2m_simple_set_compressed_coordinates(group, point, x,
102 return group->meth->point_set_compressed_coordinates(group, poin
107 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
135 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
166 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
H A Decp_mont.c122 int ec_GFp_mont_group_init(EC_GROUP *group) argument
126 ok = ec_GFp_simple_group_init(group);
127 group->field_data1 = NULL;
128 group->field_data2 = NULL;
132 void ec_GFp_mont_group_finish(EC_GROUP *group) argument
134 if (group->field_data1 != NULL) {
135 BN_MONT_CTX_free(group->field_data1);
136 group->field_data1 = NULL;
138 if (group->field_data2 != NULL) {
139 BN_free(group
145 ec_GFp_mont_group_clear_finish(EC_GROUP *group) argument
195 ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
255 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
266 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
277 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
288 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
299 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) argument
[all...]
H A Dec2_mult.c84 static int gf2m_Mdouble(const EC_GROUP *group, BIGNUM *x, BIGNUM *z, argument
96 if (!group->meth->field_sqr(group, x, x, ctx))
98 if (!group->meth->field_sqr(group, t1, z, ctx))
100 if (!group->meth->field_mul(group, z, x, t1, ctx))
102 if (!group->meth->field_sqr(group, x, x, ctx))
104 if (!group
125 gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) argument
173 gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) argument
263 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
376 ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
455 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
460 ec_GF2m_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Decp_smpl.c139 int ec_GFp_simple_group_init(EC_GROUP *group) argument
141 BN_init(&group->field);
142 BN_init(&group->a);
143 BN_init(&group->b);
144 group->a_is_minus3 = 0;
148 void ec_GFp_simple_group_finish(EC_GROUP *group) argument
150 BN_free(&group->field);
151 BN_free(&group->a);
152 BN_free(&group->b);
155 void ec_GFp_simple_group_clear_finish(EC_GROUP *group) argument
176 ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
236 ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
282 ec_GFp_simple_group_get_degree(const EC_GROUP *group) argument
287 ec_GFp_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
399 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
407 ec_GFp_simple_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
468 ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
518 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
536 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
651 ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
838 ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
981 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
990 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
995 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1099 ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1209 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1249 ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1408 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1414 ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_mcg.c50 #define mcg_warn_group(group, format, arg...) \
52 (group)->name, group->demux->port, ## arg)
54 #define mcg_debug_group(group, format, arg...) \
56 (group)->name, (group)->demux->port, ## arg)
58 #define mcg_error_group(group, format, arg...) \
59 pr_err(" %16s: " format, (group)->name, ## arg)
136 struct mcast_group *group; member in struct:mcast_req
144 mcg_warn_group(group, "di
166 struct mcast_group *group; local
183 mcast_insert(struct mlx4_ib_demux_ctx *ctx, struct mcast_group *group) argument
252 send_join_to_wire(struct mcast_group *group, struct ib_sa_mad *sa_mad) argument
279 send_leave_to_wire(struct mcast_group *group, u8 join_state) argument
318 send_reply_to_slave(int slave, struct mcast_group *group, struct ib_sa_mad *req_sa_mad, u16 status) argument
437 release_group(struct mcast_group *group, int from_timeout_handler) argument
474 adjust_membership(struct mcast_group *group, u8 join_state, int inc) argument
483 get_leave_state(struct mcast_group *group) argument
495 join_group(struct mcast_group *group, int slave, u8 join_mask) argument
511 leave_group(struct mcast_group *group, int slave, u8 leave_state) argument
524 check_leave(struct mcast_group *group, int slave, u8 leave_mask) argument
542 struct mcast_group *group; local
584 handle_leave_req(struct mcast_group *group, u8 leave_mask, struct mcast_req *req) argument
605 handle_join_req(struct mcast_group *group, u8 join_mask, struct mcast_req *req) argument
644 struct mcast_group *group; local
751 struct mcast_group *group = NULL, *cur_group, *n; local
815 struct mcast_group *group, *cur_group; local
875 struct mcast_group *group = req->group; local
892 struct mcast_group *group; local
941 struct mcast_group *group; local
996 struct mcast_group *group = local
1064 force_clean_group(struct mcast_group *group) argument
1081 struct mcast_group *group; local
1167 clear_pending_reqs(struct mcast_group *group, int vf) argument
1200 push_deleteing_req(struct mcast_group *group, int slave) argument
1233 struct mcast_group *group; local
[all...]
/freebsd-11-stable/contrib/wpa/src/p2p/
H A Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
32 * struct p2p_group - Internal P2P module per-group data
49 struct p2p_group *group, **groups; local
51 group = os_zalloc(sizeof(*group));
52 if (group == NULL)
58 os_free(group);
61 groups[p2p->num_groups++] = group;
64 group->p2p = p2p;
65 group
84 p2p_group_free_members(struct p2p_group *group) argument
98 p2p_group_deinit(struct p2p_group *group) argument
137 p2p_group_add_common_ies(struct p2p_group *group, struct wpabuf *ie) argument
208 p2p_group_build_beacon_ie(struct p2p_group *group) argument
354 wifi_display_build_go_ie(struct p2p_group *group) argument
405 wifi_display_group_update(struct p2p_group *group) argument
414 p2p_buf_add_group_info(struct p2p_group *group, struct wpabuf *buf, int max_clients) argument
436 p2p_group_buf_add_id(struct p2p_group *group, struct wpabuf *buf) argument
443 p2p_group_build_probe_resp_ie(struct p2p_group *group) argument
482 p2p_group_update_ies(struct p2p_group *group) argument
572 p2p_group_remove_member(struct p2p_group *group, const u8 *addr) argument
602 p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr, const u8 *ie, size_t len) argument
646 p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status) argument
690 p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr) argument
759 p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps) argument
776 p2p_group_match_dev_id(struct p2p_group *group, struct wpabuf *p2p) argument
801 p2p_group_notif_formation_done(struct p2p_group *group) argument
811 p2p_group_notif_noa(struct p2p_group *group, const u8 *noa, size_t noa_len) argument
841 p2p_group_get_client(struct p2p_group *group, const u8 *dev_id) argument
855 p2p_group_get_client_interface_addr(struct p2p_group *group, const u8 *dev_addr) argument
869 p2p_group_get_client_iface( struct p2p_group *group, const u8 *interface_addr) argument
883 p2p_group_get_dev_addr(struct p2p_group *group, const u8 *addr) argument
910 p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id, const u8 *searching_dev, int rx_freq) argument
956 p2p_group_get_interface_addr(struct p2p_group *group) argument
962 p2p_group_presence_req(struct p2p_group *group, const u8 *client_interface_addr, const u8 *noa, size_t noa_len) argument
1000 p2p_get_group_num_members(struct p2p_group *group) argument
1009 p2p_client_limit_reached(struct p2p_group *group) argument
1018 p2p_iterate_group_members(struct p2p_group *group, void **next) argument
1036 p2p_group_is_client_connected(struct p2p_group *group, const u8 *dev_addr) argument
1049 p2p_group_is_group_id_match(struct p2p_group *group, const u8 *group_id, size_t group_id_len) argument
1061 p2p_group_force_beacon_update_ies(struct p2p_group *group) argument
1068 p2p_group_get_freq(struct p2p_group *group) argument
1074 p2p_group_get_config(struct p2p_group *group) argument
1080 p2p_loop_on_all_groups(struct p2p_data *p2p, int (*group_callback)(struct p2p_group *group, void *user_data), void *user_data) argument
1094 p2p_group_get_common_freqs(struct p2p_group *group, int *common_freqs, unsigned int *num) argument
[all...]
/freebsd-11-stable/tools/regression/iscsi/
H A Dctl.conf1 auth-group meh {
5 portal-group meh {
7 discovery-auth-group no-authentication
11 auth-group no-authentication
12 portal-group meh
24 auth-group meh
25 portal-group meh
/freebsd-11-stable/sys/contrib/alpine-hal/
H A Dal_hal_iofic.h71 * @param group the interrupt group.
76 int al_iofic_config(void __iomem *regs_base, int group,
80 * configure the moderation timer resolution for a given group
84 * @param group the interrupt group
91 int al_iofic_moder_res_config(void __iomem *regs_base, int group,
95 * configure the moderation timer interval for a given legacy interrupt group
98 * @param group the interrupt group
[all...]
H A Dal_hal_iofic.c51 int al_iofic_config(void __iomem *regs_base, int group, uint32_t flags) argument
56 al_assert(group < AL_IOFIC_MAX_GROUPS);
58 al_reg_write32(&regs->ctrl[group].int_control_grp, flags);
64 * configure the moderation timer resolution for a given group
66 int al_iofic_moder_res_config(void __iomem *regs_base, int group, argument
74 al_assert(group < AL_IOFIC_MAX_GROUPS);
76 reg = al_reg_read32(&regs->ctrl[group].int_control_grp);
81 al_reg_write32(&regs->ctrl[group].int_control_grp, reg);
87 * configure the moderation timer interval for a given legacy interrupt group
89 int al_iofic_legacy_moder_interval_config(void __iomem *regs_base, int group, argument
112 al_iofic_msix_moder_interval_config(void __iomem *regs_base, int group, uint8_t vector, uint8_t interval) argument
134 al_iofic_msix_vmid_attributes_config(void __iomem *regs_base, int group, uint8_t vector, uint32_t vmid, uint8_t vmid_en) argument
159 al_iofic_unmask_offset_get(void __iomem *regs_base, int group) argument
173 al_iofic_unmask(void __iomem *regs_base, int group, uint32_t mask) argument
190 al_iofic_mask(void __iomem *regs_base, int group, uint32_t mask) argument
206 al_iofic_read_mask(void __iomem *regs_base, int group) argument
219 al_iofic_read_cause(void __iomem *regs_base, int group) argument
232 al_iofic_clear_cause(void __iomem *regs_base, int group, uint32_t mask) argument
246 al_iofic_set_cause(void __iomem *regs_base, int group, uint32_t mask) argument
260 al_iofic_abort_mask(void __iomem *regs_base, int group, uint32_t mask) argument
274 al_iofic_interrupt_moderation_reset(void __iomem *regs_base, int group) argument
[all...]
/freebsd-11-stable/contrib/top/
H A Dinstall-sh8 # -g target file group owner
26 group=$2
44 echo "Usage: install [ -o owner ] [ -m mode ] [ -g group ] file destination"
64 if [ "$group" ]; then
65 chgrp $group $dest
/freebsd-11-stable/contrib/blacklist/etc/
H A Dnpf.conf8 group "external" on $ext_if {
13 group default {
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dchown.c39 chown(const char *path, uid_t owner, gid_t group) argument
H A Dfchown.c39 fchown(int fd, uid_t owner, gid_t group) argument
/freebsd-11-stable/etc/rc.d/
H A Dsdpd21 group="${sdpd_groupname:-nobody}"
23 command_args="-c ${control} -g ${group} -u ${user}"
/freebsd-11-stable/etc/periodic/daily/
H A D200.backup-passwd21 elif [ ! -f /etc/group ]
23 echo '$daily_backup_passwd_enable" is set but /etc/group' \
31 echo "Backup passwd and group files:"
50 if [ ! -f $bak/group.bak ]
53 echo "no $bak/group.bak"
54 cp -p /etc/group $bak/group.bak || rc=3
57 if ! cmp -s $bak/group.bak /etc/group
60 echo "$host group diff
[all...]

Completed in 158 milliseconds

1234567891011>>