Home
last modified time | relevance | path

Searched refs:action (Results 1 – 25 of 913) sorted by relevance

12345678910>>...37

/freebsd-14.2/usr.sbin/pwm/
H A Dpwm.c78 int action, ch; in main() local
84 action = 0; in main()
94 action |= PWM_ENABLE; in main()
99 action |= PWM_DISABLE; in main()
102 if (action) in main()
109 action |= PWM_INVERTED; in main()
114 action |= PWM_PERIOD; in main()
120 action |= PWM_DUTY; in main()
141 if (action == 0) in main()
185 if (action & PWM_ENABLE) in main()
[all …]
/freebsd-14.2/contrib/expat/xmlwf/
H A Dxmlwf_helpgen.py59 input_related.add_argument('-s', action='store_true', help='print an error if the document is not […
60 input_related.add_argument('-n', action='store_true', help='enable [n]amespace processing')
62 input_related.add_argument('-x', action='store_true', help='enable processing of e[x]ternal entitie…
64 input_related.add_argument('-w', action='store_true', help='enable support for [W]indows code pages…
70 output_related.add_argument('-d', action='store', metavar='DIRECTORY', help='output [d]estination d…
72 output_mode.add_argument('-c', action='store_true', help='write a [c]opy of input XML, not canonica…
73 output_mode.add_argument('-m', action='store_true', help='write [m]eta XML, not canonical XML')
74 output_mode.add_argument('-t', action='store_true', help='write no XML output for [t]iming of plain…
75 output_related.add_argument('-N', action='store_true', help='enable adding doctype and [n]otation d…
93 info.add_argument('-h', '--help', action='store_true', help='show this [h]elp message and exit')
[all …]
/freebsd-14.2/sbin/devd/
H A Ddevd.conf43 action "/etc/pccard_ether $subsystem start";
52 action "/etc/pccard_ether $device-name startchildren";
56 action "/etc/pccard_ether $device-name stopchildren";
65 action "ifconfig $device-name inet 1.2.3.4 netmask 0xffff0000";
89 action "logger Unknown USB device: vendor $vendor product $product \
116 action "/etc/rc.suspend acpi $notify";
121 action "/etc/rc.resume acpi $notify";
151 action "/etc/acpi_ac $notify";
159 action "service postgresql restart";
171 action "logger $comm $core";
[all …]
H A Dzfs.conf7action "logger -p local7.warn -t ZFS checksum mismatch, zpool=$pool path=$vdev_path offset=$zio_of…
19 action "logger -p local7.warn -t ZFS pool I/O failure, zpool=$pool error=$zio_err";
25 action "logger -p local7.err -t ZFS failed to load zpool $pool";
31 action "logger -p local7.err -t ZFS vdev problem, zpool=$pool path=$vdev_path type=$type";
37 action "logger -p local7.alert -t ZFS catastrophic pool I/O failure, zpool=$pool";
43 action "logger -p local7.err -t ZFS vdev probe failure, zpool=$pool path=$vdev_path";
49 action "logger -p local7.err -t ZFS pool log replay failure, zpool=$pool";
55 action "logger -p local7.warn -t ZFS failed to write zpool.cache, zpool=$pool";
62 action "logger -p local7.notice -t ZFS vdev is removed, pool_guid=$pool_guid vdev_guid=$vdev_guid";
68action "logger -p local7.info -t ZFS autoreplace is configured for vdev, pool_guid=$pool_guid vdev…
[all …]
H A Duath.conf12 action "/usr/sbin/uathload -d /dev/$cdev";
23 action "/usr/sbin/uathload -d /dev/$cdev";
34 action "/usr/sbin/uathload -d /dev/$cdev";
45 action "/usr/sbin/uathload -d /dev/$cdev";
56 action "/usr/sbin/uathload -d /dev/$cdev";
67 action "/usr/sbin/uathload -d /dev/$cdev";
78 action "/usr/sbin/uathload -d /dev/$cdev";
89 action "/usr/sbin/uathload -d /dev/$cdev";
100 action "/usr/sbin/uathload -d /dev/$cdev";
111 action "/usr/sbin/uathload -d /dev/$cdev";
[all …]
H A Dapple.conf8 action "shutdown -p now";
17 action "shutdown -p now";
27 action "sysctl dev.backlight.0.level=\
36 action "sysctl dev.backlight.0.level=\
46 action "mixer vol.mute=^";
54 action "mixer vol.volume=-10%";
62 action "mixer vol.volume=+10%";
70 action "camcontrol eject cd0";
78 action "service power_profile $notify";
H A Dasus.conf9 action "mixer vol.volume=0";
16 action "mixer vol.volume=-10%";
23 action "mixer vol.volume=+10%";
31 action "mixer vol.volume=0";
38 action "mixer vol.volume=-10%";
45 action "mixer vol.volume=+10%";
H A Dhyperv.conf9 action "/usr/sbin/hv_kvp_daemon";
17 action "pkill -x hv_kvp_daemon";
25 action "/usr/sbin/hv_vss_daemon";
33 action "pkill -x hv_vss_daemon";
100 action "/usr/libexec/hyperv/hyperv_vfup $subsystem";
106 action "/usr/libexec/hyperv/hyperv_vfattach $subsystem 0";
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandOptionsProcessLaunch.cpp48 FileAction action; in SetOptionValue() local
50 launch_info.AppendFileAction(action); in SetOptionValue()
56 FileAction action; in SetOptionValue() local
58 launch_info.AppendFileAction(action); in SetOptionValue()
64 FileAction action; in SetOptionValue() local
66 launch_info.AppendFileAction(action); in SetOptionValue()
76 FileAction action; in SetOptionValue() local
78 if (action.Open(STDIN_FILENO, dev_null, true, false)) in SetOptionValue()
79 launch_info.AppendFileAction(action); in SetOptionValue()
81 launch_info.AppendFileAction(action); in SetOptionValue()
[all …]
/freebsd-14.2/lib/libc/stdlib/
H A Dtwalk.c26 trecurse(const posix_tnode *root, cmp_fn_t action, int level) in trecurse() argument
30 (*action)(root, leaf, level); in trecurse()
32 (*action)(root, preorder, level); in trecurse()
34 trecurse(root->llink, action, level + 1); in trecurse()
35 (*action)(root, postorder, level); in trecurse()
37 trecurse(root->rlink, action, level + 1); in trecurse()
38 (*action)(root, endorder, level); in trecurse()
44 twalk(const posix_tnode *vroot, cmp_fn_t action) in twalk() argument
46 if (vroot != NULL && action != NULL) in twalk()
47 trecurse(vroot, action, 0); in twalk()
/freebsd-14.2/tests/sys/cddl/zfs/tests/cli_root/zpool_import/
H A Dzpool_import_missing_002_pos.ksh88 typeset action
92 typeset action=$1; shift
94 log_note "try_import action=$action poolish=$poolish opts='$1'"
96 $action $ZPOOL import -d $DEVICE_DIR $poolish
98 $action $ZPOOL import -d $DEVICE_DIR $1 $poolish
100 [ "$action" = "log_mustnot" ] && return
123 action=log_mustnot
126 action=log_must
129 action=log_must
134 try_import $action $TESTPOOL1 "$opts"
[all …]
H A Dzpool_import_missing_001_pos.ksh86 typeset action=$1
91 $action $ZPOOL import -d $DEVICE_DIR ${import_opts} $target
92 [[ $action == "log_mustnot" ]] && return
143 action=log_must
146 action=log_mustnot
149 action=log_mustnot
151 '') action=log_mustnot
156 perform_inner_test $action "${opts}" $TESTPOOL1
159 perform_inner_test $action "${opts}" $guid
/freebsd-14.2/contrib/byacc/
H A Dmkpar.c16 static action *add_reduce(action *actions, int ruleno, int symbol);
17 static action *add_reductions(int stateno, action *actions);
28 action **parser;
63 static action *
66 action *actions; in parse_actions()
73 static action *
108 static action *
131 static action *
196 action *p; in unused_rules()
349 action *p; in sole_reduction()
[all …]
/freebsd-14.2/sys/contrib/dev/iwlwifi/mvm/
H A Dmld-mac.c20 u32 action) in iwl_mvm_mld_mac_ctxt_cmd_common() argument
27 cmd->action = cpu_to_le32(action); in iwl_mvm_mld_mac_ctxt_cmd_common()
90 le32_to_cpu(cmd->action), ret); in iwl_mvm_mld_mac_ctxt_send_cmd()
96 u32 action, bool force_assoc_off) in iwl_mvm_mld_mac_ctxt_cmd_sta() argument
161 u32 action) in iwl_mvm_mld_mac_ctxt_cmd_listener() argument
180 u32 action) in iwl_mvm_mld_mac_ctxt_cmd_ibss() argument
197 u32 action) in iwl_mvm_mld_mac_ctxt_cmd_p2p_device() argument
216 u32 action) in iwl_mvm_mld_mac_ctxt_cmd_ap_go() argument
236 u32 action, bool force_assoc_off) in iwl_mvm_mld_mac_ctx_send() argument
240 return iwl_mvm_mld_mac_ctxt_cmd_sta(mvm, vif, action, in iwl_mvm_mld_mac_ctx_send()
[all …]
/freebsd-14.2/contrib/unbound/respip/
H A Drespip.c116 node->action = respip_none; in respip_sockaddr_find_or_create()
185 enum respip_action action; in respip_action_cfg() local
217 node->action = action; in respip_action_cfg()
759 if(action == respip_refuse || action == respip_always_refuse) { in respip_nodata_answer()
766 } else if(action == respip_static || action == respip_redirect || in respip_nodata_answer()
806 actinfo->action = action; in populate_action_info()
815 if(action == respip_inform || action == respip_inform_deny || in populate_action_info()
834 enum respip_action* action, in respip_use_rpz() argument
846 *action = raddr->action; in respip_use_rpz()
924 action = raddr->action; in respip_rewrite_reply()
[all …]
/freebsd-14.2/bin/sh/
H A Dtrap.c157 char *action; in trapcmd() local
187 action = NULL; in trapcmd()
192 action = *argv; in trapcmd()
203 if (action) in trapcmd()
204 action = savestr(action); in trapcmd()
259 int action; in setsignal() local
265 action = S_DFL; in setsignal()
267 action = S_CATCH; in setsignal()
269 action = S_IGN; in setsignal()
321 switch (action) { in setsignal()
[all …]
/freebsd-14.2/contrib/wpa/src/ap/
H A Dwnm_ap.c170 mgmt->u.action.u.wnm_sleep_resp.action = WNM_SLEEP_MODE_RESP; in ieee802_11_send_wnmsleep_resp()
406 mgmt->u.action.u.bss_tm_req.action = WNM_BSS_TRANS_MGMT_REQ; in ieee802_11_send_bss_trans_mgmt_request()
421 len = pos - &mgmt->u.action.category; in ieee802_11_send_bss_trans_mgmt_request()
800 u8 action; in ieee802_11_rx_wnm_action_ap() local
808 action = *payload++; in ieee802_11_rx_wnm_action_ap()
811 switch (action) { in ieee802_11_rx_wnm_action_ap()
838 action, MAC2STR(mgmt->sa)); in ieee802_11_rx_wnm_action_ap()
858 mgmt->u.action.u.bss_tm_req.action = WNM_BSS_TRANS_MGMT_REQ; in wnm_send_disassoc_imminent()
925 mgmt->u.action.u.bss_tm_req.action = WNM_BSS_TRANS_MGMT_REQ; in wnm_send_ess_disassoc_imminent()
985 mgmt->u.action.u.bss_tm_req.action = WNM_BSS_TRANS_MGMT_REQ; in wnm_send_bss_tm_req()
[all …]
/freebsd-14.2/contrib/blocklist/lib/
H A Dblacklist.c48 blacklist_sa(int action, int rfd, const struct sockaddr *sa, socklen_t salen, in blacklist_sa() argument
55 rv = blacklist_sa_r(bl, action, rfd, sa, salen, msg); in blacklist_sa()
61 blacklist_sa_r(struct blacklist *bl, int action, int rfd, in blacklist_sa_r() argument
67 switch (action) { in blacklist_sa_r()
88 blacklist(int action, int rfd, const char *msg) in blacklist() argument
90 return blacklist_sa(action, rfd, NULL, 0, msg); in blacklist()
94 blacklist_r(struct blacklist *bl, int action, int rfd, const char *msg) in blacklist_r() argument
96 return blacklist_sa_r(bl, action, rfd, NULL, 0, msg); in blacklist_r()
/freebsd-14.2/sbin/mdconfig/
H A Dmdconfig.c120 if (action != UNSET && action != ATTACH) in main()
123 action = ATTACH; in main()
126 if (action != UNSET && action != DETACH) in main()
129 action = DETACH; in main()
133 if (action != UNSET && action != RESIZE) in main()
136 action = RESIZE; in main()
140 if (action != UNSET && action != LIST) in main()
143 action = LIST; in main()
273 if (action == UNSET) in main()
274 action = ATTACH; in main()
[all …]
/freebsd-14.2/contrib/libpcap/rpcapd/
H A Drpcapd.c187 struct sigaction action; in main() local
379 memset(&action, 0, sizeof (action)); in main()
381 action.sa_flags = 0; in main()
384 memset(&action, 0, sizeof (action)); in main()
386 action.sa_flags = 0; in main()
500 memset(&action, 0, sizeof (action)); in main()
502 action.sa_flags = 0; in main()
534 memset(&action, 0, sizeof (action)); in main()
536 action.sa_flags = 0; in main()
542 memset(&action, 0, sizeof (action)); in main()
[all …]
/freebsd-14.2/sbin/ccdconfig/
H A Dccdconfig.c98 action = CCD_CONFIG; in main()
103 action = CCD_CONFIGALL; in main()
112 action = CCD_DUMP; in main()
116 action = CCD_UNCONFIG; in main()
121 action = CCD_UNCONFIGALL; in main()
145 switch (action) { in main()
153 exit(do_all(action)); in main()
177 if (action == CCD_UNCONFIG || action == CCD_UNCONFIGALL) { in do_single()
211 if (action == CCD_CONFIGALL) { in do_single()
282 do_all(int action) in do_all() argument
[all …]
/freebsd-14.2/share/examples/jails/
H A Djib146 local action usage descr
150 for action in \
156 eval usage=\"\$jib_${action}_usage\"
158 eval descr=\"\$jib_${action}_descr\"
167 eval usage=\"\$jib_${action}_usage\"
169 eval descr=\"\$jib_${action}_descr\"
396 action="$1"
397 [ "$action" ] || usage # NOTREACHED
403 type="$( type -t "jib_$action" )" || usage # NOTREACHED
405 type="$( type "jib_$action" 2> /dev/null )" || usage # NOTREACHED
[all …]
/freebsd-14.2/stand/libsa/
H A Dpager.c81 int action; in pager_output() local
96 action = 0; in pager_output()
97 while (action == 0) { in pager_output()
102 action = 1; in pager_output()
106 action = 1; in pager_output()
110 action = 2; in pager_output()
117 if (action == 2) in pager_output()
/freebsd-14.2/crypto/heimdal/lib/roken/
H A Dtsearch.c77 trecurse(const node_t *root, void (*action)(const void *, VISIT, int), in trecurse()
82 (*action)(root, leaf, level); in trecurse()
84 (*action)(root, preorder, level); in trecurse()
86 trecurse(root->llink, action, level + 1); in trecurse()
87 (*action)(root, postorder, level); in trecurse()
89 trecurse(root->rlink, action, level + 1); in trecurse()
90 (*action)(root, endorder, level); in trecurse()
102 void (*action)(const void *, VISIT, int)) in rk_twalk()
104 if (vroot != NULL && action != NULL) in rk_twalk()
105 trecurse(vroot, action, 0); in rk_twalk()
/freebsd-14.2/sbin/ggate/ggatec/
H A Dggatec.c410 if (action == CREATE) in mydaemon()
551 action = CREATE; in main()
553 action = DESTROY; in main()
555 action = LIST; in main()
557 action = RESCUE; in main()
575 if (action != CREATE && action != RESCUE) in main()
580 if (action != CREATE && action != RESCUE) in main()
594 if (action != CREATE && action != RESCUE) in main()
610 if (action != CREATE && action != RESCUE) in main()
618 if (action != CREATE && action != RESCUE) in main()
[all …]

12345678910>>...37