Home
last modified time | relevance | path

Searched full:action (Results 1 – 25 of 5248) sorted by relevance

12345678910>>...210

/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DAction.h1 //===- Action.h - Abstract compilation steps --------------------*- C++ -*-===//
35 /// Action - Represent an abstract compilation step to perform.
37 /// An action represents an edge in the compilation graph; typically
47 class Action {
84 // The offloading kind determines if this action is binded to a particular
104 /// The output type of this action.
109 /// Flag that is set to true if this action can be collapsed with others
111 /// the action is used by two different tool chains, which is enabled by the
128 /// The Offloading architecture associated with this action.
131 /// The Offloading toolchain associated with this device action.
[all …]
/freebsd/usr.sbin/bluetooth/rtlbtfw/
H A Drtlbtfw.conf16 action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
26 action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
36 action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
46 action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
56 action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
64 action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
72 action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
80 action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
90 action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
98 action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
[all …]
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DAction.cpp1 //===- Action.cpp - Abstract compilation steps ----------------------------===//
9 #include "clang/Driver/Action.h"
18 Action::~Action() = default;
20 const char *Action::getClassName(ActionClass AC) { in getClassName()
58 void Action::propagateDeviceOffloadInfo(OffloadKind OKind, const char *OArch, in propagateDeviceOffloadInfo()
60 // Offload action set its own kinds on their dependences. in propagateDeviceOffloadInfo()
69 assert(!ActiveOffloadKindMask && "Setting a device kind in a host action??"); in propagateDeviceOffloadInfo()
78 void Action::propagateHostOffloadInfo(unsigned OKinds, const char *OArch) { in propagateHostOffloadInfo()
79 // Offload action set its own kinds on their dependences. in propagateHostOffloadInfo()
84 "Setting a host kind in a device action."); in propagateHostOffloadInfo()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DFrontendAction.h1 //===-- FrontendAction.h - Generic Frontend Action Interface ----*- C++ -*-===//
48 /// @name Implementation Action Interface
51 /// Prepare to execute the action on the given CompilerInstance.
53 /// This is called before executing the action on any inputs, and can modify
57 /// Create the AST consumer object for this action, if supported.
61 /// action has indicated that it only uses the preprocessor.
74 /// opportunity to modify the CompilerInvocation or do some other action
89 /// Callback to run the program action, using the initialized
174 /// Is this action invoked on a model file?
181 /// Does this action only use the preprocessor?
[all …]
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h32 // The ACTION* family of macros can be used in a namespace scope to
35 // ACTION(name) { statements; }
37 // will define an action with the given name that executes the
39 // the return value of the action. Inside the statements, you can
43 // ACTION(IncrementArg1) {
62 // Sometimes you'll want to parameterize the action. For that you can use
105 // While it's tempting to always use the ACTION* macros when defining
106 // a new action, you should also consider implementing ActionInterface
108 // use the action a lot. While these approaches require more work,
110 // arguments and the action parameters, which in general leads to
[all …]
/illumos-gate/usr/src/man/man3c/
H A Dssignal.3c14 \fBvoid\fR(\fB*ssignal\fR (\fBint\fR \fIsig\fR, \fBint\fR (*\fIaction\fR)(\fBint\fR)))(\fBint\fR);
33 \fIaction\fR, with the software signal \fIsig\fR; the software signal,
35 causes the action established for that signal to be taken.
39 signal for which an action is to be established. The second argument defines
40 the action; it is either the name of a (user-defined) \fIaction\fR
42 \fBSIG_IGN\fR (ignore). The \fBssignal()\fR function returns the action
43 previously established for that signal type; if no action has been established
51 If an action function has been established for \fIsig\fR, then that action is
52 reset to \fBSIG_DFL\fR and the action function is entered with argument
54 action function.
[all …]
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc56 using testing::Action;
204 Action<int()> a = Invoke(Nullary); // NOLINT in TEST()
210 Action<bool(int)> a = Invoke(Unary); // NOLINT in TEST()
217 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT in TEST()
224 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT in TEST()
230 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT in TEST()
236 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT in TEST()
242 Action<int(int, int, int, int, int, int)> a = Invoke(SumOf6); // NOLINT in TEST()
253 Action<std::string(const char*, const char*, const char*, const char*, in TEST()
264 Action<std::string(const char*, const char*, const char*, const char*, in TEST()
[all …]
H A Dgmock-actions_test.cc530 Action<MyGlobalFunction> action = MakeAction(new MyActionImpl); in TEST() local
532 // When exercising the Perform() method of Action<F>, we must pass in TEST()
537 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST()
540 // Tests that Action<F> can be constructed from a pointer to
543 Action<MyGlobalFunction> action(new MyActionImpl); in TEST() local
546 // Tests that Action<F> delegates actual work to ActionInterface<F>.
548 const Action<MyGlobalFunction> action(new MyActionImpl); in TEST() local
550 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST()
551 EXPECT_EQ(0, action.Perform(std::make_tuple(false, 1))); in TEST()
554 // Tests that Action<F> can be copied.
[all …]
/freebsd/usr.sbin/watchdogd/
H A Dwatchdogd.839 .Op Fl -softtimeout-action Ar action
41 .Op Fl -pretimeout-action Ar action
93 action after a configurable timeout.
149 At "timeout" seconds before the watchdog will fire attempt an action.
150 The action is set by the --pretimeout-action flag.
153 .It Fl -pretimeout-action Ar action
154 Set the timeout action for the pretimeout.
160 The default action is just to
163 .It Fl -softtimeout-action Ar action
164 Set the timeout action for the softtimeout.
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp41 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
91 // We want an entry in AssignedRegsMap for every action, even if that in EmitCallingConv()
109 Record *Action = CCActions->getElementAsRecord(i); in EmitCallingConv() local
111 llvm::any_of(Action->getSuperClasses(), in EmitCallingConv()
118 EmitAction(Action, 2, O); in EmitCallingConv()
125 void CallingConvEmitter::EmitAction(Record *Action, unsigned Indent, in EmitAction() argument
129 if (Action->isSubClassOf("CCPredicateAction")) { in EmitAction()
132 if (Action->isSubClassOf("CCIfType")) { in EmitAction()
133 ListInit *VTs = Action->getValueAsListInit("VTs"); in EmitAction()
141 } else if (Action->isSubClassOf("CCIf")) { in EmitAction()
[all …]
/illumos-gate/usr/src/man/man8/
H A Dipqosconf.8131 configuration (action) blocks. There are different configuration blocks for
132 each type of action that is being configured.
151 Following the format version, are a succession of configuration (action) blocks
152 that are different for each type of action being configured. A configuration
157 action {
216 The action must be named \fBipgpc.classify\fR. All other actions should be
217 reachable from \fBipgpc\fR by way of parameters of type action or the
225 action ::= string
267 red_action_name action
268 yellow_action_name action
[all …]
/freebsd/contrib/unbound/respip/
H A Drespip.c9 * to see if any IP address record should trigger a special action.
117 node->action = respip_none; in respip_sockaddr_find_or_create()
183 /** set action for the node specified by the netblock string */ in respip_action_cfg()
189 enum respip_action action; in respip_action_cfg()
194 if(node->action != respip_none) { in respip_action_cfg()
195 verbose(VERB_QUERY, "duplicate response-ip action for '%s', overridden.", in respip_action_cfg()
199 action = respip_deny; in respip_action_cfg()
201 action = respip_redirect; in respip_action_cfg()
203 action = respip_inform; in respip_action_cfg()
205 action in respip_action_cfg()
185 enum respip_action action; respip_action_cfg() local
664 respip_data_answer(enum respip_action action,struct ub_packed_rrset_key * data,uint16_t qtype,const struct reply_info * rep,size_t rrset_id,struct reply_info ** new_repp,int tag,struct config_strlist ** tag_datas,size_t tag_datas_size,char * const * tagname,int num_tags,struct ub_packed_rrset_key ** redirect_rrsetp,struct regional * region) respip_data_answer() argument
753 respip_nodata_answer(uint16_t qtype,enum respip_action action,const struct reply_info * rep,size_t rrset_id,struct reply_info ** new_repp,struct regional * region) respip_nodata_answer() argument
798 populate_action_info(struct respip_action_info * actinfo,enum respip_action action,const struct resp_addr * raddr,const struct ub_packed_rrset_key * ATTR_UNUSED (rrset),int ATTR_UNUSED (tag),const struct respip_set * ATTR_UNUSED (ipset),int ATTR_UNUSED (action_only),struct regional * region,int rpz_used,int rpz_log,char * log_name,int rpz_cname_override) populate_action_info() argument
834 respip_use_rpz(struct resp_addr * raddr,struct rpz * r,enum respip_action * action,struct ub_packed_rrset_key ** data,int * rpz_log,char ** log_name,int * rpz_cname_override,struct regional * region,int * is_rpz,int * rpz_passthru) respip_use_rpz() argument
881 enum respip_action action = respip_none; respip_rewrite_reply() local
[all...]
/illumos-gate/usr/src/cmd/rctladm/
H A Drctladm.c114 uint_t action; in rctl_save_walk_cb() local
125 action = rctlblk_get_global_action(gblk); in rctl_save_walk_cb()
129 if (action & RCTL_GLOBAL_SYSLOG) in rctl_save_walk_cb()
178 rctladm_setup_action(char *name, char *action, int line) in rctladm_setup_action() argument
180 if (action[0] == '\0') { in rctladm_setup_action()
185 rctladm_enable(name, action); in rctladm_setup_action()
195 char *action; in rctladm_read_config() local
222 * Look for "rctl_name=action;action;...;action, with in rctladm_read_config()
247 action = strtok(actions, ";"); in rctladm_read_config()
248 rctladm_setup_action(name, action, line); in rctladm_read_config()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerInfo.h93 /// Sentinel value for when no action was found in the specified table.
101 raw_ostream &operator<<(raw_ostream &OS, LegalizeActions::LegalizeAction Action);
141 /// Unsupported or describes an action that must be taken to make an operation
144 /// The action to take or the final answer.
145 LegalizeAction Action; member
146 /// If describing an action, the type index to change. Otherwise zero.
148 /// If describing an action, the new type for TypeIdx. Otherwise LLT{}.
151 LegalizeActionStep(LegalizeAction Action, unsigned TypeIdx, in LegalizeActionStep()
153 : Action(Action), TypeIdx(TypeIdx), NewType(NewType) {} in LegalizeActionStep()
157 switch (Step.Action) { in LegalizeActionStep()
[all …]
/freebsd/share/doc/psd/15.yacc/
H A Dss474 what action should be done; if it needs one, and does
80 if needed, the parser decides on its next action, and
88 action is the most common action the parser takes.
89 Whenever a shift action is taken, there is always
92 an action:
104 action keeps the stack from growing without
114 action (represented by a ``.'') is often a reduce action.
119 The action
125 18, while the action
137 The reduce action depends on the
[all …]
/freebsd/contrib/byacc/
H A Dmkpar.c9 /* suppress the preferred action => enable backtracking */
16 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()
[all …]
/freebsd/usr.sbin/pwm/
H A Dpwm.c78 int action, ch; in main() local
84 action = 0; in main()
92 if (action & (PWM_DISABLE | PWM_SHOW_CONFIG)) in main()
94 action |= PWM_ENABLE; in main()
97 if (action & (PWM_ENABLE | PWM_SHOW_CONFIG)) in main()
99 action |= PWM_DISABLE; in main()
102 if (action) in main()
104 action = PWM_SHOW_CONFIG; in main()
107 if (action & PWM_SHOW_CONFIG) in main()
109 action |= PWM_INVERTED; in main()
[all …]
/freebsd/contrib/wpa/wpa_supplicant/
H A Doffchannel.c2 * wpa_supplicant - Off-channel Action frame TX/RX
37 * the GO interface, make sure non-Public Action frames in wpas_get_tx_interface()
39 * interface can only send Public Action frames. in wpas_get_tx_interface()
42 "P2P: Use GO interface %s instead of interface %s for Action TX", in wpas_get_tx_interface()
61 "instead of interface %s for Action TX", in wpas_get_tx_interface()
80 …"Off-channel: Send Action callback (without_roc=%d pending_action_tx=%p pending_action_tx_done=%d)… in wpas_send_action_cb()
90 * Action frames are actually sent within a P2P Group and when that is in wpas_send_action_cb()
101 wpa_printf(MSG_DEBUG, "Off-channel: Pending Action frame TX " in wpas_send_action_cb()
115 "remain-on-channel to send Action frame"); in wpas_send_action_cb()
130 "channel (%u MHz) for Action Frame " in wpas_send_action_cb()
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/lib/nwamd/
H A Ddoor_if.c64 * passed as data and contains data to specify the type of action requested
116 /* Requires WRITE, SELECT or WLAN auth depending on action */
252 nwam_action_t action = req->nwda_data.nwdad_object_action.nwdad_action; in nwamd_door_req_action() local
272 if (action == NWAM_ACTION_ENABLE || action == NWAM_ACTION_DISABLE) { in nwamd_door_req_action()
275 action == NWAM_ACTION_ENABLE ? in nwamd_door_req_action()
279 "need %s for %s action", AUTOCONF_SELECT_AUTH, in nwamd_door_req_action()
280 nwam_action_to_string(action)); in nwamd_door_req_action()
286 "need %s for %s action on Known WLAN", in nwamd_door_req_action()
287 AUTOCONF_WLAN_AUTH, nwam_action_to_string(action)); in nwamd_door_req_action()
290 } else if (action == NWAM_ACTION_ADD || action == NWAM_ACTION_DESTROY) { in nwamd_door_req_action()
[all …]
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dmld-mac.c28 u32 action) in iwl_mvm_mld_mac_ctxt_cmd_common() argument
41 cmd->action = cpu_to_le32(action); in iwl_mvm_mld_mac_ctxt_cmd_common()
109 IWL_ERR(mvm, "Failed to send MAC_CONFIG_CMD (action:%d): %d\n", in iwl_mvm_mld_mac_ctxt_send_cmd()
110 le32_to_cpu(cmd->action), ret); in iwl_mvm_mld_mac_ctxt_send_cmd()
116 u32 action, bool force_assoc_off) in iwl_mvm_mld_mac_ctxt_cmd_sta() argument
124 iwl_mvm_mld_mac_ctxt_cmd_common(mvm, vif, &cmd, action); in iwl_mvm_mld_mac_ctxt_cmd_sta()
181 u32 action) in iwl_mvm_mld_mac_ctxt_cmd_listener() argument
187 iwl_mvm_mld_mac_ctxt_cmd_common(mvm, vif, &cmd, action); in iwl_mvm_mld_mac_ctxt_cmd_listener()
200 u32 action) in iwl_mvm_mld_mac_ctxt_cmd_ibss() argument
206 iwl_mvm_mld_mac_ctxt_cmd_common(mvm, vif, &cmd, action); in iwl_mvm_mld_mac_ctxt_cmd_ibss()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandOptionsProcessLaunch.cpp48 FileAction action; in SetOptionValue()
49 if (action.Open(STDIN_FILENO, FileSpec(option_arg), true, false)) in SetOptionValue()
50 launch_info.AppendFileAction(action); in SetOptionValue()
56 FileAction action; in SetOptionValue()
57 if (action.Open(STDOUT_FILENO, FileSpec(option_arg), false, true)) in SetOptionValue()
58 launch_info.AppendFileAction(action); in SetOptionValue()
64 FileAction action; in SetOptionValue()
65 if (action.Open(STDERR_FILENO, FileSpec(option_arg), false, true)) in SetOptionValue()
66 launch_info.AppendFileAction(action); in SetOptionValue()
76 FileAction action; in SetOptionValue()
44 FileAction action; SetOptionValue() local
52 FileAction action; SetOptionValue() local
60 FileAction action; SetOptionValue() local
72 FileAction action; SetOptionValue() local
[all...]
/illumos-gate/usr/src/cmd/fm/dicts/
H A DSMF.po40 msgid "SMF-8000-05.action"
56 msgid "SMF-8000-1S.action"
72 msgid "SMF-8000-2A.action"
88 msgid "SMF-8000-3P.action"
104 msgid "SMF-8000-4D.action"
120 msgid "SMF-8000-5H.action"
136 msgid "SMF-8000-63.action"
152 msgid "SMF-8000-7Y.action"
168 msgid "SMF-8000-8Q.action"
184 msgid "SMF-8000-9C.action"
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsfpkrd.c40 ssize_t sfpkrd(int fd, Void_t* argbuf, size_t n, int rc, long tm, int action) in sfpkrd() argument
42 ssize_t sfpkrd(fd, argbuf, n, rc, tm, action) in sfpkrd()
48 int action; /* >0: peeking, if rc>=0, get action records,
49 <0: no peeking, if rc>=0, get -action records,
58 if(rc < 0 && tm < 0 && action <= 0)
61 t = (action > 0 || rc >= 0) ? (STREAM_PEEK|SOCKET_PEEK) : 0;
111 { if(action <= 0) /* read past eof */
128 while(tm >= 0 || action > 0 ||
213 { if(action <= 0 && rc < 0)
279 { if(action <= 0)
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp50 /// Compute the actions table and gather the first action index for each landing
56 // The action table follows the call-site table in the LSDA. The individual in computeActionsTable()
92 unsigned SizeActions = 0; // Total size of all action entries for a function in computeActionsTable()
101 // Size of one action entry (typeid + next action) in computeActionsTable()
132 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction }; in computeActionsTable() local
133 Actions.push_back(Action); in computeActionsTable()
137 // Record the first action of the landing pad site. in computeActionsTable()
141 // Information used when creating the call-site table. The action record in computeActionsTable()
143 // action record, relative to the start of the actions table. This value is in computeActionsTable()
211 /// containing the call, a non-zero landing pad, and an appropriate action. The
[all …]
/illumos-gate/usr/src/cmd/psradm/
H A Dpsradm.c98 psr_action_lookup(int action) in psr_action_lookup() argument
103 if (psr_action[i].p_op == action) { in psr_action_lookup()
118 psr_set_state(processorid_t cpu, int action, psr_action_t *pac, int mustexist) in psr_set_state() argument
137 if (old_state == P_FAULTED && action != P_FAULTED && !force) { in psr_set_state()
143 old_state = p_online(cpu, force ? action | P_FORCED : action); in psr_set_state()
154 if (old_state == action) { in psr_set_state()
195 do_range(processorid_t first, processorid_t last, int action, in do_range() argument
204 if ((rv = psr_set_state(cpu, action, pac, 0)) > 0) in do_range()
221 int action = 0; in main() local
250 if (action != 0 && action != c) { in main()
[all …]

12345678910>>...210