Home
last modified time | relevance | path

Searched refs:SystemRuntime (Results 1 – 25 of 30) sorted by relevance

12

/llvm-project-15.0.7/lldb/source/Target/
H A DSystemRuntime.cpp17 SystemRuntime *SystemRuntime::FindPlugin(Process *process) { in FindPlugin()
23 std::unique_ptr<SystemRuntime> instance_up(create_callback(process)); in FindPlugin()
30 SystemRuntime::SystemRuntime(Process *process) : Runtime(process), m_types() {} in SystemRuntime() function in SystemRuntime
32 SystemRuntime::~SystemRuntime() = default;
34 void SystemRuntime::DidAttach() {} in DidAttach()
36 void SystemRuntime::DidLaunch() {} in DidLaunch()
38 void SystemRuntime::Detach() {} in Detach()
40 void SystemRuntime::ModulesDidLoad(const ModuleList &module_list) {} in ModulesDidLoad()
42 const std::vector<ConstString> &SystemRuntime::GetExtendedBacktraceTypes() { in GetExtendedBacktraceTypes()
46 ThreadSP SystemRuntime::GetExtendedBacktraceThread(ThreadSP thread, in GetExtendedBacktraceThread()
H A DQueueItem.cpp100 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in FetchEntireItem()
H A DCMakeLists.txt46 SystemRuntime.cpp
H A DProcess.cpp2584 SystemRuntime *system_runtime = GetSystemRuntime(); in LaunchPrivate()
2622 SystemRuntime *system_runtime = GetSystemRuntime(); in LoadCore()
2670 SystemRuntime *Process::GetSystemRuntime() { in GetSystemRuntime()
2672 m_system_runtime_up.reset(SystemRuntime::FindPlugin(this)); in GetSystemRuntime()
2963 SystemRuntime *system_runtime = GetSystemRuntime(); in CompleteAttach()
5691 SystemRuntime *sys_runtime = GetSystemRuntime(); in ModulesDidLoad()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DSystemRuntime.h43 class SystemRuntime : public Runtime, public PluginInterface {
53 static SystemRuntime *FindPlugin(Process *process);
56 SystemRuntime(Process *process);
62 ~SystemRuntime() override;
301 SystemRuntime(const SystemRuntime &) = delete;
302 const SystemRuntime &operator=(const SystemRuntime &) = delete;
H A DProcessTrace.h41 SystemRuntime *GetSystemRuntime() override { return nullptr; } in GetSystemRuntime()
H A DProcess.h704 virtual SystemRuntime *GetSystemRuntime();
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp108 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetQueueName()
138 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetQueueKind()
162 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetQueueID()
189 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetQueueLibdispatchQueueAddress()
/llvm-project-15.0.7/lldb/source/Plugins/SystemRuntime/MacOSX/
H A DSystemRuntimeMacOSX.h31 class SystemRuntimeMacOSX : public lldb_private::SystemRuntime {
46 static lldb_private::SystemRuntime *
H A DAppleGetItemInfoHandler.cpp133 Log *log = GetLog(LLDBLog::SystemRuntime); in SetupGetItemInfoFunction()
222 Log *log = GetLog(LLDBLog::SystemRuntime); in GetItemInfo()
H A DAppleGetQueuesHandler.cpp150 Log *log = GetLog(LLDBLog::SystemRuntime); in SetupGetQueuesFunction()
226 Log *log = GetLog(LLDBLog::SystemRuntime); in GetCurrentQueues()
H A DAppleGetPendingItemsHandler.cpp137 Log *log = GetLog(LLDBLog::SystemRuntime); in SetupGetPendingItemsFunction()
221 Log *log = GetLog(LLDBLog::SystemRuntime); in GetPendingItems()
H A DAppleGetThreadItemInfoHandler.cpp144 Log *log = GetLog(LLDBLog::SystemRuntime); in SetupGetThreadItemInfoFunction()
228 Log *log = GetLog(LLDBLog::SystemRuntime); in GetThreadItemInfo()
H A DSystemRuntimeMacOSX.cpp43 SystemRuntime *SystemRuntimeMacOSX::CreateInstance(Process *process) { in LLDB_PLUGIN_DEFINE()
81 : SystemRuntime(process), m_break_id(LLDB_INVALID_BREAK_ID), m_mutex(), in SystemRuntimeMacOSX()
884 Log *log = GetLog(LLDBLog::SystemRuntime); in PopulateQueuesUsingLibBTR()
/llvm-project-15.0.7/lldb/source/Utility/
H A DLLDBLog.cpp56 {{"system-runtime"}, {"log system runtime events"}, LLDBLog::SystemRuntime},
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DLLDBLog.h43 SystemRuntime = Log::ChannelFlag<24>, enumerator
/llvm-project-15.0.7/lldb/source/Plugins/
H A DCMakeLists.txt21 add_subdirectory(SystemRuntime)
/llvm-project-15.0.7/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.h60 SystemRuntime *GetSystemRuntime() override { return nullptr; } in GetSystemRuntime()
/llvm-project-15.0.7/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.h66 SystemRuntime *GetSystemRuntime() override { return nullptr; } in GetSystemRuntime()
/llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Target/
H A DBUILD.gn69 "SystemRuntime.cpp",
/llvm-project-15.0.7/lldb/include/lldb/
H A Dlldb-private-interfaces.h76 typedef SystemRuntime *(*SystemRuntimeCreateInstance)(Process *process);
H A Dlldb-forward.h221 class SystemRuntime; variable
343 typedef std::unique_ptr<lldb_private::SystemRuntime> SystemRuntimeUP;
/llvm-project-15.0.7/lldb/source/API/
H A DSBProcess.cpp1087 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetNumExtendedBacktraceTypes()
1098 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetExtendedBacktraceTypeAtIndex()
H A DSBThread.cpp1256 SystemRuntime *runtime = process->GetSystemRuntime(); in GetExtendedBacktraceThread()
/llvm-project-15.0.7/lldb/source/Core/
H A DPluginManager.cpp589 #pragma mark SystemRuntime

12