Home
last modified time | relevance | path

Searched refs:ProcessWindows (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DProcessWindows.cpp47 LLDB_PLUGIN_DEFINE_ADV(ProcessWindows, ProcessWindowsCommon)
80 ProcessSP ProcessWindows::CreateInstance(lldb::TargetSP target_sp, in CreateInstance()
84 return ProcessSP(new ProcessWindows(target_sp, listener_sp)); in CreateInstance()
95 void ProcessWindows::Initialize() { in Initialize()
107 void ProcessWindows::Terminate() {} in Terminate()
109 lldb_private::ConstString ProcessWindows::GetPluginNameStatic() { in GetPluginNameStatic()
114 const char *ProcessWindows::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
120 ProcessWindows::ProcessWindows(lldb::TargetSP target_sp, in ProcessWindows() function in lldb_private::ProcessWindows
127 ProcessWindows::~ProcessWindows() {} in ~ProcessWindows()
129 size_t ProcessWindows::GetSTDOUT(char *buf, size_t buf_size, Status &error) { in GetSTDOUT()
[all …]
DTargetThreadWindows.h20 class ProcessWindows; variable
26 TargetThreadWindows(ProcessWindows &process, const HostThread &thread);
DLocalDebugDelegate.h20 class ProcessWindows; variable
21 typedef std::shared_ptr<ProcessWindows> ProcessWindowsSP;
DProcessWindows.h23 class ProcessWindows : public Process, public ProcessDebugger {
40 ProcessWindows(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp);
42 ~ProcessWindows();
DForwardDecl.h29 class ProcessWindows; variable
DCMakeLists.txt14 ProcessWindows.cpp
DLocalDebugDelegate.cpp71 return std::static_pointer_cast<ProcessWindows>(process); in GetProcessPointer()
DTargetThreadWindows.cpp36 TargetThreadWindows::TargetThreadWindows(ProcessWindows &process, in TargetThreadWindows()