Home
last modified time | relevance | path

Searched refs:CrashRecoveryContextCleanup (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h15 class CrashRecoveryContextCleanup; variable
48 CrashRecoveryContextCleanup *head = nullptr;
57 void registerCleanup(CrashRecoveryContextCleanup *cleanup);
59 void unregisterCleanup(CrashRecoveryContextCleanup *cleanup);
125 class CrashRecoveryContextCleanup {
128 CrashRecoveryContextCleanup(CrashRecoveryContext *context) in CrashRecoveryContextCleanup() function
134 virtual ~CrashRecoveryContextCleanup();
143 CrashRecoveryContextCleanup *prev = nullptr, *next = nullptr;
158 class CrashRecoveryContextCleanupBase : public CrashRecoveryContextCleanup {
162 : CrashRecoveryContextCleanup(context), resource(resource) {} in CrashRecoveryContextCleanupBase()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DCrashRecoveryContext.cpp97 CrashRecoveryContextCleanup::~CrashRecoveryContextCleanup() {} in ~CrashRecoveryContextCleanup()
108 CrashRecoveryContextCleanup *i = head; in ~CrashRecoveryContext()
112 CrashRecoveryContextCleanup *tmp = i; in ~CrashRecoveryContext()
156 void CrashRecoveryContext::registerCleanup(CrashRecoveryContextCleanup *cleanup) in registerCleanup()
167 CrashRecoveryContext::unregisterCleanup(CrashRecoveryContextCleanup *cleanup) { in unregisterCleanup()