Home
last modified time | relevance | path

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

/freebsd/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/sys/contrib/dev/acpica/components/events/
H A Devxface.c206 UINT32 HandlerType, in AcpiInstallNotifyHandler() argument
222 if ((!Device) || (!Handler) || (!HandlerType) || in AcpiInstallNotifyHandler()
223 (HandlerType > ACPI_MAX_NOTIFY_HANDLER_TYPE)) 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()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp673 bool Sema::handlerCanCatch(QualType HandlerType, QualType ExceptionType) { in handlerCanCatch() argument
679 const ReferenceType *RefTy = HandlerType->getAs<ReferenceType>(); in handlerCanCatch()
681 HandlerType = RefTy->getPointeeType(); in handlerCanCatch()
684 if (Context.hasSameUnqualifiedType(ExceptionType, HandlerType)) in handlerCanCatch()
688 if (HandlerType->isPointerType() || HandlerType->isMemberPointerType()) { in handlerCanCatch()
689 if (RefTy && (!HandlerType.isConstQualified() || in handlerCanCatch()
690 HandlerType.isVolatileQualified())) in handlerCanCatch()
707 if (IsQualificationConversion(ExceptionType, HandlerType, false, in handlerCanCatch()
709 IsFunctionConversion(ExceptionType, HandlerType, Result)) in handlerCanCatch()
713 if (!ExceptionType->isPointerType() || !HandlerType->isPointerType()) in handlerCanCatch()
[all …]
/freebsd/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/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DWinEHFuncInfo.h87 ClrHandlerType HandlerType; member
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp637 int TryParentState, ClrHandlerType HandlerType, in addClrEHHandler() argument
643 Entry.HandlerType = HandlerType; in addClrEHHandler()
707 ClrHandlerType HandlerType = in calculateClrEHStateNumbers() local
711 HandlerType, 0, Pad->getParent()); in calculateClrEHStateNumbers()
/freebsd/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/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/sys/contrib/dev/acpica/components/executer/
H A Dexdump.c376 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Notify.HandlerType), "Handler Type"},
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h6180 bool handlerCanCatch(QualType HandlerType, QualType ExceptionType);