Home
last modified time | relevance | path

Searched refs:delegate (Results 1 – 25 of 113) sorted by relevance

12345

/freebsd/tests/sys/cddl/zfs/tests/delegate/
H A Dzfs_allow_test.sh37 . $(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 Dzfs_unallow_test.sh37 . $(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 DMakefile4 TESTSDIR=${TESTSBASE}/sys/cddl/zfs/tests/delegate
13 ${PACKAGE}FILES+= delegate.cfg
H A Dcleanup.ksh27 . $STF_SUITE/tests/delegate/delegate_common.kshlib
H A Dsetup.ksh27 . $STF_SUITE/tests/delegate/delegate_common.kshlib
H A Dzfs_unallow_004_pos.ksh27 . $STF_SUITE/tests/delegate/delegate_common.kshlib
H A Dzfs_allow_011_neg.ksh27 . $STF_SUITE/tests/delegate/delegate_common.kshlib
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.h314 CxxModuleScope(ASTImporterDelegate &delegate, clang::ASTContext *dst_ctx) in CxxModuleScope()
315 : m_delegate(delegate) { in CxxModuleScope()
318 if (!delegate.m_std_handler) { in CxxModuleScope()
319 m_handler = CxxModuleHandler(delegate, dst_ctx); in CxxModuleScope()
321 delegate.m_std_handler = &m_handler; in CxxModuleScope()
464 ImporterDelegateSP delegate = in GetDelegate() local
466 delegates[src_ctx] = delegate; in GetDelegate()
467 return delegate; in GetDelegate()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.cpp39 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()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp2333 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()
2353 return delegate; in AddDirectoryField()
2358 ArchFieldDelegate *delegate = in AddArchField() local
[all …]
H A DIOHandler.cpp230 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()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_send_delegation/
H A Dzfs_send_test.ksh48 . $STF_SUITE/tests/functional/delegate/delegate.cfg
H A Dcleanup.ksh29 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DCompiler.cpp418 return this->delegate(SubExpr); in VisitCastExpr()
441 return this->delegate(SubExpr); in VisitCastExpr()
683 return this->delegate(E->getSubExpr()); in VisitParenExpr()
703 return this->delegate(RHS); in VisitBinaryOperator()
1326 return this->delegate(Inits[0]); in visitInitList()
1333 return this->delegate(Inits[0]); in visitInitList()
1432 return this->delegate(Inits[0]); in visitInitList()
1479 return this->delegate(Inits[0]); in visitInitList()
1584 return this->delegate(E->getReplacement()); in VisitSubstNonTypeTemplateParmExpr()
1600 return this->delegate(E->getSubExpr()); in VisitConstantExpr()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h161 void resetDelegate(Delegate *delegate) { in resetDelegate() argument
164 assert(TheDelegates.count(delegate) && in resetDelegate()
166 TheDelegates.erase(delegate); in resetDelegate()
169 void addDelegate(Delegate *delegate) { in addDelegate() argument
170 assert(delegate && !TheDelegates.count(delegate) && in addDelegate()
174 TheDelegates.insert(delegate); in addDelegate()
H A DLiveRangeEdit.h130 Delegate *delegate = nullptr,
133 VRM(vrm), TII(*MF.getSubtarget().getInstrInfo()), TheDelegate(delegate), in Parent()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTrace.cpp415 if (Expected<CommandObjectSP> delegate = DoGetProxyCommandObject()) { in GetProxyCommandObject() local
416 m_delegate_sp = *delegate; in GetProxyCommandObject()
421 m_delegate_error = toString(delegate.takeError()); in GetProxyCommandObject()
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DMaterializer.h80 PersistentVariableDelegate *delegate, Status &err);
106 PersistentVariableDelegate *delegate, Status &err);
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_user/zfs_send_delegation_user/
H A Dzfs_send_usertest.ksh51 . $STF_SUITE/tests/functional/delegate/delegate.cfg
H A Dcleanup.ksh29 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/limits/
H A Dcleanup.ksh19 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib
H A Dsetup.ksh19 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/delegate/
H A Dcleanup.ksh35 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib
H A Dzfs_unallow_008_neg.ksh33 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib
H A Dzfs_unallow_004_pos.ksh33 . $STF_SUITE/tests/functional/delegate/delegate_common.kshlib

12345