Lines Matching refs:ProcessWindows

48 LLDB_PLUGIN_DEFINE_ADV(ProcessWindows, ProcessWindowsCommon)
81 ProcessSP ProcessWindows::CreateInstance(lldb::TargetSP target_sp, in CreateInstance()
85 return ProcessSP(new ProcessWindows(target_sp, listener_sp)); in CreateInstance()
96 void ProcessWindows::Initialize() { in Initialize()
108 void ProcessWindows::Terminate() {} in Terminate()
110 llvm::StringRef ProcessWindows::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
116 ProcessWindows::ProcessWindows(lldb::TargetSP target_sp, in ProcessWindows() function in lldb_private::ProcessWindows
123 ProcessWindows::~ProcessWindows() {} in ~ProcessWindows()
125 size_t ProcessWindows::GetSTDOUT(char *buf, size_t buf_size, Status &error) { in GetSTDOUT()
130 size_t ProcessWindows::GetSTDERR(char *buf, size_t buf_size, Status &error) { in GetSTDERR()
135 size_t ProcessWindows::PutSTDIN(const char *buf, size_t buf_size, in PutSTDIN()
141 Status ProcessWindows::EnableBreakpointSite(BreakpointSite *bp_site) { in EnableBreakpointSite()
155 Status ProcessWindows::DisableBreakpointSite(BreakpointSite *bp_site) { in DisableBreakpointSite()
167 Status ProcessWindows::DoDetach(bool keep_stopped) { in DoDetach()
186 Status ProcessWindows::DoLaunch(Module *exe_module, in DoLaunch()
197 ProcessWindows::DoAttachToProcessWithID(lldb::pid_t pid, in DoAttachToProcessWithID()
206 Status ProcessWindows::DoResume() { in DoResume()
256 Status ProcessWindows::DoDestroy() { in DoDestroy()
261 Status ProcessWindows::DoHalt(bool &caused_stop) { in DoHalt()
269 void ProcessWindows::DidLaunch() { in DidLaunch()
274 void ProcessWindows::DidAttach(ArchSpec &arch_spec) { in DidAttach()
352 void ProcessWindows::RefreshStateAfterStop() { in RefreshStateAfterStop()
508 bool ProcessWindows::CanDebug(lldb::TargetSP target_sp, in CanDebug()
522 bool ProcessWindows::DoUpdateThreadList(ThreadList &old_thread_list, in DoUpdateThreadList()
566 bool ProcessWindows::IsAlive() { in IsAlive()
580 ArchSpec ProcessWindows::GetSystemArchitecture() { in GetSystemArchitecture()
584 size_t ProcessWindows::DoReadMemory(lldb::addr_t vm_addr, void *buf, in DoReadMemory()
591 size_t ProcessWindows::DoWriteMemory(lldb::addr_t vm_addr, const void *buf, in DoWriteMemory()
598 lldb::addr_t ProcessWindows::DoAllocateMemory(size_t size, uint32_t permissions, in DoAllocateMemory()
605 Status ProcessWindows::DoDeallocateMemory(lldb::addr_t ptr) { in DoDeallocateMemory()
609 Status ProcessWindows::DoGetMemoryRegionInfo(lldb::addr_t vm_addr, in DoGetMemoryRegionInfo()
614 lldb::addr_t ProcessWindows::GetImageInfoAddress() { in GetImageInfoAddress()
624 DynamicLoaderWindowsDYLD *ProcessWindows::GetDynamicLoader() { in GetDynamicLoader()
631 void ProcessWindows::OnExitProcess(uint32_t exit_code) { in OnExitProcess()
650 void ProcessWindows::OnDebuggerConnected(lldb::addr_t image_base) { in OnDebuggerConnected()
698 ProcessWindows::OnDebugException(bool first_chance, in OnDebugException()
764 void ProcessWindows::OnCreateThread(const HostThread &new_thread) { in OnCreateThread()
784 void ProcessWindows::OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) { in OnExitThread()
802 void ProcessWindows::OnLoadDll(const ModuleSpec &module_spec, in OnLoadDll()
808 void ProcessWindows::OnUnloadDll(lldb::addr_t module_addr) { in OnUnloadDll()
813 void ProcessWindows::OnDebugString(const std::string &string) {} in OnDebugString()
815 void ProcessWindows::OnDebuggerError(const Status &error, uint32_t type) { in OnDebuggerError()
840 Status ProcessWindows::GetWatchpointSupportInfo(uint32_t &num) { in GetWatchpointSupportInfo()
845 Status ProcessWindows::GetWatchpointSupportInfo(uint32_t &num, bool &after) { in GetWatchpointSupportInfo()
851 Status ProcessWindows::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint()
905 Status ProcessWindows::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()