Home
last modified time | relevance | path

Searched refs:HandlerType (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-registry.cpp19 using HandlerType = std::function<Error()>; typedef
21 static std::unordered_map<cl::SubCommand *, HandlerType> &getCommands() { in getCommands()
22 static std::unordered_map<cl::SubCommand *, HandlerType> Commands; in getCommands()
27 HandlerType Command) { in CommandRegistration()
34 HandlerType dispatch(cl::SubCommand *SC) { in dispatch()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkUtilRegistry.cpp18 using HandlerType = std::function<Error()>; typedef
20 static std::unordered_map<cl::SubCommand *, HandlerType> &getCommands() { in getCommands()
21 static std::unordered_map<cl::SubCommand *, HandlerType> Commands; in getCommands()
26 HandlerType Command) { in CommandRegistration()
33 HandlerType dispatch(cl::SubCommand *SC) { in dispatch()
/freebsd-14.2/sys/contrib/dev/acpica/components/events/
H A Devxface.c206 UINT32 HandlerType, in AcpiInstallNotifyHandler() argument
222 if ((!Device) || (!Handler) || (!HandlerType) || in AcpiInstallNotifyHandler()
245 if (HandlerType & (i+1)) in AcpiInstallNotifyHandler()
304 if (HandlerType & (i+1)) in AcpiInstallNotifyHandler()
330 HandlerObj->Notify.HandlerType = HandlerType; in AcpiInstallNotifyHandler()
338 if (HandlerType & (i+1)) in AcpiInstallNotifyHandler()
349 if (HandlerType == ACPI_ALL_NOTIFY) in AcpiInstallNotifyHandler()
383 UINT32 HandlerType, in ACPI_EXPORT_SYMBOL()
399 if ((!Device) || (!Handler) || (!HandlerType) || in ACPI_EXPORT_SYMBOL()
411 if (HandlerType & (i+1)) in ACPI_EXPORT_SYMBOL()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp691 const ReferenceType *RefTy = HandlerType->getAs<ReferenceType>(); in handlerCanCatch()
693 HandlerType = RefTy->getPointeeType(); in handlerCanCatch()
696 if (Context.hasSameUnqualifiedType(ExceptionType, HandlerType)) in handlerCanCatch()
700 if (HandlerType->isPointerType() || HandlerType->isMemberPointerType()) { in handlerCanCatch()
701 if (RefTy && (!HandlerType.isConstQualified() || in handlerCanCatch()
702 HandlerType.isVolatileQualified())) in handlerCanCatch()
721 IsFunctionConversion(ExceptionType, HandlerType, Result)) in handlerCanCatch()
732 HandlerType = Context.getUnqualifiedArrayType( in handlerCanCatch()
733 HandlerType->getPointeeType(), HQuals); in handlerCanCatch()
737 if (HandlerType->isVoidType() && ExceptionType->isObjectType()) in handlerCanCatch()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h282 template <class HandlerType, class... Args>
284 addHighPriorityHandler(std::make_unique<HandlerType>( in addHighPriorityHandler()
291 template <class HandlerType, class... Args>
293 addLowPriorityHandler(std::make_unique<HandlerType>( in addLowPriorityHandler()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DWinEHFuncInfo.h87 ClrHandlerType HandlerType; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp636 int TryParentState, ClrHandlerType HandlerType, in addClrEHHandler() argument
642 Entry.HandlerType = HandlerType; in addClrEHHandler()
706 ClrHandlerType HandlerType = in calculateClrEHStateNumbers() local
710 HandlerType, 0, Pad->getParent()); in calculateClrEHStateNumbers()
/freebsd-14.2/sys/contrib/dev/acpica/include/
H A Dacpixf.h925 UINT32 HandlerType,
933 UINT32 HandlerType,
H A Dacobject.h509 UINT32 HandlerType; /* Type: Device/System/Both */ member
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp1311 switch (Entry.HandlerType) { in emitCLRExceptionTable()
1342 assert(Entry.HandlerType != ClrHandlerType::Filter && "NYI: filters"); in emitCLRExceptionTable()
/freebsd-14.2/sys/contrib/dev/acpica/components/executer/
H A Dexdump.c376 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Notify.HandlerType), "Handler Type"},
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2194 bool handlerCanCatch(QualType HandlerType, QualType ExceptionType);