Lines Matching refs:OperatingSystemPython
1 //===-- OperatingSystemPython.cpp --------------------------------*- C++ -*-===//
14 #include "OperatingSystemPython.h"
45 OperatingSystemPython::Initialize()
53 OperatingSystemPython::Terminate()
59 OperatingSystemPython::CreateInstance (Process *process, bool force)
65 std::unique_ptr<OperatingSystemPython> os_ap (new OperatingSystemPython (process, python_os_plugin_spec));
74 OperatingSystemPython::GetPluginNameStatic()
81 OperatingSystemPython::GetPluginDescriptionStatic()
87 OperatingSystemPython::OperatingSystemPython (lldb_private::Process *process, const FileSpec &python_module_path) :
127 OperatingSystemPython::~OperatingSystemPython ()
132 OperatingSystemPython::GetDynamicRegisterInfo ()
141 log->Printf ("OperatingSystemPython::GetDynamicRegisterInfo() fetching thread register definitions from python for pid %" PRIu64, m_process->GetID());
158 OperatingSystemPython::GetPluginName()
164 OperatingSystemPython::GetPluginVersion()
170 OperatingSystemPython::UpdateThreadList (ThreadList &old_thread_list,
186 log->Printf ("OperatingSystemPython::UpdateThreadList() fetching thread data from python for pid %" PRIu64, m_process->GetID());
227 OperatingSystemPython::CreateThreadFromThreadInfo (PythonDictionary &thread_dict,
304 OperatingSystemPython::ThreadWasSelected (Thread *thread)
309 OperatingSystemPython::CreateRegisterContextForThread (Thread *thread, addr_t reg_data_addr)
332 log->Printf ("OperatingSystemPython::CreateRegisterContextForThread (tid = 0x%" PRIx64 ", 0x%" PRIx64 ", reg_data_addr = 0x%" PRIx64 ") creating memory register context",
343 log->Printf ("OperatingSystemPython::CreateRegisterContextForThread (tid = 0x%" PRIx64 ", 0x%" PRIx64 ") fetching register data from python",
367 log->Printf ("OperatingSystemPython::CreateRegisterContextForThread (tid = 0x%" PRIx64 ") forcing a dummy register context", thread->GetID());
374 OperatingSystemPython::CreateThreadStopReason (lldb_private::Thread *thread)
384 OperatingSystemPython::CreateThread (lldb::tid_t tid, addr_t context)
389 log->Printf ("OperatingSystemPython::CreateThread (tid = 0x%" PRIx64 ", context = 0x%" PRIx64 ") fetching register data from python", tid, context);