Home
last modified time | relevance | path

Searched refs:group (Results 1 – 25 of 1184) sorted by relevance

12345678910>>...48

/openbsd-src/usr.sbin/dvmrpd/
H A Dgroup.c36 int start_dead_timer(struct group *);
37 int start_dead_timer_all(struct group *);
38 int stop_dead_timer(struct group *);
41 int start_v1_host_timer(struct group *);
42 int stop_v1_host_timer(struct group *);
45 int start_retrans_timer(struct group *);
46 int stop_retrans_timer(struct group *);
143 group_fsm(struct group *group, enum group_event event) in group_fsm() argument
150 old_state = group->state; in group_fsm()
162 "state '%s'", inet_ntoa(group->addr), in group_fsm()
[all …]
H A Digmp.c38 send_igmp_query(struct iface *iface, struct group *group) in send_igmp_query() argument
57 if (group == NULL) { in send_igmp_query()
71 /* group specific query - only version 2 */ in send_igmp_query()
72 igmp_hdr.grp_addr = group->addr.s_addr; in send_igmp_query()
93 struct group *group; in recv_igmp_query() local
122 /* validate group id */ in recv_igmp_query()
124 log_debug("recv_igmp_query: invalid group, " in recv_igmp_query()
129 if ((group in recv_igmp_query()
140 struct group *group; recv_igmp_report() local
192 struct group *group; recv_igmp_leave() local
[all...]
H A Drde_mfc.c71 log_debug("mfc_expire_timer: group %s", inet_ntoa(mn->group)); in mfc_expire_timer()
75 nmfc.group = mn->group; in mfc_expire_timer()
97 log_debug("mfc_start_expire_timer: group %s", inet_ntoa(mn->group)); in mfc_start_expire_timer()
109 log_debug("mfc_prune_timer: group %s", inet_ntoa(mn->group)); in mfc_prune_timer()
119 log_debug("mfc_start_prune_timer: group %s", inet_ntoa(mn->group)); in mfc_start_prune_timer()
150 if (ntohl(a->group.s_addr) < ntohl(b->group.s_addr)) in mfc_compare()
152 if (ntohl(a->group.s_addr) > ntohl(b->group.s_addr)) in mfc_compare()
158 mfc_find(in_addr_t origin, in_addr_t group) in mfc_find() argument
163 s.group.s_addr = group; in mfc_find()
173 inet_ntoa(m->group)); in mfc_insert()
[all …]
/openbsd-src/sbin/isakmpd/
H A Ddh.c31 int dh_init(struct group *);
33 int modp_init(struct group *);
34 int modp_getlen(struct group *);
35 int modp_create_exchange(struct group *, u_int8_t *);
36 int modp_create_shared(struct group *, u_int8_t *, u_int8_t *);
38 int ec_init(struct group *);
39 int ec_getlen(struct group *);
40 int ec_secretlen(struct group *);
41 int ec_create_exchange(struct group *, u_int8_t *);
42 int ec_create_shared(struct group *, u_int8_t *, u_int8_t *);
[all …]
H A Ddh.h37 struct group { struct
44 int (*init)(struct group *); argument
45 int (*getlen)(struct group *); argument
46 int (*secretlen)(struct group *); argument
47 int (*exchange)(struct group *, u_int8_t *); argument
48 int (*shared)(struct group *, u_int8_t *, u_int8_t *); argument
54 void group_free(struct group *);
55 struct group *group_get(u_int32_t);
57 int dh_getlen(struct group *);
58 int dh_secretlen(struct group *);
[all …]
/openbsd-src/sbin/iked/
H A Ddh.c287 group_free(struct dh_group *group) in group_free() argument
289 if (group == NULL) in group_free()
291 if (group->dh != NULL) in group_free()
292 DH_free(group->dh); in group_free()
293 if (group->ec != NULL) in group_free()
294 EC_KEY_free(group->ec); in group_free()
295 freezero(group->curve25519, sizeof(struct curve25519_key)); in group_free()
296 freezero(group->kemsx, sizeof(struct kemsx_key)); in group_free()
297 group->spec = NULL; in group_free()
298 free(group); in group_free()
[all …]
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Ddotest_args.py18 group = None
22 X = lambda optstr, helpstr, **kwargs: group.add_argument(
25 group = parser.add_argument_group('Help')
26 group.add_argument(
34 group = parser.add_argument_group('Toolchain options')
35 group.add_argument(
41group.add_argument('-C', '--compiler', metavar='compiler', dest='compiler', help=textwrap.dedent(
44group.add_argument('--apple-sdk', metavar='apple_sdk', dest='apple_sdk', default="", help=textwrap…
46 group.add_argument('--libcxx-include-dir', help=textwrap.dedent(
48 group.add_argument('--libcxx-include-target-dir', help=textwrap.dedent(
[all …]
/openbsd-src/lib/libcrypto/ec/
H A Dec_lib.c81 EC_GROUP *group = NULL; in EC_GROUP_new()
87 if ((group = calloc(1, sizeof(*group))) == NULL) { in EC_GROUP_new()
92 group->meth = meth; in EC_GROUP_new()
94 group->asn1_flag = OPENSSL_EC_NAMED_CURVE; in EC_GROUP_new()
95 group->asn1_form = POINT_CONVERSION_UNCOMPRESSED; in EC_GROUP_new()
97 if ((group->p = BN_new()) == NULL) in EC_GROUP_new()
99 if ((group->a = BN_new()) == NULL) in EC_GROUP_new()
101 if ((group->b = BN_new()) == NULL) in EC_GROUP_new()
104 if ((group in EC_GROUP_new()
116 EC_GROUP_free(EC_GROUP * group) EC_GROUP_free() argument
134 EC_GROUP_clear_free(EC_GROUP * group) EC_GROUP_clear_free() argument
209 EC_GROUP_method_of(const EC_GROUP * group) EC_GROUP_method_of() argument
238 ec_set_cofactor(EC_GROUP * group,const BIGNUM * in_cofactor) ec_set_cofactor() argument
314 EC_GROUP_set_generator(EC_GROUP * group,const EC_POINT * generator,const BIGNUM * order,const BIGNUM * cofactor) EC_GROUP_set_generator() argument
357 EC_GROUP_get0_generator(const EC_GROUP * group) EC_GROUP_get0_generator() argument
364 EC_GROUP_get_order(const EC_GROUP * group,BIGNUM * order,BN_CTX * ctx) EC_GROUP_get_order() argument
374 EC_GROUP_get0_order(const EC_GROUP * group) EC_GROUP_get0_order() argument
380 EC_GROUP_order_bits(const EC_GROUP * group) EC_GROUP_order_bits() argument
387 EC_GROUP_get_cofactor(const EC_GROUP * group,BIGNUM * cofactor,BN_CTX * ctx) EC_GROUP_get_cofactor() argument
397 EC_GROUP_set_curve_name(EC_GROUP * group,int nid) EC_GROUP_set_curve_name() argument
404 EC_GROUP_get_curve_name(const EC_GROUP * group) EC_GROUP_get_curve_name() argument
411 EC_GROUP_set_asn1_flag(EC_GROUP * group,int flag) EC_GROUP_set_asn1_flag() argument
418 EC_GROUP_get_asn1_flag(const EC_GROUP * group) EC_GROUP_get_asn1_flag() argument
425 EC_GROUP_set_point_conversion_form(EC_GROUP * group,point_conversion_form_t form) EC_GROUP_set_point_conversion_form() argument
433 EC_GROUP_get_point_conversion_form(const EC_GROUP * group) EC_GROUP_get_point_conversion_form() argument
440 EC_GROUP_set_seed(EC_GROUP * group,const unsigned char * p,size_t len) EC_GROUP_set_seed() argument
460 EC_GROUP_get0_seed(const EC_GROUP * group) EC_GROUP_get0_seed() argument
467 EC_GROUP_get_seed_len(const EC_GROUP * group) EC_GROUP_get_seed_len() argument
474 EC_GROUP_set_curve(EC_GROUP * group,const BIGNUM * p,const BIGNUM * a,const BIGNUM * b,BN_CTX * ctx_in) EC_GROUP_set_curve() argument
500 EC_GROUP_get_curve(const EC_GROUP * group,BIGNUM * p,BIGNUM * a,BIGNUM * b,BN_CTX * ctx_in) EC_GROUP_get_curve() argument
526 EC_GROUP_set_curve_GFp(EC_GROUP * group,const BIGNUM * p,const BIGNUM * a,const BIGNUM * b,BN_CTX * ctx) EC_GROUP_set_curve_GFp() argument
534 EC_GROUP_get_curve_GFp(const EC_GROUP * group,BIGNUM * p,BIGNUM * a,BIGNUM * b,BN_CTX * ctx) EC_GROUP_get_curve_GFp() argument
542 EC_GROUP_get_degree(const EC_GROUP * group) EC_GROUP_get_degree() argument
553 EC_GROUP_check_discriminant(const EC_GROUP * group,BN_CTX * ctx_in) EC_GROUP_check_discriminant() argument
662 ec_point_blind_coordinates(const EC_GROUP * group,EC_POINT * p,BN_CTX * ctx) ec_point_blind_coordinates() argument
671 EC_POINT_new(const EC_GROUP * group) EC_POINT_new() argument
736 EC_POINT_dup(const EC_POINT * a,const EC_GROUP * group) EC_POINT_dup() argument
764 EC_POINT_set_to_infinity(const EC_GROUP * group,EC_POINT * point) EC_POINT_set_to_infinity() argument
779 EC_POINT_set_Jprojective_coordinates(const EC_GROUP * group,EC_POINT * point,const BIGNUM * x,const BIGNUM * y,const BIGNUM * z,BN_CTX * ctx_in) EC_POINT_set_Jprojective_coordinates() argument
817 EC_POINT_get_Jprojective_coordinates(const EC_GROUP * group,const EC_POINT * point,BIGNUM * x,BIGNUM * y,BIGNUM * z,BN_CTX * ctx_in) EC_POINT_get_Jprojective_coordinates() argument
847 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) EC_POINT_set_Jprojective_coordinates_GFp() argument
855 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP * group,const EC_POINT * point,BIGNUM * x,BIGNUM * y,BIGNUM * z,BN_CTX * ctx) EC_POINT_get_Jprojective_coordinates_GFp() argument
863 EC_POINT_set_affine_coordinates(const EC_GROUP * group,EC_POINT * point,const BIGNUM * x,const BIGNUM * y,BN_CTX * ctx_in) EC_POINT_set_affine_coordinates() argument
901 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP * group,EC_POINT * point,const BIGNUM * x,const BIGNUM * y,BN_CTX * ctx) EC_POINT_set_affine_coordinates_GFp() argument
909 EC_POINT_get_affine_coordinates(const EC_GROUP * group,const EC_POINT * point,BIGNUM * x,BIGNUM * y,BN_CTX * ctx_in) EC_POINT_get_affine_coordinates() argument
939 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP * group,const EC_POINT * point,BIGNUM * x,BIGNUM * y,BN_CTX * ctx) EC_POINT_get_affine_coordinates_GFp() argument
947 EC_POINT_add(const EC_GROUP * group,EC_POINT * r,const EC_POINT * a,const EC_POINT * b,BN_CTX * ctx_in) EC_POINT_add() argument
978 EC_POINT_dbl(const EC_GROUP * group,EC_POINT * r,const EC_POINT * a,BN_CTX * ctx_in) EC_POINT_dbl() argument
1008 EC_POINT_invert(const EC_GROUP * group,EC_POINT * a,BN_CTX * ctx_in) EC_POINT_invert() argument
1037 EC_POINT_is_at_infinity(const EC_GROUP * group,const EC_POINT * point) EC_POINT_is_at_infinity() argument
1052 EC_POINT_is_on_curve(const EC_GROUP * group,const EC_POINT * point,BN_CTX * ctx_in) EC_POINT_is_on_curve() argument
1082 EC_POINT_cmp(const EC_GROUP * group,const EC_POINT * a,const EC_POINT * b,BN_CTX * ctx_in) EC_POINT_cmp() argument
1112 EC_POINT_make_affine(const EC_GROUP * group,EC_POINT * point,BN_CTX * ctx_in) EC_POINT_make_affine() argument
1141 EC_POINTs_make_affine(const EC_GROUP * group,size_t num,EC_POINT * points[],BN_CTX * ctx_in) EC_POINTs_make_affine() argument
1174 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_in) EC_POINTs_mul() argument
1216 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_in) EC_POINT_mul() argument
1278 EC_GROUP_precompute_mult(EC_GROUP * group,BN_CTX * ctx_in) EC_GROUP_precompute_mult() argument
1285 EC_GROUP_have_precompute_mult(const EC_GROUP * group) EC_GROUP_have_precompute_mult() argument
1292 ec_group_simple_order_bits(const EC_GROUP * group) ec_group_simple_order_bits() argument
[all...]
H A Decp_smpl.c
H A Decp_oct.c
H A Decp_mont.c
H A Dec_key.c90 if ((ec_key->group = EC_GROUP_new_by_curve_name(nid)) == NULL) in EC_KEY_new_by_curve_name()
95 if (!ec_key->meth->set_group(ec_key, ec_key->group)) in EC_KEY_new_by_curve_name()
122 EC_GROUP_free(ec_key->group); in EC_KEY_free()
143 if (src->group != NULL) { in EC_KEY_copy()
144 EC_GROUP_free(dest->group); in EC_KEY_copy()
145 if ((dest->group = EC_GROUP_dup(src->group)) == NULL) in EC_KEY_copy()
150 src->group)) == NULL) in EC_KEY_copy()
246 if (eckey == NULL || eckey->group == NULL) { in ec_key_gen()
253 if ((pub_key = EC_POINT_new(eckey->group)) in ec_key_gen()
415 EC_KEY_set_group(EC_KEY * key,const EC_GROUP * group) EC_KEY_set_group() argument
[all...]
H A Dec_oct.c
/openbsd-src/regress/lib/libcrypto/ec/
H A Dectest.c91 /* test multiplication with group order, long and negative scalars */
93 group_order_tests(EC_GROUP *group, BN_CTX *ctx)
96 EC_POINT *P = EC_POINT_new(group);
97 EC_POINT *Q = EC_POINT_new(group);
110 fprintf(stdout, "verify group order ..."); in group_order_tests()
112 if (!EC_GROUP_get_order(group, order, ctx)) in group_order_tests()
114 if (!EC_POINT_mul(group, Q, order, NULL, NULL, ctx)) in group_order_tests()
116 if (!EC_POINT_is_at_infinity(group, Q)) in group_order_tests()
120 if (!EC_POINT_mul(group, Q, order, NULL, NULL, ctx)) in group_order_tests()
122 if (!EC_POINT_is_at_infinity(group, in group_order_tests()
100 group_order_tests(EC_GROUP * group) group_order_tests() argument
172 EC_GROUP *group; prime_field_tests() local
728 EC_GROUP *group = NULL; internal_curve_test() local
[all...]
/openbsd-src/regress/sbin/slaacd/
H A DSlaacctl.py69 ifname = re.match(r"^(\w+):", line).group(1)
77 self.index = m.group(1)
78 self.running = m.group(2)
79 self.temporary = m.group(3)
83 line).group(1)
87 line).group(1)
99 ra['from'] = is_ra.group(1)
107 ra['received'] = m.group(1)
108 ra['ago'] = m.group(2)
114 ra['cur_hop_limit'] = m.group(
[all...]
/openbsd-src/usr.sbin/relayd/
H A Dcarp.c35 char *group; member
43 struct carpgroup *carp_group_find(char *group);
47 carp_group_find(char *group) in carp_group_find() argument
52 if (!strcmp(c->group, group)) in carp_group_find()
59 carp_demote_init(char *group, int force) in carp_demote_init() argument
64 if ((c = carp_group_find(group)) == NULL) { in carp_demote_init()
69 if ((c->group = strdup(group)) == NULL) { in carp_demote_init()
76 if ((level = carp_demote_get(group)) == -1) { in carp_demote_init()
77 free(c->group); in carp_demote_init()
98 carp_demote_ioctl(c->group, -c->changed_by); in carp_demote_shutdown()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dreggroups.c43 struct reggroup *group = XMALLOC (struct reggroup); in reggroup_new() local
44 group->name = name; in reggroup_new()
45 group->type = type; in reggroup_new()
46 return group; in reggroup_new()
52 reggroup_name (struct reggroup *group) in reggroup_name() argument
54 return group->name; in reggroup_name()
58 reggroup_type (struct reggroup *group) in reggroup_type() argument
60 return group->type; in reggroup_type()
67 struct reggroup *group; member
92 add_group (struct reggroups *groups, struct reggroup *group, in add_group() argument
[all …]
/openbsd-src/usr.sbin/ospf6d/
H A Dcarp.c34 char *group; member
42 struct carpgroup *carp_group_find(char *group);
46 carp_group_find(char *group) in carp_group_find() argument
51 if (!strcmp(c->group, group)) in carp_group_find()
58 carp_demote_init(char *group, int force) in carp_demote_init() argument
63 if ((c = carp_group_find(group)) == NULL) { in carp_demote_init()
68 if ((c->group = strdup(group)) == NULL) { in carp_demote_init()
75 if ((level = carp_demote_get(group)) == -1) { in carp_demote_init()
76 free(c->group); in carp_demote_init()
97 carp_demote_ioctl(c->group, -c->changed_by); in carp_demote_shutdown()
[all …]
/openbsd-src/usr.sbin/ospfd/
H A Dcarp.c34 char *group; member
42 struct carpgroup *carp_group_find(char *group);
46 carp_group_find(char *group) in carp_group_find() argument
51 if (!strcmp(c->group, group)) in carp_group_find()
58 carp_demote_init(char *group, int force) in carp_demote_init() argument
63 if ((c = carp_group_find(group)) == NULL) { in carp_demote_init()
68 if ((c->group = strdup(group)) == NULL) { in carp_demote_init()
75 if ((level = carp_demote_get(group)) == -1) { in carp_demote_init()
76 free(c->group); in carp_demote_init()
97 carp_demote_ioctl(c->group, -c->changed_by); in carp_demote_shutdown()
[all …]
/openbsd-src/usr.sbin/bgpd/
H A Dcarp.c35 char *group; member
43 struct carpgroup *carp_group_find(char *group);
47 carp_group_find(char *group) in carp_group_find() argument
52 if (!strcmp(c->group, group)) in carp_group_find()
59 carp_demote_init(char *group, int force) in carp_demote_init() argument
64 if ((c = carp_group_find(group)) == NULL) { in carp_demote_init()
69 if ((c->group = strdup(group)) == NULL) { in carp_demote_init()
76 if ((level = carp_demote_get(group)) == -1) { in carp_demote_init()
77 free(c->group); in carp_demote_init()
98 carp_demote_ioctl(c->group, -c->changed_by); in carp_demote_shutdown()
[all …]
/openbsd-src/usr.sbin/ripd/
H A Dcarp.c34 char *group; member
42 struct carpgroup *carp_group_find(char *group);
46 carp_group_find(char *group) in carp_group_find() argument
51 if (!strcmp(c->group, group)) in carp_group_find()
58 carp_demote_init(char *group, int force) in carp_demote_init() argument
63 if ((c = carp_group_find(group)) == NULL) { in carp_demote_init()
68 if ((c->group = strdup(group)) == NULL) { in carp_demote_init()
75 if ((level = carp_demote_get(group)) == -1) { in carp_demote_init()
76 free(c->group); in carp_demote_init()
97 carp_demote_ioctl(c->group, -c->changed_by); in carp_demote_shutdown()
[all …]
/openbsd-src/usr.sbin/dhcpd/
H A Dconfpars.c192 parse_statement(FILE *cfile, struct group *group, int type, in parse_statement() argument
206 parse_host_declaration(cfile, group); in parse_statement()
215 parse_group_declaration(cfile, group); in parse_statement()
235 parse_shared_net_declaration(cfile, group); in parse_statement()
246 if (group->shared_network) { in parse_statement()
248 group->shared_network); in parse_statement()
260 share->group = clone_group(group, "parse_statement:subnet"); in parse_statement()
261 share->group->shared_network = share; in parse_statement()
280 share->group->authoritative = in parse_statement()
281 share->subnets->group->authoritative; in parse_statement()
[all …]
H A Dbootp.c116 if (host && (!host->group->allow_booting)) { in bootp()
124 if (host && (!host->group->allow_bootp)) { in bootp()
136 if (!host && !(s->group->boot_unknown_clients)) { in bootp()
150 if (!host && !(s->group->allow_bootp)) { in bootp()
165 if (!(s->group->dynamic_bootp)) { in bootp()
222 if (hp && (!hp->group->allow_booting)) { in bootp()
228 if (hp && (!hp->group->allow_bootp)) { in bootp()
242 if (!packet->options_valid && !subnet->group->always_reply_rfc1048 && in bootp()
243 (!hp || !hp->group->always_reply_rfc1048)) { in bootp()
256 memcpy(options, subnet->group->options, sizeof(options)); in bootp()
[all …]
/openbsd-src/sys/dev/acpi/
H A Dpchgpio.c604 const struct pchgpio_group *group; in pchgpio_intr_establish()
609 group = pchgpio_find_group(sc, pin); in pchgpio_intr_establish()
610 bar = group->bar; in pchgpio_intr_establish()
611 pad = group->base + (pin - group->gpiobase) - sc->sc_padbase[bar]; in pchgpio_intr_establish()
623 const struct pchgpio_group *group;
628 group = pchgpio_find_group(sc, pin); in pchgpio_intr_enable()
629 bar = group->bar; in pchgpio_intr_enable()
630 pad = group->base + (pin - group in pchgpio_intr_enable()
543 const struct pchgpio_group *group; pchgpio_read_pin() local
562 const struct pchgpio_group *group; pchgpio_write_pin() local
586 const struct pchgpio_group *group; pchgpio_intr_establish() local
627 const struct pchgpio_group *group; pchgpio_intr_enable() local
653 const struct pchgpio_group *group; pchgpio_intr_disable() local
676 pchgpio_intr_handle(struct pchgpio_softc * sc,int group,int bit) pchgpio_intr_handle() argument
707 int group, bit, handled = 0; pchgpio_intr() local
739 const struct pchgpio_group *group; pchgpio_save_pin() local
776 const struct pchgpio_group *group; pchgpio_restore_pin() local
[all...]
/openbsd-src/sys/dev/pci/drm/i915/gt/
H A Dintel_gt_mcr.c247 int group, int instance, u32 value) in rw_with_mcr_steering_fw() argument
263 REG_FIELD_PREP(MTL_MCR_GROUPID, group) | in rw_with_mcr_steering_fw()
268 mcr_ss = GEN11_MCR_SLICE(group) | GEN11_MCR_SUBSLICE(instance); in rw_with_mcr_steering_fw()
293 mcr_ss = GEN8_MCR_SLICE(group) | GEN8_MCR_SUBSLICE(instance); in rw_with_mcr_steering_fw()
324 int group, int instance, in rw_with_mcr_steering() argument
342 val = rw_with_mcr_steering_fw(gt, reg, rw_flag, group, instance, value); in rw_with_mcr_steering()
455 int group, int instance) in intel_gt_mcr_read() argument
457 return rw_with_mcr_steering(gt, reg, FW_REG_READ, group, instance, 0); in intel_gt_mcr_read()
474 int group, int instance) in intel_gt_mcr_unicast_write() argument
476 rw_with_mcr_steering(gt, reg, FW_REG_WRITE, group, instance, value); in intel_gt_mcr_unicast_write()
[all …]

12345678910>>...48