Home
last modified time | relevance | path

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

12345678910>>...29

/NextBSD/etc/devd/
HDusb.conf13 action "kldload -n uipaq";
21 action "kldload -n uep";
29 action "kldload -n if_kue";
37 action "kldload -n uftdi";
45 action "kldload -n ugensa";
53 action "kldload -n uipaq";
61 action "kldload -n u3g";
69 action "kldload -n uipaq";
77 action "kldload -n u3g";
85 action "kldload -n uipaq";
[all …]
HDuath.conf13 action "/usr/sbin/uathload -d /dev/$cdev";
24 action "/usr/sbin/uathload -d /dev/$cdev";
35 action "/usr/sbin/uathload -d /dev/$cdev";
46 action "/usr/sbin/uathload -d /dev/$cdev";
57 action "/usr/sbin/uathload -d /dev/$cdev";
68 action "/usr/sbin/uathload -d /dev/$cdev";
79 action "/usr/sbin/uathload -d /dev/$cdev";
90 action "/usr/sbin/uathload -d /dev/$cdev";
101 action "/usr/sbin/uathload -d /dev/$cdev";
112 action "/usr/sbin/uathload -d /dev/$cdev";
[all …]
HDzfs.conf8action "logger -p kern.warn -t ZFS 'checksum mismatch, zpool=$pool path=$vdev_path offset=$zio_off…
14action "logger -p kern.warn -t ZFS 'vdev I/O failure, zpool=$pool path=$vdev_path offset=$zio_offs…
20 action "logger -p kern.warn -t ZFS 'pool I/O failure, zpool=$pool error=$zio_err'";
26 action "logger -p kern.err -t ZFS 'failed to load zpool $pool'";
32 action "logger -p kern.err -t ZFS 'vdev problem, zpool=$pool path=$vdev_path type=$type'";
38 action "logger -p kern.alert -t ZFS 'catastrophic pool I/O failure, zpool=$pool'";
44 action "logger -p kern.err -t ZFS 'vdev probe failure, zpool=$pool path=$vdev_path'";
50 action "logger -p kern.err -t ZFS 'pool log replay failure, zpool=$pool'";
56 action "logger -p kern.warn -t ZFS 'failed to write zpool.cache, zpool=$pool'";
63 action "logger -p kern.notice -t ZFS 'vdev is removed, pool_guid=$pool_guid vdev_guid=$vdev_guid'";
[all …]
HDapple.conf9 action "shutdown -p now";
18 action "shutdown -p now";
28 action "sysctl dev.backlight.0.level=\
37 action "sysctl dev.backlight.0.level=\
47 action "mixer 0";
55 action "mixer vol -10";
63 action "mixer vol +10";
71 action "camcontrol eject cd0";
79 action "/etc/rc.d/power_profile $notify";
HDasus.conf10 action "mixer 0";
17 action "mixer vol -10";
24 action "mixer vol +10";
32 action "mixer 0";
39 action "mixer vol -10";
46 action "mixer vol +10";
/NextBSD/etc/
HDdevd.conf46 action "/etc/pccard_ether $subsystem start";
59 action "/etc/rc.d/dhclient quietstart $subsystem";
68 action "/etc/pccard_ether $device-name startchildren";
72 action "/etc/pccard_ether $device-name stopchildren";
78 action "/etc/rc.d/dhclient quietstart $subsystem";
87 action "ifconfig $device-name inet 1.2.3.4 netmask 0xffff0000";
96 action "/etc/rc.d/bluetooth quietstart $device-name";
100 action "/etc/rc.d/bluetooth quietstop $device-name";
113 action "/etc/rc.d/syscons setkeyboard /dev/ukbd0";
117 action "/etc/rc.d/syscons setkeyboard /dev/kbd0";
[all …]
/NextBSD/contrib/subversion/subversion/svnmucc/
HDsvnmucc.c109 struct action { struct
110 action_code_t action; member
152 struct action *action = APR_ARRAY_IDX(actions, i, struct action *); in execute() local
158 switch (action->action) in execute()
161 path1 = subtract_anchor(anchor, action->path[0], pool); in execute()
162 path2 = subtract_anchor(anchor, action->path[1], pool); in execute()
166 path1 = subtract_anchor(anchor, action->path[0], pool); in execute()
167 path2 = subtract_anchor(anchor, action->path[1], pool); in execute()
168 SVN_ERR(svn_client__mtcc_add_copy(path1, action->rev, path2, in execute()
172 path1 = subtract_anchor(anchor, action->path[0], pool); in execute()
[all …]
/NextBSD/contrib/wpa/src/ap/
HDwnm_ap.c104 mgmt->u.action.category = WLAN_ACTION_WNM; in ieee802_11_send_wnmsleep_resp()
105 mgmt->u.action.u.wnm_sleep_resp.action = WNM_SLEEP_MODE_RESP; in ieee802_11_send_wnmsleep_resp()
106 mgmt->u.action.u.wnm_sleep_resp.dialogtoken = dialog_token; in ieee802_11_send_wnmsleep_resp()
107 pos = (u8 *)mgmt->u.action.u.wnm_sleep_resp.variable; in ieee802_11_send_wnmsleep_resp()
111 mgmt->u.action.u.wnm_sleep_resp.keydata_len = 0; in ieee802_11_send_wnmsleep_resp()
131 &mgmt->u.action.u.wnm_sleep_resp.keydata_len, in ieee802_11_send_wnmsleep_resp()
140 len = 1 + sizeof(mgmt->u.action.u.wnm_sleep_resp) + gtk_elem_len + in ieee802_11_send_wnmsleep_resp()
146 mgmt->da, &mgmt->u.action.category, len); in ieee802_11_send_wnmsleep_resp()
273 mgmt->u.action.category = WLAN_ACTION_WNM; in ieee802_11_send_bss_trans_mgmt_request()
274 mgmt->u.action.u.bss_tm_req.action = WNM_BSS_TRANS_MGMT_REQ; in ieee802_11_send_bss_trans_mgmt_request()
[all …]
/NextBSD/lib/libc/stdlib/
HDtwalk.c31 cmp_fn_t action, int level) in trecurse() argument
35 (*action)(root, leaf, level); in trecurse()
37 (*action)(root, preorder, level); in trecurse()
39 trecurse(root->llink, action, level + 1); in trecurse()
40 (*action)(root, postorder, level); in trecurse()
42 trecurse(root->rlink, action, level + 1); in trecurse()
43 (*action)(root, endorder, level); in trecurse()
49 twalk(const void *vroot, cmp_fn_t action) /* Root of the tree to be walked */ in twalk() argument
51 if (vroot != NULL && action != NULL) in twalk()
52 trecurse(vroot, action, 0); in twalk()
/NextBSD/contrib/byacc/
HDmkpar.c16 static action *add_reduce(action *actions, int ruleno, int symbol);
17 static action *add_reductions(int stateno, action *actions);
18 static action *get_shifts(int stateno);
19 static action *parse_actions(int stateno);
23 static void free_action_row(action *p);
28 action **parser;
51 parser = NEW2(nstates, action *); in make_parser()
63 static action *
66 action *actions; in parse_actions()
73 static action *
[all …]
/NextBSD/bin/sh/
HDtrap.c155 char *action; in trapcmd() local
185 action = NULL; in trapcmd()
190 action = *argv; in trapcmd()
201 if (action) in trapcmd()
202 action = savestr(action); in trapcmd()
205 trap[signo] = action; in trapcmd()
257 int action; in setsignal() local
263 action = S_DFL; in setsignal()
265 action = S_CATCH; in setsignal()
267 action = S_IGN; in setsignal()
[all …]
/NextBSD/sbin/mdconfig/
HDmdconfig.c58 static enum {UNSET, ATTACH, DETACH, RESIZE, LIST} action = UNSET; variable
116 if (action != UNSET && action != ATTACH) in main()
119 action = ATTACH; in main()
122 if (action != UNSET && action != DETACH) in main()
125 action = DETACH; in main()
129 if (action != UNSET && action != RESIZE) in main()
132 action = RESIZE; in main()
136 if (action != UNSET && action != LIST) in main()
139 action = LIST; in main()
250 if (action == UNSET) in main()
[all …]
/NextBSD/contrib/subversion/subversion/svn/
HDcl-conflicts.c164 incoming_action_str(svn_node_kind_t kind, svn_wc_conflict_action_t action) in incoming_action_str() argument
170 switch (action) in incoming_action_str()
183 switch (action) in incoming_action_str()
197 switch (action) in incoming_action_str()
259 switch (conflict->action) in svn_cl__get_human_readable_prop_conflict_description()
273 conflict->action)); in svn_cl__get_human_readable_prop_conflict_description()
289 const char *action, *reason, *operation; in svn_cl__get_human_readable_tree_conflict_description() local
294 if (conflict->action == svn_wc_conflict_action_edit || in svn_cl__get_human_readable_tree_conflict_description()
295 conflict->action == svn_wc_conflict_action_delete) in svn_cl__get_human_readable_tree_conflict_description()
301 else if (conflict->action == svn_wc_conflict_action_add || in svn_cl__get_human_readable_tree_conflict_description()
[all …]
/NextBSD/sbin/ccdconfig/
HDccdconfig.c94 int ch, options = 0, action = CCD_CONFIG; in main() local
99 action = CCD_CONFIG; in main()
104 action = CCD_CONFIGALL; in main()
113 action = CCD_DUMP; in main()
117 action = CCD_UNCONFIG; in main()
122 action = CCD_UNCONFIGALL; in main()
146 switch (action) { in main()
149 exit(do_single(argc, argv, action)); in main()
154 exit(do_all(action)); in main()
166 do_single(int argc, char **argv, int action) in do_single() argument
[all …]
/NextBSD/sbin/ggate/ggatec/
HDggatec.c58 static enum { UNSET, CREATE, DESTROY, LIST, RESCUE } action = UNSET; variable
364 if (action == CREATE) in mydaemon()
495 action = CREATE; in main()
497 action = DESTROY; in main()
499 action = LIST; in main()
501 action = RESCUE; in main()
514 if (action != DESTROY) in main()
519 if (action != CREATE && action != RESCUE) in main()
524 if (action != CREATE && action != RESCUE) in main()
538 if (action != CREATE && action != RESCUE) in main()
[all …]
/NextBSD/crypto/heimdal/lib/roken/
HDtsearch.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()
/NextBSD/lib/libstand/
HDpager.c84 int action; in pager_output() local
99 action = 0; in pager_output()
100 while (action == 0) { in pager_output()
105 action = 1; in pager_output()
109 action = 1; in pager_output()
113 action = 2; in pager_output()
120 if (action == 2) in pager_output()
/NextBSD/sbin/ggate/ggatel/
HDggatel.c50 static enum { UNSET, CREATE, DESTROY, LIST, RESCUE } action = UNSET; variable
219 action = CREATE; in main()
221 action = RESCUE; in main()
223 action = DESTROY; in main()
225 action = LIST; in main()
238 if (action != DESTROY) in main()
243 if (action != CREATE && action != RESCUE) in main()
257 if (action != CREATE) in main()
265 if (action != CREATE) in main()
279 if (action == DESTROY) in main()
[all …]
/NextBSD/contrib/less/
HDcmdbuf.c687 cmd_updown(action) in cmd_updown() argument
688 int action; in cmd_updown()
712 ml = (action == EC_UP) ? ml->prev : ml->next;
821 int action; local
849 action = editchar(c, flags);
851 switch (action)
913 return (cmd_updown(action));
919 return (cmd_complete(action));
938 int action; local
945 action = cmd_ichar(os, s - os);
[all …]
HDdecode.c488 register int action = A_INVALID; local
496 action = cmd_search(cmd, t->t_start, t->t_end, sp);
497 if (action != A_INVALID)
500 if (action == A_UINVALID)
501 action = A_INVALID;
502 return (action);
749 int action; local
777 action = ecmd_decode(usercmd, &s);
778 } while (action == A_PREFIX);
782 switch (action)
[all …]
/NextBSD/usr.sbin/asl/
HDasl_action.c926 if (r->action == ACTION_ASL_DIR) in _act_dst_open()
944 if (r->action == ACTION_ASL_FILE) in _act_dst_open()
949 if (r->action == ACTION_FILE) in _act_dst_open()
964 if (r->action == ACTION_ASL_DIR) in _act_dst_close()
970 else if (r->action == ACTION_ASL_FILE) in _act_dst_close()
975 else if (r->action == ACTION_FILE) in _act_dst_close()
1144 …if (r->action == ACTION_ASL_DIR) _asl_action_asl_store_data_free((asl_action_asl_store_data_t *)r-… in _asl_action_save_failed()
1145 …else if (r->action == ACTION_ASL_FILE) _asl_action_asl_file_data_free((asl_action_asl_file_data_t … in _asl_action_save_failed()
1146 …else if (r->action == ACTION_FILE) _asl_action_file_data_free((asl_action_file_data_t *)r->dst->pr… in _asl_action_save_failed()
1149 r->action = ACTION_NONE; in _asl_action_save_failed()
[all …]
/NextBSD/crypto/heimdal/kcm/
HDevents.c52 if (event->action == KCM_EVENT_NONE) { in kcm_enqueue_event()
83 event->backoff_time, action_strings[event->action], in log_event()
93 if (event->action == KCM_EVENT_NONE) in kcm_enqueue_event_internal()
110 (*e)->action = event->action; in kcm_enqueue_event_internal()
221 event->action = KCM_EVENT_ACQUIRE_CREDS; in kcm_ccache_make_default_event()
224 event->action = KCM_EVENT_RENEW_CREDS; in kcm_ccache_make_default_event()
228 event->action = KCM_EVENT_ACQUIRE_CREDS; in kcm_ccache_make_default_event()
230 event->action = KCM_EVENT_NONE; in kcm_ccache_make_default_event()
236 event->action = KCM_EVENT_NONE; in kcm_ccache_make_default_event()
330 switch (event->action) { in kcm_fire_event()
[all …]
/NextBSD/sys/dev/kbd/
HDkbd.c1240 int action; in genkbd_keyaction() local
1257 action = kbd->kb_lastact[keycode]; in genkbd_keyaction()
1259 switch (action) { in genkbd_keyaction()
1265 action = LSH; in genkbd_keyaction()
1275 action = RSH; in genkbd_keyaction()
1285 action = LCTR; in genkbd_keyaction()
1295 action = RCTR; in genkbd_keyaction()
1305 action = LALT; in genkbd_keyaction()
1315 action = RALT; in genkbd_keyaction()
1350 return (SPCLKEY | RELKEY | action); in genkbd_keyaction()
[all …]
/NextBSD/contrib/ntp/sntp/libevent/build-aux/
HDar-lib139 action=$1
151 action=${action#-}
161 while test -n "$action"
163 case $action in
178 action=${action#?}
/NextBSD/tools/regression/geom_gpt/
HDgctl.t154 my ($action, $args) = split(/ /, $steps{$key}, 2);
160 if ($action =~ "^gctl") {
169 } elsif ($action =~ "^mdcfg") {
184 } elsif ($action =~ "^conf") {
193 } elsif ($action =~ "^mount") {
198 } elsif ($action =~ "^umount") {

12345678910>>...29