/freebsd-src/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | InstVisitor.h | 27 #define DELEGATE(CLASS_TO_VISIT) \ macro 159 DELEGATE(CLASS); \ 166 RetTy visitICmpInst(ICmpInst &I) { DELEGATE(CmpInst);} in visitICmpInst() 167 RetTy visitFCmpInst(FCmpInst &I) { DELEGATE(CmpInst);} in visitFCmpInst() 168 RetTy visitAllocaInst(AllocaInst &I) { DELEGATE(UnaryInstruction);} in visitAllocaInst() 169 RetTy visitLoadInst(LoadInst &I) { DELEGATE(UnaryInstruction);} in visitLoadInst() 170 RetTy visitStoreInst(StoreInst &I) { DELEGATE(Instruction);} in visitStoreInst() 171 RetTy visitAtomicCmpXchgInst(AtomicCmpXchgInst &I) { DELEGATE(Instruction);} in visitAtomicCmpXchgInst() 172 RetTy visitAtomicRMWInst(AtomicRMWInst &I) { DELEGATE(Instruction);} in visitAtomicRMWInst() 173 RetTy visitFenceInst(FenceInst &I) { DELEGATE(Instruction);} in visitFenceInst() [all …]
|
/freebsd-src/tests/sys/cddl/zfs/tests/delegate/ |
H A D | zfs_allow_test.sh | 37 . $(atf_get_srcdir)/delegate.cfg 47 . $(atf_get_srcdir)/delegate.cfg 63 . $(atf_get_srcdir)/delegate.cfg 73 . $(atf_get_srcdir)/delegate.cfg 89 . $(atf_get_srcdir)/delegate.cfg 99 . $(atf_get_srcdir)/delegate.cfg 115 . $(atf_get_srcdir)/delegate.cfg 125 . $(atf_get_srcdir)/delegate.cfg 141 . $(atf_get_srcdir)/delegate.cfg 151 . $(atf_get_srcdir)/delegate.cfg [all …]
|
H A D | zfs_unallow_test.sh | 37 . $(atf_get_srcdir)/delegate.cfg 47 . $(atf_get_srcdir)/delegate.cfg 63 . $(atf_get_srcdir)/delegate.cfg 73 . $(atf_get_srcdir)/delegate.cfg 89 . $(atf_get_srcdir)/delegate.cfg 99 . $(atf_get_srcdir)/delegate.cfg 115 . $(atf_get_srcdir)/delegate.cfg 125 . $(atf_get_srcdir)/delegate.cfg 141 . $(atf_get_srcdir)/delegate.cfg 151 . $(atf_get_srcdir)/delegate.cfg [all …]
|
H A D | zfs_allow_008_pos.ksh | 27 . $STF_SUITE/tests/delegate/delegate_common.kshlib 66 # Delegate local permission to $STAFF1 82 # delegate permission to other else.
|
H A D | Makefile | 4 TESTSDIR=${TESTSBASE}/sys/cddl/zfs/tests/delegate 13 ${PACKAGE}FILES+= delegate.cfg
|
H A D | zfs_allow_012_neg.ksh | 27 . $STF_SUITE/tests/delegate/delegate_common.kshlib 40 # 1. Delegate all the permission one by one to user on dataset.
|
H A D | zfs_allow_002_pos.ksh | 27 . $STF_SUITE/tests/delegate/delegate_common.kshlib 41 # 2. Delegate permissions to $STAFF_GROUP
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | GISelChangeObserver.h | 40 /// point and won't be if the MachineFunction::Delegate is calling it. This is 41 /// because the delegate only sees the construction of the MachineInstr before 65 /// function as the delegate. 66 class GISelObserverWrapper : public MachineFunction::Delegate, 100 // API for MachineFunction::Delegate 105 /// A simple RAII based Delegate installer. 106 /// Use this in a scope to install a delegate to the MachineFunction and reset 110 MachineFunction::Delegate *Delegate; variable 113 RAIIDelegateInstaller(MachineFunction &MF, MachineFunction::Delegate *Del);
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyCFGStackify.cpp | 96 // For each BLOCK|LOOP|TRY, the corresponding END_(BLOCK|LOOP|TRY) or DELEGATE 99 // For each END_(BLOCK|LOOP|TRY) or DELEGATE, the corresponding 120 // Before running rewriteDepthImmediates function, 'delegate' has a BB as its 122 // used for the operand when 'delegate' needs to rethrow to the caller. This 225 // When 'End' is not an 'end_try' but 'delegate, EHPad is nullptr. 712 // We started from an EH pad, so the end marker cannot be a delegate in removeUnnecessaryInstrs() 713 assert(EndTry->getOpcode() != WebAssembly::DELEGATE); in removeUnnecessaryInstrs() 759 if (EndTry->getOpcode() == WebAssembly::DELEGATE) in removeUnnecessaryInstrs() 844 // Wrap the given range of instruction with try-delegate. RangeBegin and 876 // Create a BB to insert the 'delegate' instructio in addTryDelegate() 962 MachineInstr *Delegate = BuildMI(DelegateBB, RangeEnd->getDebugLoc(), addTryDelegate() local [all...] |
/freebsd-src/sys/dev/bhnd/bhndb/ |
H A D | bhnd_bhndb.c | 77 /* Delegate to parent bridge */ in bhnd_bhndb_is_hw_disabled() 100 /* Delegate to parent bridge */ in bhnd_bhndb_map_intr() 107 /* Delegate to parent bridge */ in bhnd_bhndb_unmap_intr() 115 /* Delegate to parent bridge */ in bhnd_bhndb_pwrctl_get_clksrc() 124 /* Delegate to parent bridge */ in bhnd_bhndb_pwrctl_gate_clock() 133 /* Delegate to parent bridge */ in bhnd_bhndb_pwrctl_ungate_clock() 163 /* Delegate actual interrupt setup to the default bhnd bus in bhnd_bhndb_setup_intr()
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | SymbolDeserializer.h | 55 explicit SymbolDeserializer(SymbolVisitorDelegate *Delegate, in SymbolDeserializer() argument 57 : Delegate(Delegate), Container(Container) {} in SymbolDeserializer() 86 Delegate ? Delegate->getRecordOffset(Mapping->Reader) : 0; in visitKnownRecordImpl() 92 SymbolVisitorDelegate *Delegate; variable
|
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | GISelChangeObserver.cpp | 33 MachineFunction::Delegate *Del) in RAIIDelegateInstaller() 34 : MF(MF), Delegate(Del) { in RAIIDelegateInstaller() 35 // Register this as the delegate for handling insertions and deletions of in RAIIDelegateInstaller() 40 RAIIDelegateInstaller::~RAIIDelegateInstaller() { MF.resetDelegate(Delegate); } in ~RAIIDelegateInstaller()
|
/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/delegate/ |
H A D | zfs_allow_008_pos.ksh | 32 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib 36 # A non-root user can use 'zfs allow' to delegate permissions that 57 # Delegate local permission to $STAFF1 73 # permission to delegate permission to other users.
|
H A D | zfs_allow_012_neg.ksh | 32 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib 40 # 1. Delegate all the permission one by one to user on dataset.
|
H A D | zfs_allow_002_pos.ksh | 32 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib 41 # 2. Delegate permissions to $STAFF_GROUP
|
H A D | zfs_allow_007_pos.ksh | 32 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib 87 # Delegate @set to STAFF1 on ROOT_TESTFS, verify $perms1 will not be appended
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | LiveRangeEdit.h | 42 class LiveRangeEdit : private MachineRegisterInfo::Delegate { 45 class Delegate { 49 virtual ~Delegate() = default; 73 Delegate *const TheDelegate; 130 Delegate *delegate = nullptr, 133 VRM(vrm), TII(*MF.getSubtarget().getInstrInfo()), TheDelegate(delegate), in Parent() 229 /// eraseVirtReg - Notify the delegate that Reg is no longer in use, and try
|
H A D | MachineRegisterInfo.h | 53 class Delegate { 57 virtual ~Delegate() = default; 68 SmallPtrSet<Delegate *, 1> TheDelegates; 161 void resetDelegate(Delegate *delegate) { in resetDelegate() argument 162 // Ensure another delegate does not take over unless the current in resetDelegate() 163 // delegate first unattaches itself. in resetDelegate() 164 assert(TheDelegates.count(delegate) && in resetDelegate() 165 "Only an existing delegate can perform reset!"); in resetDelegate() 166 TheDelegates.erase(delegate); in resetDelegate() 169 addDelegate(Delegate * delegate) addDelegate() argument [all...] |
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangASTImporter.h | 314 CxxModuleScope(ASTImporterDelegate &delegate, clang::ASTContext *dst_ctx) 315 : m_delegate(delegate) { 316 // If the delegate doesn't have a CxxModuleHandler yet, create one 318 if (!delegate.m_std_handler) { in SetImportListener() 319 m_handler = CxxModuleHandler(delegate, dst_ctx); in SetImportListener() 321 delegate.m_std_handler = &m_handler; in RemoveImportListener() 464 ImporterDelegateSP delegate = 466 delegates[src_ctx] = delegate; 467 return delegate; 442 ImporterDelegateSP delegate = GetDelegate() local
|
/freebsd-src/sys/dev/bhnd/cores/pmu/ |
H A D | bhnd_pmu_core.c | 70 /* Delegate to common driver implementation */ in bhnd_pmu_core_probe() 104 /* Delegate to common driver implementation */ in bhnd_pmu_core_attach() 122 /* Delegate to common driver implementation */ in bhnd_pmu_core_detach()
|
/freebsd-src/contrib/llvm-project/lldb/source/Core/ |
H A D | IOHandler.cpp | 230 IOHandlerDelegate &delegate) in IOHandlerEditline() argument 238 line_number_start, delegate) {} in IOHandlerEditline() 247 IOHandlerDelegate &delegate) in IOHandlerEditline() argument 252 m_delegate(delegate), m_prompt(), m_continuation_prompt(), in IOHandlerEditline() 288 // See if the delegate supports fixing indentation in IOHandlerEditline() 289 const char *indent_chars = delegate.IOHandlerGetFixIndentationCharacters(); in IOHandlerEditline() 291 // The delegate does support indentation, hook it up so when any in IOHandlerEditline() 292 // indentation character is typed, the delegate gets a chance to fix it in IOHandlerEditline()
|
H A D | IOHandlerCursesGUI.cpp | 2006 // Returns the form delegate at the current index. 2011 // The default field delegate instance from which new field delegates will be 2333 TextFieldDelegate *delegate = in AddTextField() local 2335 m_fields.push_back(FieldDelegateUP(delegate)); in AddTextField() 2336 return delegate; in AddTextField() 2341 FileFieldDelegate *delegate = in AddFileField() local 2343 m_fields.push_back(FieldDelegateUP(delegate)); in AddFileField() 2344 return delegate; in AddFileField() 2350 DirectoryFieldDelegate *delegate = in AddDirectoryField() local 2352 m_fields.push_back(FieldDelegateUP(delegate)); in AddDirectoryField() 2358 ArchFieldDelegate *delegate = AddArchField() local 2366 IntegerFieldDelegate *delegate = AddIntegerField() local 2373 BooleanFieldDelegate *delegate = new BooleanFieldDelegate(label, content); AddBooleanField() local 2380 LazyBooleanFieldDelegate *delegate = AddLazyBooleanField() local 2388 ChoicesFieldDelegate *delegate = AddChoicesField() local 2395 PlatformPluginFieldDelegate *delegate = AddPlatformPluginField() local 2402 ProcessPluginFieldDelegate *delegate = new ProcessPluginFieldDelegate(); AddProcessPluginField() local 2409 ListFieldDelegate<T> *delegate = AddListField() local 2416 ArgumentsFieldDelegate *delegate = new ArgumentsFieldDelegate(); AddArgumentsField() local 2423 MappingFieldDelegate<K, V> *delegate = AddMappingField() local 2431 EnvironmentVariableNameFieldDelegate *delegate = AddEnvironmentVariableNameField() local 2438 EnvironmentVariableFieldDelegate *delegate = AddEnvironmentVariableField() local 2446 EnvironmentVariableListFieldDelegate *delegate = AddEnvironmentVariableListField() local 4638 TreeItem(TreeItem * parent,TreeDelegate & delegate,bool might_have_children) TreeItem() argument 4670 Resize(size_t n,TreeDelegate & delegate,bool might_have_children) Resize() argument [all...] |
/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/ |
H A D | Makefile.am | 265 functional/delegate/delegate.cfg \ 266 functional/delegate/delegate_common.kshlib \ 1445 functional/delegate/cleanup.ksh \ 1446 functional/delegate/setup.ksh \ 1447 functional/delegate/zfs_allow_001_pos.ksh \ 1448 functional/delegate/zfs_allow_002_pos.ksh \ 1449 functional/delegate/zfs_allow_003_pos.ksh \ 1450 functional/delegate/zfs_allow_004_pos.ksh \ 1451 functional/delegate/zfs_allow_005_po [all...] |
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | IOHandler.h | 184 /// A delegate class for use with IOHandler subclasses. 186 /// The IOHandler delegate is designed to be mixed into classes so 188 /// object that inherits from this delegate class when a token is 244 /// received. It is up to the delegate to determine when a line 335 IOHandlerDelegate &delegate); 347 IOHandlerDelegate &delegate);
|
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteClientBase.cpp | 39 ContinueDelegate &delegate, const UnixSignals &signals, in SendContinuePacketAndWaitForResponse() argument 115 delegate.HandleAsyncStdout(inferior_stdout); in SendContinuePacketAndWaitForResponse() 119 delegate.HandleAsyncMisc( in SendContinuePacketAndWaitForResponse() 123 delegate.HandleAsyncStructuredDataPacket(response.GetStringRef()); in SendContinuePacketAndWaitForResponse() 142 delegate.HandleStopReply(); in SendContinuePacketAndWaitForResponse()
|