Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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 …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DCrashRecoveryContext.cpp96 CrashRecoveryContextCleanup::~CrashRecoveryContextCleanup() {} in ~CrashRecoveryContextCleanup()
107 CrashRecoveryContextCleanup *i = head; in ~CrashRecoveryContext()
111 CrashRecoveryContextCleanup *tmp = i; in ~CrashRecoveryContext()
155 void CrashRecoveryContext::registerCleanup(CrashRecoveryContextCleanup *cleanup) in registerCleanup()
166 CrashRecoveryContext::unregisterCleanup(CrashRecoveryContextCleanup *cleanup) { in unregisterCleanup()