Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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 DProcess.cpp2776 SystemRuntime *system_runtime = GetSystemRuntime(); in LaunchPrivate()
2814 SystemRuntime *system_runtime = GetSystemRuntime(); in LoadCore()
2867 SystemRuntime *Process::GetSystemRuntime() { in GetSystemRuntime()
2869 m_system_runtime_up.reset(SystemRuntime::FindPlugin(this)); in GetSystemRuntime()
3173 SystemRuntime *system_runtime = GetSystemRuntime(); in CompleteAttach()
6021 SystemRuntime *sys_runtime = GetSystemRuntime(); in ModulesDidLoad()
H A DThread.cpp1673 SystemRuntime *runtime = process->GetSystemRuntime(); in SafeToCallFunctions()
/freebsd/contrib/llvm-project/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.h42 SystemRuntime *GetSystemRuntime() override { return nullptr; } in GetSystemRuntime()
H A DProcess.h756 virtual SystemRuntime *GetSystemRuntime();
/freebsd/contrib/llvm-project/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()
H A DProcessGDBRemote.cpp3883 SystemRuntime *runtime = GetSystemRuntime(); in GetExtendedInfoForThread()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DLLDBLog.cpp56 {{"system-runtime"}, {"log system runtime events"}, LLDBLog::SystemRuntime},
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLLDBLog.h43 SystemRuntime = Log::ChannelFlag<24>, enumerator
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.h60 SystemRuntime *GetSystemRuntime() override { return nullptr; } in GetSystemRuntime()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-interfaces.h77 typedef SystemRuntime *(*SystemRuntimeCreateInstance)(Process *process);
H A Dlldb-forward.h232 class SystemRuntime; variable
364 typedef std::unique_ptr<lldb_private::SystemRuntime> SystemRuntimeUP;
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBProcess.cpp1166 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetNumExtendedBacktraceTypes()
1177 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetExtendedBacktraceTypeAtIndex()
H A DSBThread.cpp1277 SystemRuntime *runtime = process->GetSystemRuntime(); in GetExtendedBacktraceThread()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DPluginManager.cpp589 #pragma mark SystemRuntime
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp188 SystemRuntime *runtime = thread->GetProcess()->GetSystemRuntime(); in DoExtendedBacktrace()
/freebsd/lib/clang/liblldb/
H A DMakefile661 SRCS+= Target/SystemRuntime.cpp
/freebsd/contrib/llvm-project/
H A DFREEBSD-Xlist476 lldb/source/Plugins/SystemRuntime/