Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
HDxray-registry.cpp20 using HandlerType = std::function<Error()>; typedef
22 ManagedStatic<std::unordered_map<cl::SubCommand *, HandlerType>> Commands;
25 HandlerType Command) { in CommandRegistration()
32 HandlerType dispatch(cl::SubCommand *SC) { in dispatch()
/freebsd-11-stable/sys/contrib/dev/acpica/components/events/
HDevxface.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-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaExceptionSpec.cpp665 bool Sema::handlerCanCatch(QualType HandlerType, QualType ExceptionType) { in handlerCanCatch() argument
671 const ReferenceType *RefTy = HandlerType->getAs<ReferenceType>(); in handlerCanCatch()
673 HandlerType = RefTy->getPointeeType(); in handlerCanCatch()
676 if (Context.hasSameUnqualifiedType(ExceptionType, HandlerType)) in handlerCanCatch()
680 if (HandlerType->isPointerType() || HandlerType->isMemberPointerType()) { in handlerCanCatch()
681 if (RefTy && (!HandlerType.isConstQualified() || in handlerCanCatch()
682 HandlerType.isVolatileQualified())) in handlerCanCatch()
699 if (IsQualificationConversion(ExceptionType, HandlerType, false, in handlerCanCatch()
701 IsFunctionConversion(ExceptionType, HandlerType, Result)) in handlerCanCatch()
705 if (!ExceptionType->isPointerType() || !HandlerType->isPointerType()) in handlerCanCatch()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
HDWinEHFuncInfo.h87 ClrHandlerType HandlerType; member
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
HDWinEHPrepare.cpp466 int TryParentState, ClrHandlerType HandlerType, in addClrEHHandler() argument
472 Entry.HandlerType = HandlerType; in addClrEHHandler()
536 ClrHandlerType HandlerType = in calculateClrEHStateNumbers() local
540 HandlerType, 0, Pad->getParent()); in calculateClrEHStateNumbers()
/freebsd-11-stable/sys/contrib/dev/acpica/include/
HDacobject.h506 UINT32 HandlerType; /* Type: Device/System/Both */ member
HDacpixf.h911 UINT32 HandlerType,
919 UINT32 HandlerType,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
HDWinException.cpp1282 switch (Entry.HandlerType) { in emitCLRExceptionTable()
1313 assert(Entry.HandlerType != ClrHandlerType::Filter && "NYI: filters"); in emitCLRExceptionTable()
/freebsd-11-stable/sys/contrib/dev/acpica/components/executer/
HDexdump.c376 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Notify.HandlerType), "Handler Type"},
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
HDSema.h1670 bool handlerCanCatch(QualType HandlerType, QualType ExceptionType);