/freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | Action.h | 1 //===- 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/contrib/llvm-project/clang/lib/Driver/ |
H A D | Action.cpp | 1 //===- 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/usr.sbin/bluetooth/rtlbtfw/ |
H A D | rtlbtfw.conf | 16 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/include/clang/Frontend/ |
H A D | FrontendAction.h | 1 //===-- 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 D | gmock-actions.h | 32 // 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 …]
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-more-actions_test.cc | 56 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 D | gmock-actions_test.cc | 530 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 D | watchdogd.8 | 39 .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 D | CallingConvEmitter.cpp | 41 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 …]
|
/freebsd/contrib/unbound/respip/ |
H A D | respip.c | 9 * to see if any IP address record should trigger a special action. 116 node->action = respip_none; in respip_sockaddr_find_or_create() 179 /** set action for the node specified by the netblock string */ 185 enum respip_action action; in respip_action_cfg() local 189 if(node->action != respip_none) { in respip_action_cfg() 190 verbose(VERB_QUERY, "duplicate response-ip action for '%s', overridden.", in respip_action_cfg() 194 action = respip_deny; in respip_action_cfg() 196 action = respip_redirect; in respip_action_cfg() 198 action = respip_inform; in respip_action_cfg() 200 action = respip_inform_deny; in respip_action_cfg() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | LegalizerInfo.h | 93 /// 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 D | ss4 | 74 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 D | mkpar.c | 9 /* 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 D | pwm.c | 78 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 D | offchannel.c | 2 * 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 …]
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandOptionsProcessLaunch.cpp | 48 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...] |
/freebsd/sys/contrib/dev/iwlwifi/mvm/ |
H A D | mld-mac.c | 20 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() 89 IWL_ERR(mvm, "Failed to send MAC_CONFIG_CMD (action:%d): %d\n", in iwl_mvm_mld_mac_ctxt_send_cmd() 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 104 iwl_mvm_mld_mac_ctxt_cmd_common(mvm, vif, &cmd, action); in iwl_mvm_mld_mac_ctxt_cmd_sta() 161 u32 action) in iwl_mvm_mld_mac_ctxt_cmd_listener() argument 167 iwl_mvm_mld_mac_ctxt_cmd_common(mvm, vif, &cmd, action); in iwl_mvm_mld_mac_ctxt_cmd_listener() 180 u32 action) in iwl_mvm_mld_mac_ctxt_cmd_ibss() argument 197 iwl_mvm_mld_mac_ctxt_cmd_p2p_device(struct iwl_mvm * mvm,struct ieee80211_vif * vif,u32 action) iwl_mvm_mld_mac_ctxt_cmd_p2p_device() argument 216 iwl_mvm_mld_mac_ctxt_cmd_ap_go(struct iwl_mvm * mvm,struct ieee80211_vif * vif,u32 action) iwl_mvm_mld_mac_ctxt_cmd_ap_go() argument 236 iwl_mvm_mld_mac_ctx_send(struct iwl_mvm * mvm,struct ieee80211_vif * vif,u32 action,bool force_assoc_off) iwl_mvm_mld_mac_ctx_send() argument [all...] |
/freebsd/contrib/googletest/docs/reference/ |
H A D | actions.md | 9 | Action | Description | 12 …ed to the latter type <i>at the time the expectation is set</i>, not when the action is executed. | 18 …alue)` | Return a reference to a copy of `value`; the copy lives as long as the action. | 23 | Action | Description | 32 …th (0-based) argument, which can be either a pointer or an iterator. The action does not take owne… 36 ## Using a Function, Functor, or Lambda as an Action 41 | Action | Description | 51 action. 87 ## Default Action 89 | Action | Description | [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | EHStreamer.cpp | 50 /// 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 …]
|
/freebsd/sbin/devd/ |
H A D | zfs.conf | 7 …action "logger -p local7.warn -t ZFS checksum mismatch, zpool=$pool path=$vdev_path offset=$zio_of… 13 …action "logger -p local7.warn -t ZFS vdev I/O failure, zpool=$pool path=$vdev_path offset=$zio_off… 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"; [all …]
|
H A D | uath.conf | 12 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 D | asus.conf | 9 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%"; 54 # action ""; 60 # action ""; 66 # action ""; 72 # action "";
|
/freebsd/contrib/wpa/src/ap/ |
H A D | wnm_ap.c | 157 "WNM-Sleep Response action frame"); in ieee802_11_send_wnmsleep_resp() 169 mgmt->u.action.category = WLAN_ACTION_WNM; in ieee802_11_send_wnmsleep_resp() 170 mgmt->u.action.u.wnm_sleep_resp.action = WNM_SLEEP_MODE_RESP; in ieee802_11_send_wnmsleep_resp() 171 mgmt->u.action.u.wnm_sleep_resp.dialogtoken = dialog_token; in ieee802_11_send_wnmsleep_resp() 172 pos = (u8 *)mgmt->u.action.u.wnm_sleep_resp.variable; in ieee802_11_send_wnmsleep_resp() 177 mgmt->u.action.u.wnm_sleep_resp.keydata_len = 0; in ieee802_11_send_wnmsleep_resp() 203 &mgmt->u.action.u.wnm_sleep_resp.keydata_len, in ieee802_11_send_wnmsleep_resp() 219 len = 1 + sizeof(mgmt->u.action.u.wnm_sleep_resp) + gtk_elem_len + in ieee802_11_send_wnmsleep_resp() 226 mgmt->da, &mgmt->u.action.category, len); in ieee802_11_send_wnmsleep_resp() 405 mgmt->u.action.category = WLAN_ACTION_WNM; in ieee802_11_send_bss_trans_mgmt_request() [all …]
|
/freebsd/contrib/expat/xmlwf/ |
H A D | xmlwf_helpgen.py | 28 # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 59 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') 61 input_related.add_argument('-p', action='store_true', help='enable processing of external DTDs and … 62 input_related.add_argument('-x', action='store_true', help='enable processing of e[x]ternal entitie… 63 input_related.add_argument('-e', action='store', metavar='ENCODING', help='override any in-document… 64 input_related.add_argument('-w', action='store_true', help='enable support for [W]indows code pages… 65 input_related.add_argument('-r', action='store_true', help='disable memory-mapping and use [r]ead c… 67 input_related.add_argument('-k', action='store_true', help='when processing multiple files, [k]eep … 70 output_related.add_argument('-d', action='store', metavar='DIRECTORY', help='output [d]estination d… [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | PGOOptions.cpp | 17 IntrusiveRefCntPtr<vfs::FileSystem> FS, PGOAction Action, in PGOOptions() argument 23 Action(Action), CSAction(CSAction), ColdOptType(ColdType), in PGOOptions() 25 (Action == SampleUse && !PseudoProbeForProfiling)), in PGOOptions() 28 // Note, we do allow ProfileFile.empty() for Action=IRUse LTO can in PGOOptions() 29 // callback with IRUse action without ProfileFile. in PGOOptions() 33 (this->Action != IRInstr && this->Action != SampleUse)); in PGOOptions() 40 assert(this->CSAction != CSIRUse || this->Action == IRUse); in PGOOptions() 43 assert(this->MemoryProfile.empty() || this->Action != PGOOptions::IRInstr); in PGOOptions() 45 // If neither Action nor CSAction nor MemoryProfile are set, in PGOOptions() 47 assert(this->Action != NoAction || this->CSAction != NoCSAction || in PGOOptions() [all …]
|