reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/ManagedStatic.h
   23   static void *call() { return new C(); }
   86   C &operator*() {
   94   C *operator->() { return &**this; }
   96   const C &operator*() const {
  104   const C *operator->() const { return &**this; }
tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
   36   SystemLifetimeManager(const SystemLifetimeManager &other) = delete;
   37   SystemLifetimeManager &operator=(const SystemLifetimeManager &other) = delete;
   37   SystemLifetimeManager &operator=(const SystemLifetimeManager &other) = delete;
tools/lldb/source/API/SBDebugger.cpp
   97 static llvm::ManagedStatic<SystemLifetimeManager> g_debugger_lifetime;
tools/lldb/tools/lldb-server/lldb-server.cpp
   23 static llvm::ManagedStatic<lldb_private::SystemLifetimeManager>
tools/lldb/tools/lldb-test/lldb-test.cpp
 1071   SystemLifetimeManager DebuggerLifetime;