Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DSystemRuntime.cpp18 SystemRuntime *SystemRuntime::FindPlugin(Process *process) { in FindPlugin()
24 std::unique_ptr<SystemRuntime> instance_ap(create_callback(process)); in FindPlugin()
34 SystemRuntime::SystemRuntime(Process *process) in SystemRuntime() function in SystemRuntime
37 SystemRuntime::~SystemRuntime() = default;
39 void SystemRuntime::DidAttach() {} in DidAttach()
41 void SystemRuntime::DidLaunch() {} in DidLaunch()
43 void SystemRuntime::Detach() {} in Detach()
45 void SystemRuntime::ModulesDidLoad(ModuleList &module_list) {} in ModulesDidLoad()
47 const std::vector<ConstString> &SystemRuntime::GetExtendedBacktraceTypes() { in GetExtendedBacktraceTypes()
51 ThreadSP SystemRuntime::GetExtendedBacktraceThread(ThreadSP thread, in GetExtendedBacktraceThread()
H A DQueueItem.cpp101 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in FetchEntireItem()
H A DProcess.cpp2788 SystemRuntime *system_runtime = GetSystemRuntime(); in Launch()
2849 SystemRuntime *system_runtime = GetSystemRuntime(); in LoadCore()
2894 SystemRuntime *Process::GetSystemRuntime() { in GetSystemRuntime()
2896 m_system_runtime_ap.reset(SystemRuntime::FindPlugin(this)); in GetSystemRuntime()
3182 SystemRuntime *system_runtime = GetSystemRuntime(); in CompleteAttach()
5838 SystemRuntime *sys_runtime = GetSystemRuntime(); in ModulesDidLoad()
H A DThread.cpp1848 SystemRuntime *runtime = process->GetSystemRuntime(); in SafeToCallFunctions()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DSystemRuntime.h45 class SystemRuntime : public PluginInterface {
57 static SystemRuntime *FindPlugin(Process *process);
62 SystemRuntime(lldb_private::Process *process);
70 ~SystemRuntime() override;
345 DISALLOW_COPY_AND_ASSIGN(SystemRuntime);
H A DProcess.h902 virtual SystemRuntime *GetSystemRuntime();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp101 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetQueueName()
131 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetQueueKind()
155 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetQueueID()
182 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetQueueLibdispatchQueueAddress()
H A DProcessGDBRemote.cpp4079 SystemRuntime *runtime = GetSystemRuntime(); in GetExtendedInfoForThread()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.h62 SystemRuntime *GetSystemRuntime() override { return nullptr; } in GetSystemRuntime()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h227 class SystemRuntime; variable
367 typedef std::shared_ptr<lldb_private::SystemRuntime> SystemRuntimeSP;
368 typedef std::unique_ptr<lldb_private::SystemRuntime> SystemRuntimeUP;
H A Dlldb-private-interfaces.h63 typedef SystemRuntime *(*SystemRuntimeCreateInstance)(Process *process);
/freebsd-12.1/contrib/llvm/tools/lldb/
H A DFREEBSD-Xlist153 source/Plugins/SystemRuntime/
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBProcess.cpp1286 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetNumExtendedBacktraceTypes()
1295 SystemRuntime *runtime = process_sp->GetSystemRuntime(); in GetExtendedBacktraceTypeAtIndex()
H A DSBThread.cpp1440 SystemRuntime *runtime = process->GetSystemRuntime(); in GetExtendedBacktraceThread()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile550 SRCS+= Target/SystemRuntime.cpp
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectThread.cpp338 SystemRuntime *runtime = thread->GetProcess()->GetSystemRuntime(); in DoExtendedBacktrace()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DPluginManager.cpp915 #pragma mark SystemRuntime