Home
last modified time | relevance | path

Searched refs:role (Results 1 – 25 of 395) sorted by relevance

12345678910>>...16

/freebsd/contrib/netbsd-tests/ipf/regress/
H A Dip13 table role = ipf type = tree number = 1
5 table role = ipf type = tree number = 100
7 table role = nat type = tree number = 110
9 table role = auth type = tree number = 120
11 table role = count type = tree number = 130
14 table role = ipf type = hash number = 2
16 table role = ipf type = hash number = 200
18 table role = nat type = hash number = 210
20 table role = auth type = hash number = 220
22 table role = count type = hash number = 230
[all …]
H A Dp3.pool1 group-map in role = ipf number = 1010
3 group-map out role = ipf number = 2010 group = 2020
/freebsd/contrib/netbsd-tests/ipf/expected/
H A Dip11 table role=ipf type=tree number=1
3 table role=ipf type=tree number=100
5 table role=nat type=tree number=110
7 table role=auth type=tree number=120
9 table role=count type=tree number=130
11 table role=ipf type=hash number=2 size=1
13 table role=ipf type=hash number=200 size=5
15 table role=nat type=hash number=210 size=5
17 table role=auth type=hash number=220 size=5
19 table role=count type=hash number=230 size=5
[all …]
H A Dip37 table role=nat type=hash name=noproxy size=3
9 table role=nat type=tree name=raw
13 table role=all type=hash name=noproxy size=3
/freebsd/sbin/ipf/ippool/
H A Dippool.c131 int err = 0, c, ipset, role, type = IPLT_POOL, ttl = 0; in poolnodecommand() local
138 role = IPL_LOGIPF; in poolnodecommand()
150 if (setnodeaddr(type, role, ptr, optarg) == 0) in poolnodecommand()
165 role = getrole(optarg); in poolnodecommand()
166 if (role == IPL_LOGNONE) in poolnodecommand()
211 if (setnodeaddr(type, role, ptr, argv[optind]) == 0) in poolnodecommand()
231 err = load_poolnode(role, poolname, &pnode, ttl, ioctl); in poolnodecommand()
233 err = remove_poolnode(role, poolname, &pnode, ioctl); in poolnodecommand()
237 err = load_hashnode(role, poolname, &hnode, ttl, ioctl); in poolnodecommand()
239 err = remove_hashnode(role, poolname, &hnode, ioctl); in poolnodecommand()
[all …]
/freebsd/sys/contrib/ck/src/
H A Dck_barrier_tournament.c72 rounds[i][0].role = CK_BARRIER_TOURNAMENT_DROPOUT; in ck_barrier_tournament_init()
79 rounds[i][k].role = CK_BARRIER_TOURNAMENT_WINNER; in ck_barrier_tournament_init()
81 rounds[i][k].role = CK_BARRIER_TOURNAMENT_BYE; in ck_barrier_tournament_init()
85 rounds[i][k].role = CK_BARRIER_TOURNAMENT_LOSER; in ck_barrier_tournament_init()
87 rounds[i][k].role = CK_BARRIER_TOURNAMENT_CHAMPION; in ck_barrier_tournament_init()
89 if (rounds[i][k].role == CK_BARRIER_TOURNAMENT_LOSER) in ck_barrier_tournament_init()
91 else if (rounds[i][k].role == CK_BARRIER_TOURNAMENT_WINNER || in ck_barrier_tournament_init()
92 rounds[i][k].role == CK_BARRIER_TOURNAMENT_CHAMPION) in ck_barrier_tournament_init()
119 switch (rounds[state->vpid][round].role) { in ck_barrier_tournament()
158 switch (rounds[state->vpid][round].role) { in ck_barrier_tournament()
/freebsd/crypto/openssl/ssl/statem/
H A Dextensions_cust.c82 ENDPOINT role, unsigned int ext_type, in custom_ext_find() argument
90 && (role == ENDPOINT_BOTH || role == meth->role in custom_ext_find()
91 || meth->role == ENDPOINT_BOTH)) { in custom_ext_find()
121 ENDPOINT role = ENDPOINT_BOTH; in custom_ext_parse() local
124 role = s->server ? ENDPOINT_SERVER : ENDPOINT_CLIENT; in custom_ext_parse()
126 meth = custom_ext_find(exts, role, ext_type, NULL); in custom_ext_parse()
263 custom_ext_method *methdst = custom_ext_find(dst, methsrc->role, in custom_exts_copy_flags()
402 ENDPOINT role, unsigned int ext_type, in ossl_tls_add_custom_ext_intern() argument
447 if (custom_ext_find(exts, role, ext_type, NULL)) in ossl_tls_add_custom_ext_intern()
457 meth->role = role; in ossl_tls_add_custom_ext_intern()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/net/dsa/
H A Dsja1105.txt24 - sja1105,role-mac:
25 - sja1105,role-phy:
37 1. If sja1105,role-mac is specified, and the phy-mode property is one
41 2. If sja1105,role-phy is specified, and the phy-mode property is one
51 to have sja1105,role-mac, while the other sja1105,role-phy.
90 /* Implicit "sja1105,role-mac;" */
98 /* Implicit "sja1105,role-mac;" */
106 /* Implicit "sja1105,role-mac;" */
114 /* Implicit "sja1105,role-mac;" */
121 /* Implicit "sja1105,role-phy;" */
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dsc7280-idp-ec-h1.dtsi45 power-role = "dual";
46 data-role = "host";
47 try-power-role = "source";
54 power-role = "dual";
55 data-role = "host";
56 try-power-role = "source";
/freebsd/crypto/libecc/src/examples/basic/
H A Dcurve_ecdh.c81 ATTRIBUTE_WARN_UNUSED_RET int ECDH_helper(const u8 *curve_name, const u8 *role);
82 int ECDH_helper(const u8 *curve_name, const u8 *role) in ECDH_helper() argument
107 MUST_HAVE((curve_name != NULL) && (role != NULL), ret, err); in ECDH_helper()
110 ret = are_equal(role, Alice, CHECK_SIZE, &check1); EG(ret, err); in ECDH_helper()
111 ret = are_equal(role, Bob, CHECK_SIZE, &check2); EG(ret, err); in ECDH_helper()
129 ext_printf(" Error: unknown role %s for ECDH\n", role); in ECDH_helper()
209 ext_printf(" ECDH shared secret computed by %s:\n", role); in ECDH_helper()
/freebsd/sys/contrib/dev/rtw89/
H A Dchan.c444 struct rtw89_vif *role; in rtw89_entity_recalc_mgnt_roles() local
463 list_for_each_entry(role, &mgnt->active_list, mgnt_entry) { in rtw89_entity_recalc_mgnt_roles()
464 for (i = 0; i < role->links_inst_valid_num; i++) { in rtw89_entity_recalc_mgnt_roles()
465 link = rtw89_vif_get_link_inst(role, i); in rtw89_entity_recalc_mgnt_roles()
472 list_del(&role->mgnt_entry); in rtw89_entity_recalc_mgnt_roles()
473 list_add(&role->mgnt_entry, &mgnt->active_list); in rtw89_entity_recalc_mgnt_roles()
480 list_for_each_entry(role, &mgnt->active_list, mgnt_entry) { in rtw89_entity_recalc_mgnt_roles()
488 for (i = 0; i < role->links_inst_valid_num; i++) { in rtw89_entity_recalc_mgnt_roles()
489 link = rtw89_vif_get_link_inst(role, i); in rtw89_entity_recalc_mgnt_roles()
497 mgnt->active_roles[pos++] = role; in rtw89_entity_recalc_mgnt_roles()
[all …]
/freebsd/contrib/ntp/sntp/unity/auto/
H A Dcolour_prompt.rb92 def colour_puts(role,str) ColourCommandLine.new.out_c(:puts, role, str) end argument
93 def colour_print(role,str) ColourCommandLine.new.out_c(:print, role, str) end argument
/freebsd/contrib/libxo/doc/
H A Dfield-roles.rst8 Field roles are optional, and indicate the role and formatting of the
9 content. The roles are listed below; only one role is permitted:
35 When a role is not provided, the "*value*" role is used as the default.
46 .. _color-role:
56 Colors and effects remain in effect until modified by other "C"-role
126 .. _decoration-role:
139 .. _gettext-role:
145 gettext(3). Use the "{G:}" role to request that the remaining part of
162 The {G:} role allows a domain name to be set. gettext calls will
174 .. _label-role:
[all …]
/freebsd/usr.sbin/bluetooth/hccontrol/
H A Dlink_policy.c79 (rp.role == NG_HCI_ROLE_MASTER)? "Master" : "Slave", rp.role); in hci_role_discovery()
110 cp.role = n0? NG_HCI_ROLE_SLAVE : NG_HCI_ROLE_MASTER; in hci_switch_role()
148 (ep->role == NG_HCI_ROLE_MASTER)? "Master" : "Slave", in hci_switch_role()
149 ep->role); in hci_switch_role()
/freebsd/sys/contrib/device-tree/Bindings/usb/
H A Dmediatek,mtu3.txt30 when supports dual-role mode.
32 new bindings, and use "usb-role-switch" property instead.
34 dual-role mode.
47 - usb-role-switch : use USB Role Switch to support dual-role switch, but
49 - enable-manual-drd : supports manual dual-role switch via debugfs; usually
50 used when receptacle is TYPE-A and also wants to support dual-role
71 The port would be added as subnode if use "usb-role-switch" property.
H A Dmediatek,musb.txt31 dual-role mode
32 - usb-role-switch : use USB Role Switch to support dual-role switch, see
50 usb-role-switch;
H A Dgeneric.txt34 - usb-role-switch: boolean, indicates that the device is capable of assigning
35 the USB data role (USB host or USB device) for a given
38 - role-switch-default-mode: indicating if usb-role-switch is enabled, the
40 role is USB_ROLE_NONE. Valid arguments are "host" and
H A Dfsl-usb.txt10 controllers, or "fsl-usb2-dr" for dual role USB controllers
11 or "fsl,mpc5121-usb2-dr" for dual role USB controllers of MPC5121.
15 "ulpi", or "serial". For dual role USB controllers, should be
56 Example dual role USB controller device node :
68 Example dual role USB controller device node for MPC5121ADS:
H A Drichtek,rt1711h.txt24 data-role = "dual";
25 power-role = "dual";
26 try-power-role = "sink";
H A Dtypec-tcpci.txt29 data-role = "dual";
30 power-role = "dual";
31 try-power-role = "sink";
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dimx93-9x9-qsb-i3c.dtso36 power-role = "dual";
37 data-role = "dual";
38 try-power-role = "sink";
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DSyntax.td15 // The type of child in each role is also constrained.
67 string role = role_;
73 // Each child is characterized by a role (unique within the sequence), and
75 // The role sequence and role/type match are enforced invariants of the class.
81 // Children must be Role or have a default role derived from the NodeType.
/freebsd/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-facebook-bletchley.dts397 power-role = "dual";
398 try-power-role = "sink";
399 data-role = "dual";
486 power-role = "dual";
487 try-power-role = "sink";
488 data-role = "dual";
575 power-role = "dual";
576 try-power-role = "sink";
577 data-role = "dual";
664 power-role = "dual";
[all …]
/freebsd/sys/dev/netmap/
H A Dnetmap_pipe.c141 na->role == NM_PIPE_ROLE_MASTER ? '{' : '}'); in netmap_pipe_find()
644 if (pna->role == NM_PIPE_ROLE_MASTER) in netmap_pipe_dtor()
661 int role = 0; in netmap_get_pipe_na() local
668 role = NM_PIPE_ROLE_MASTER; in netmap_get_pipe_na()
672 role = NM_PIPE_ROLE_SLAVE; in netmap_get_pipe_na()
733 if (mna->role == role) { in netmap_get_pipe_na()
762 mna->role = NM_PIPE_ROLE_MASTER; in netmap_get_pipe_na()
811 sna->role = NM_PIPE_ROLE_SLAVE; in netmap_get_pipe_na()
828 if (role == NM_PIPE_ROLE_MASTER) { in netmap_get_pipe_na()
841 (reqna->role == NM_PIPE_ROLE_MASTER ? "master" : "slave"), reqna); in netmap_get_pipe_na()
/freebsd/sys/contrib/dev/rtw88/
H A Dbf.c17 if (bfee->role == RTW_BFEE_NONE) in rtw_bf_disassoc()
20 if (bfee->role == RTW_BFEE_MU) in rtw_bf_disassoc()
22 else if (bfee->role == RTW_BFEE_SU) in rtw_bf_disassoc()
27 bfee->role = RTW_BFEE_NONE; in rtw_bf_disassoc()
77 bfee->role = RTW_BFEE_MU; in rtw_bf_assoc()
95 bfee->role = RTW_BFEE_SU; in rtw_bf_assoc()
330 if (bfee->role != RTW_BFEE_MU) { in rtw_bf_set_gid_table()

12345678910>>...16