Home
last modified time | relevance | path

Searched refs:demote_group (Results 1 – 9 of 9) sorted by relevance

/dports/devel/cpputest/cpputest-4.0/scripts/convertToUnity/
H A Dcpp_u_test_to_unity_utils_tests.rb85 demote_group(/TEST_GROUP/, test_lines)
117 demote_group(/TEST_GROUP/, test_lines)
148 demote_group(/TEST_GROUP/, test_lines)
H A Dcpp_u_test_to_unity.rb18 demote_group(/TEST_GROUP/, test_lines)
H A Dcpp_u_test_to_unity_utils.rb109 def demote_group(group, lines) method
/dports/net/openbgpd6/openbgpd-6.9p0/src/bgpd/
H A Dsession.c274 p->conf.demote_group[0] = 0; in session_main()
588 if (p->reconf_action != RECONF_REINIT && p->conf.demote_group[0]) in init_peer()
863 peer->conf.demote_group[0] && !peer->demoted) in change_state()
3236 strlcpy(msg.demote_group, p->conf.demote_group, in session_demote()
3237 sizeof(msg.demote_group)); in session_demote()
3312 if (p->demoted && !p->conf.demote_group[0]) in merge_peers()
H A Dbgpd.h387 char demote_group[IFNAMSIZ]; member
581 char demote_group[IFNAMSIZ]; member
H A Dprintconf.c679 if (p->demote_group[0]) in print_peer()
680 printf("%s\tdemote %s\n", c, p->demote_group); in print_peer()
H A Dparse.y1704 if (strlcpy(curpeer->conf.demote_group, $2,
1705 sizeof(curpeer->conf.demote_group)) >=
1706 sizeof(curpeer->conf.demote_group)) {
1709 sizeof(curpeer->conf.demote_group) - 1);
1714 if (carp_demote_init(curpeer->conf.demote_group,
1717 curpeer->conf.demote_group);
H A Dparse.c4032 if (strlcpy(curpeer->conf.demote_group, (yyvsp[0].v.string), in yyparse()
4033 sizeof(curpeer->conf.demote_group)) >= in yyparse()
4034 sizeof(curpeer->conf.demote_group)) { in yyparse()
4037 sizeof(curpeer->conf.demote_group) - 1); in yyparse()
4042 if (carp_demote_init(curpeer->conf.demote_group, in yyparse()
4045 curpeer->conf.demote_group); in yyparse()
H A Dbgpd.c912 carp_demote_set(msg->demote_group, msg->level); in dispatch_imsg()