Lines Matching refs:NativeProcessProtocol

26 NativeProcessProtocol::NativeProcessProtocol(lldb::pid_t pid, int terminal_fd,  in NativeProcessProtocol()  function in NativeProcessProtocol
32 lldb_private::Status NativeProcessProtocol::Interrupt() { in Interrupt()
42 Status NativeProcessProtocol::IgnoreSignals(llvm::ArrayRef<int> signals) { in IgnoreSignals()
49 NativeProcessProtocol::GetMemoryRegionInfo(lldb::addr_t load_addr, in GetMemoryRegionInfo()
56 NativeProcessProtocol::ReadMemoryTags(int32_t type, lldb::addr_t addr, in ReadMemoryTags()
62 NativeProcessProtocol::WriteMemoryTags(int32_t type, lldb::addr_t addr, in WriteMemoryTags()
68 llvm::Optional<WaitStatus> NativeProcessProtocol::GetExitStatus() { in GetExitStatus()
75 bool NativeProcessProtocol::SetExitStatus(WaitStatus status, in SetExitStatus()
98 NativeThreadProtocol *NativeProcessProtocol::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex()
106 NativeProcessProtocol::GetThreadByIDUnlocked(lldb::tid_t tid) { in GetThreadByIDUnlocked()
114 NativeThreadProtocol *NativeProcessProtocol::GetThreadByID(lldb::tid_t tid) { in GetThreadByID()
119 bool NativeProcessProtocol::IsAlive() const { in IsAlive()
125 NativeProcessProtocol::GetWatchpointMap() const { in GetWatchpointMap()
130 NativeProcessProtocol::GetHardwareDebugSupportInfo() const { in GetHardwareDebugSupportInfo()
135 const_cast<NativeProcessProtocol *>(this)->GetThreadAtIndex(0)); in GetHardwareDebugSupportInfo()
146 Status NativeProcessProtocol::SetWatchpoint(lldb::addr_t addr, size_t size, in SetWatchpoint()
206 Status NativeProcessProtocol::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint()
230 NativeProcessProtocol::GetHardwareBreakpointMap() const { in GetHardwareBreakpointMap()
234 Status NativeProcessProtocol::SetHardwareBreakpoint(lldb::addr_t addr, in SetHardwareBreakpoint()
291 Status NativeProcessProtocol::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint()
309 void NativeProcessProtocol::SynchronouslyNotifyProcessStateChanged( in SynchronouslyNotifyProcessStateChanged()
319 void NativeProcessProtocol::NotifyDidExec() { in NotifyDidExec()
326 Status NativeProcessProtocol::SetSoftwareBreakpoint(lldb::addr_t addr, in SetSoftwareBreakpoint()
344 Status NativeProcessProtocol::RemoveSoftwareBreakpoint(lldb::addr_t addr) { in RemoveSoftwareBreakpoint()
408 llvm::Expected<NativeProcessProtocol::SoftwareBreakpoint>
409 NativeProcessProtocol::EnableSoftwareBreakpoint(lldb::addr_t addr, in EnableSoftwareBreakpoint()
487 NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode(size_t size_hint) { in GetSoftwareBreakpointTrapOpcode()
529 size_t NativeProcessProtocol::GetSoftwareBreakpointPCOffset() { in GetSoftwareBreakpointPCOffset()
555 void NativeProcessProtocol::FixupBreakpointPCAsNeeded( in FixupBreakpointPCAsNeeded()
605 Status NativeProcessProtocol::RemoveBreakpoint(lldb::addr_t addr, in RemoveBreakpoint()
613 Status NativeProcessProtocol::ReadMemoryWithoutTrap(lldb::addr_t addr, in ReadMemoryWithoutTrap()
642 NativeProcessProtocol::ReadCStringFromMemory(lldb::addr_t addr, char *buffer, in ReadCStringFromMemory()
693 lldb::StateType NativeProcessProtocol::GetState() const { in GetState()
698 void NativeProcessProtocol::SetState(lldb::StateType state, in SetState()
722 uint32_t NativeProcessProtocol::GetStopID() const { in GetStopID()
727 void NativeProcessProtocol::DoStopIDBumped(uint32_t /* newBumpId */) { in DoStopIDBumped()
731 NativeProcessProtocol::Factory::~Factory() = default;