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

1234567891011>>

/freebsd-10.3-release/share/mk/
H A Dbsd.files.mk12 .for group in ${FILESGROUPS}
13 buildfiles: ${${group}}
18 .for group in ${FILESGROUPS}
19 .if defined(${group}) && !empty(${group})
20 installfiles: installfiles-${group}
22 ${group}OWN?= ${SHAREOWN}
23 ${group}GRP?= ${SHAREGRP}
24 ${group}MODE?= ${SHAREMODE}
25 ${group}DI
[all...]
H A Dbsd.incs.mk12 .for group in ${INCSGROUPS}
13 buildincludes: ${${group}}
20 .for group in ${INCSGROUPS}
21 .if defined(${group}) && !empty(${group})
23 ${group}OWN?= ${BINOWN}
24 ${group}GRP?= ${BINGRP}
25 ${group}MODE?= ${NOBINMODE}
26 ${group}DIR?= ${INCLUDEDIR}
28 _${group}INC
[all...]
/freebsd-10.3-release/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-10.3-release/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-10.3-release/usr.sbin/nscd/agents/
H A DMakefile.inc3 SRCS += passwd.c group.c services.c
/freebsd-10.3-release/sys/ofed/drivers/infiniband/hw/mlx4/
H A Dmcg.c49 #define mcg_warn_group(group, format, arg...) \
51 (group)->name, group->demux->port, ## arg)
53 #define mcg_error_group(group, format, arg...) \
54 pr_err(" %16s: " format, (group)->name, ## arg)
130 struct mcast_group *group; member in struct:mcast_req
138 mcg_warn_group(group, "did not expect to reach zero\n"); \
160 struct mcast_group *group; local
164 group = rb_entry(node, struct mcast_group, node);
165 ret = memcmp(mgid->raw, group
177 mcast_insert(struct mlx4_ib_demux_ctx *ctx, struct mcast_group *group) argument
244 send_join_to_wire(struct mcast_group *group, struct ib_sa_mad *sa_mad) argument
271 send_leave_to_wire(struct mcast_group *group, u8 join_state) argument
310 send_reply_to_slave(int slave, struct mcast_group *group, struct ib_sa_mad *req_sa_mad, u16 status) argument
429 release_group(struct mcast_group *group, int from_timeout_handler) argument
466 adjust_membership(struct mcast_group *group, u8 join_state, int inc) argument
475 get_leave_state(struct mcast_group *group) argument
487 join_group(struct mcast_group *group, int slave, u8 join_mask) argument
503 leave_group(struct mcast_group *group, int slave, u8 leave_state) argument
516 check_leave(struct mcast_group *group, int slave, u8 leave_mask) argument
534 struct mcast_group *group; local
576 handle_leave_req(struct mcast_group *group, u8 leave_mask, struct mcast_req *req) argument
597 handle_join_req(struct mcast_group *group, u8 join_mask, struct mcast_req *req) argument
636 struct mcast_group *group; local
742 struct mcast_group *group = NULL, *cur_group; local
809 struct mcast_group *group, *cur_group; local
867 struct mcast_group *group = req->group; local
884 struct mcast_group *group; local
933 struct mcast_group *group; local
988 struct mcast_group *group = local
1055 force_clean_group(struct mcast_group *group) argument
1072 struct mcast_group *group; local
1158 clear_pending_reqs(struct mcast_group *group, int vf) argument
1191 push_deleteing_req(struct mcast_group *group, int slave) argument
1224 struct mcast_group *group; local
[all...]
/freebsd-10.3-release/crypto/openssl/crypto/ec/
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 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
374 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
453 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
458 ec_GF2m_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Dec_lib.c117 void EC_GROUP_free(EC_GROUP *group) argument
119 if (!group)
122 if (group->meth->group_finish != 0)
123 group->meth->group_finish(group);
125 EC_EX_DATA_free_all_data(&group->extra_data);
127 if (group->generator != NULL)
128 EC_POINT_free(group->generator);
129 BN_free(&group->order);
130 BN_free(&group
138 EC_GROUP_clear_free(EC_GROUP *group) argument
260 EC_GROUP_method_of(const EC_GROUP *group) argument
270 EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
301 EC_GROUP_get0_generator(const EC_GROUP *group) argument
306 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
314 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
323 EC_GROUP_set_curve_name(EC_GROUP *group, int nid) argument
328 EC_GROUP_get_curve_name(const EC_GROUP *group) argument
333 EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag) argument
338 EC_GROUP_get_asn1_flag(const EC_GROUP *group) argument
343 EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form) argument
349 EC_GROUP_get_point_conversion_form(const EC_GROUP *group) argument
355 EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len) argument
374 EC_GROUP_get0_seed(const EC_GROUP *group) argument
379 EC_GROUP_get_seed_len(const EC_GROUP *group) argument
384 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
394 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
405 EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
416 EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
428 EC_GROUP_get_degree(const EC_GROUP *group) argument
437 EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
666 EC_POINT_new(const EC_GROUP *group) argument
733 EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group) argument
757 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
771 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
790 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
809 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
827 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
845 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
863 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
881 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
896 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
910 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) argument
923 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
944 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
958 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
972 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
985 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1009 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
1020 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
1036 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
1048 EC_GROUP_have_precompute_mult(const EC_GROUP *group) 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
253 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
264 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
275 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
286 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
297 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) 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...]
H A Dec2_smpl.c139 int ec_GF2m_simple_group_init(EC_GROUP *group) argument
141 BN_init(&group->field);
142 BN_init(&group->a);
143 BN_init(&group->b);
151 void ec_GF2m_simple_group_finish(EC_GROUP *group) argument
153 BN_free(&group->field);
154 BN_free(&group->a);
155 BN_free(&group->b);
162 void ec_GF2m_simple_group_clear_finish(EC_GROUP *group) argument
164 BN_clear_free(&group
208 ec_GF2m_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
250 ec_GF2m_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
280 ec_GF2m_simple_group_get_degree(const EC_GROUP *group) argument
289 ec_GF2m_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
376 ec_GF2m_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
388 ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
420 ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
458 ec_GF2m_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
574 ec_GF2m_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
580 ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
592 ec_GF2m_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
603 ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
671 ec_GF2m_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
719 ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
763 ec_GF2m_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
777 ec_GF2m_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
784 ec_GF2m_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
791 ec_GF2m_simple_field_div(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
[all...]
H A Dec_check.c59 int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx) argument
78 if (!EC_GROUP_check_discriminant(group, ctx)) {
84 if (group->generator == NULL) {
88 if (EC_POINT_is_on_curve(group, group->generator, ctx) <= 0) {
94 if ((point = EC_POINT_new(group)) == NULL)
96 if (!EC_GROUP_get_order(group, order, ctx))
103 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx))
105 if (!EC_POINT_is_at_infinity(group, point)) {
H A Decp_oct.c71 int ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, argument
106 if (!BN_nnmod(x, x_, &group->field, ctx))
108 if (group->meth->field_decode == 0) {
110 if (!group->meth->field_sqr(group, tmp2, x_, ctx))
112 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx))
115 if (!BN_mod_sqr(tmp2, x_, &group->field, ctx))
117 if (!BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx))
122 if (group
210 ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
327 ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
/freebsd-10.3-release/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-10.3-release/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-10.3-release/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-10.3-release/etc/rc.d/
H A Dsdpd20 group="${sdpd_groupname:-nobody}"
22 command_args="-c ${control} -g ${group} -u ${user}"
/freebsd-10.3-release/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...]
/freebsd-10.3-release/contrib/wpa/src/p2p/
H A Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
31 * struct p2p_group - Internal P2P module per-group data
48 struct p2p_group *group, **groups; local
50 group = os_zalloc(sizeof(*group));
51 if (group == NULL)
57 os_free(group);
60 groups[p2p->num_groups++] = group;
63 group->p2p = p2p;
64 group
83 p2p_group_free_members(struct p2p_group *group) argument
97 p2p_group_deinit(struct p2p_group *group) argument
136 p2p_group_add_common_ies(struct p2p_group *group, struct wpabuf *ie) argument
172 p2p_group_build_beacon_ie(struct p2p_group *group) argument
309 wifi_display_build_go_ie(struct p2p_group *group) argument
358 wifi_display_group_update(struct p2p_group *group) argument
367 p2p_group_build_probe_resp_ie(struct p2p_group *group) argument
412 p2p_group_update_ies(struct p2p_group *group) argument
502 p2p_group_remove_member(struct p2p_group *group, const u8 *addr) argument
532 p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr, const u8 *ie, size_t len) argument
574 p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status) argument
609 p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr) argument
678 p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps) argument
695 p2p_group_match_dev_id(struct p2p_group *group, struct wpabuf *p2p) argument
720 p2p_group_notif_formation_done(struct p2p_group *group) argument
730 p2p_group_notif_noa(struct p2p_group *group, const u8 *noa, size_t noa_len) argument
760 p2p_group_get_client(struct p2p_group *group, const u8 *dev_id) argument
774 p2p_group_get_client_iface( struct p2p_group *group, const u8 *interface_addr) argument
788 p2p_group_get_dev_addr(struct p2p_group *group, const u8 *addr) argument
815 p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id, const u8 *searching_dev, int rx_freq) argument
863 p2p_group_get_interface_addr(struct p2p_group *group) argument
869 p2p_group_presence_req(struct p2p_group *group, const u8 *client_interface_addr, const u8 *noa, size_t noa_len) argument
907 p2p_get_group_num_members(struct p2p_group *group) argument
913 p2p_iterate_group_members(struct p2p_group *group, void **next) argument
931 p2p_group_is_client_connected(struct p2p_group *group, const u8 *dev_addr) argument
944 p2p_group_is_group_id_match(struct p2p_group *group, const u8 *group_id, size_t group_id_len) argument
[all...]
/freebsd-10.3-release/sys/ofed/drivers/infiniband/core/
H A Dmulticast.c116 struct mcast_group *group; member in struct:mcast_member
132 struct mcast_group *group; local
136 group = rb_entry(node, struct mcast_group, node);
137 ret = memcmp(mgid->raw, group->rec.mgid.raw, sizeof *mgid);
139 return group;
150 struct mcast_group *group,
162 ret = memcmp(group->rec.mgid.raw, cur_group->rec.mgid.raw,
163 sizeof group->rec.mgid);
173 rb_link_node(&group->node, parent, link);
174 rb_insert_color(&group
149 mcast_insert(struct mcast_port *port, struct mcast_group *group, int allow_duplicates) argument
184 release_group(struct mcast_group *group) argument
207 struct mcast_group *group = member->group; local
226 adjust_membership(struct mcast_group *group, u8 join_state, int inc) argument
241 get_leave_state(struct mcast_group *group) argument
300 send_join(struct mcast_group *group, struct mcast_member *member) argument
319 send_leave(struct mcast_group *group, u8 leave_state) argument
343 join_group(struct mcast_group *group, struct mcast_member *member, u8 join_state) argument
354 fail_join(struct mcast_group *group, struct mcast_member *member, int status) argument
363 process_group_error(struct mcast_group *group) argument
404 struct mcast_group *group; local
469 process_join_error(struct mcast_group *group, int status) argument
492 struct mcast_group *group = context; local
518 struct mcast_group *group = context; local
530 struct mcast_group *group, *cur_group; local
635 struct mcast_group *group; local
668 struct mcast_group *group; local
722 struct mcast_group *group; local
[all...]
H A Dnotice.c109 struct inform_group *group; member in struct:inform_member
130 struct inform_group *group; local
133 group = rb_entry(node, struct inform_group, node);
134 if (trap_number < group->trap_number)
136 else if (trap_number > group->trap_number)
139 return group;
145 struct inform_group *group)
154 if (group->trap_number < cur_group->trap_number)
156 else if (group->trap_number > cur_group->trap_number)
161 rb_link_node(&group
144 inform_insert(struct inform_port *port, struct inform_group *group) argument
172 release_group(struct inform_group *group) argument
195 struct inform_group *group = member->group; local
208 send_reg(struct inform_group *group, struct inform_member *member) argument
235 send_unreg(struct inform_group *group) argument
261 join_group(struct inform_group *group, struct inform_member *member) argument
268 fail_join(struct inform_group *group, struct inform_member *member, int status) argument
277 process_group_error(struct inform_group *group) argument
309 process_notice(struct inform_group *group, struct inform_notice *info_notice) argument
339 struct inform_group *group; local
408 process_join_error(struct inform_group *group, int status) argument
430 struct inform_group *group = context; local
442 struct inform_group *group = context; local
452 struct inform_group *group; local
496 struct inform_group *group, *cur_group; local
595 struct inform_group *group; local
625 struct inform_group *group; local
[all...]
/freebsd-10.3-release/contrib/gdb/gdb/tui/
H A Dtui-regs.h31 extern void tui_show_registers (struct reggroup *group);
/freebsd-10.3-release/usr.sbin/pw/
H A Dgrupd.c51 gr_update(struct group * grp, char const * group) argument
54 struct group *gr = NULL;
55 struct group *old_gr = NULL;
60 if (group != NULL)
61 old_gr = GETGRNAM(group);
89 addgrent(struct group * grp)
95 chggrent(char const * login, struct group * grp)
101 delgrent(struct group * grp)

Completed in 223 milliseconds

1234567891011>>