/freebsd-src/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-src/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-src/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-src/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 parameter [all...] |
/freebsd-src/contrib/googletest/googlemock/test/ |
H A D | gmock-more-actions_test.cc | 56 using testing::Action; 204 Action<int()> a = Invoke(Nullary); // NOLINT 210 Action<bool(int)> a = Invoke(Unary); // NOLINT in TEST() 217 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT 224 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT 230 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT 236 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT 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<st 845 Action<int(int*, int*, char*, char*)> action = // NOLINT TEST() local 859 Action<int(int*, int*, char*, char*, char*)> action = // NOLINT TEST() local 874 Action<int(int*, int*, char*, char*, char*, char*)> action = // NOLINT TEST() local 893 action = TEST() local 913 action = DoAll(SetArgPointee<0>(1), SetArgPointee<1>(2), TEST() local 935 action = TEST() local 991 ACTION(Return5) { return 5; } ACTION() function 1002 ACTION(IncrementArg1) { (*arg1)++; } ACTION() function 1013 ACTION(IncrementArg2) { ACTION() function 1028 ACTION(Sum2) { ACTION() function 1048 ACTION(InvokeDummy) { ACTION() function 1062 ACTION(InvokeDummy2) { ACTION() function 1075 ACTION(ReturnAddrOfConstBoolReferenceArg) { ACTION() function 1087 ACTION(ReturnAddrOfIntReferenceArg) { ACTION() function 1100 ACTION(Sum) { return arg0 + arg1; } ACTION() function 1110 ACTION(PlusTwo) { return arg0 + 2; } ACTION() function 1154 ACTION(OverloadedAction) { return arg0 ? arg1 : "hello"; } ACTION() function 1329 ACTION(DoFoo) {} ACTION() function 1514 ACTION(ReturnSum) { return 0; } ACTION() function [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-src/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-src/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 in EmitAction() [all...] |
/freebsd-src/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 in respip_action_cfg() 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...] |
/freebsd-src/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-src/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-src/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-src/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), TypeId in LegalizeActionStep() 401 LegalizeAction Action; global() variable 472 actionIf(LegalizeAction Action,LegalityPredicate Predicate) actionIf() argument 479 actionIf(LegalizeAction Action,LegalityPredicate Predicate,LegalizeMutation Mutation) actionIf() argument 486 actionFor(LegalizeAction Action,std::initializer_list<LLT> Types) actionFor() argument 493 actionFor(LegalizeAction Action,std::initializer_list<LLT> Types,LegalizeMutation Mutation) actionFor() argument 502 actionFor(LegalizeAction Action,std::initializer_list<std::pair<LLT,LLT>> Types) actionFor() argument 510 actionFor(LegalizeAction Action,std::initializer_list<std::pair<LLT,LLT>> Types,LegalizeMutation Mutation) actionFor() argument 520 actionForTypeWithAnyImm(LegalizeAction Action,std::initializer_list<LLT> Types) actionForTypeWithAnyImm() argument 528 actionForTypeWithAnyImm(LegalizeAction Action,std::initializer_list<std::pair<LLT,LLT>> Types) actionForTypeWithAnyImm() argument 537 actionForCartesianProduct(LegalizeAction Action,std::initializer_list<LLT> Types) actionForCartesianProduct() argument 548 actionForCartesianProduct(LegalizeAction Action,std::initializer_list<LLT> Types0,std::initializer_list<LLT> Types1) actionForCartesianProduct() argument 560 actionForCartesianProduct(LegalizeAction Action,std::initializer_list<LLT> Types0,std::initializer_list<LLT> Types1,std::initializer_list<LLT> Types2) actionForCartesianProduct() argument 1288 auto Action = getAction(Query).Action; isLegalOrCustom() local [all...] |
/freebsd-src/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 Fram in wpas_send_action_cb() [all...] |
/freebsd-src/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 in ieee802_11_send_wnmsleep_resp() 636 u8 action; ieee802_11_rx_wnm_action_ap() local [all...] |
/freebsd-src/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-src/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandOptionsProcessLaunch.cpp | 48 FileAction action; in SetOptionValue() local 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() local 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() local 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() local [all …]
|
/freebsd-src/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-src/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 ! in PGOOptions() [all...] |
/freebsd-src/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-src/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-src/lib/libc/stdlib/ |
H A D | twalk.c | 26 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-src/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 recor in computeActionsTable() 544 for (const ActionEntry &Action : Actions) { emitExceptionTable() local 766 for (const ActionEntry &Action : Actions) { emitExceptionTable() local [all...] |