Lines Matching refs:NativeProcessProtocol

27 NativeProcessProtocol::NativeProcessProtocol(lldb::pid_t pid, int terminal_fd,  in NativeProcessProtocol()  function in NativeProcessProtocol
35 lldb_private::Status NativeProcessProtocol::Interrupt() { in Interrupt()
45 Status NativeProcessProtocol::IgnoreSignals(llvm::ArrayRef<int> signals) { in IgnoreSignals()
52 NativeProcessProtocol::GetMemoryRegionInfo(lldb::addr_t load_addr, in GetMemoryRegionInfo()
58 llvm::Optional<WaitStatus> NativeProcessProtocol::GetExitStatus() { in GetExitStatus()
65 bool NativeProcessProtocol::SetExitStatus(WaitStatus status, in SetExitStatus()
88 NativeThreadProtocol *NativeProcessProtocol::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex()
96 NativeProcessProtocol::GetThreadByIDUnlocked(lldb::tid_t tid) { in GetThreadByIDUnlocked()
104 NativeThreadProtocol *NativeProcessProtocol::GetThreadByID(lldb::tid_t tid) { in GetThreadByID()
109 bool NativeProcessProtocol::IsAlive() const { in IsAlive()
115 NativeProcessProtocol::GetWatchpointMap() const { in GetWatchpointMap()
120 NativeProcessProtocol::GetHardwareDebugSupportInfo() const { in GetHardwareDebugSupportInfo()
125 const_cast<NativeProcessProtocol *>(this)->GetThreadAtIndex(0)); in GetHardwareDebugSupportInfo()
136 Status NativeProcessProtocol::SetWatchpoint(lldb::addr_t addr, size_t size, in SetWatchpoint()
196 Status NativeProcessProtocol::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint()
220 NativeProcessProtocol::GetHardwareBreakpointMap() const { in GetHardwareBreakpointMap()
224 Status NativeProcessProtocol::SetHardwareBreakpoint(lldb::addr_t addr, in SetHardwareBreakpoint()
281 Status NativeProcessProtocol::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint()
299 bool NativeProcessProtocol::RegisterNativeDelegate( in RegisterNativeDelegate()
311 bool NativeProcessProtocol::UnregisterNativeDelegate( in UnregisterNativeDelegate()
325 void NativeProcessProtocol::SynchronouslyNotifyProcessStateChanged( in SynchronouslyNotifyProcessStateChanged()
346 void NativeProcessProtocol::NotifyDidExec() { in NotifyDidExec()
359 Status NativeProcessProtocol::SetSoftwareBreakpoint(lldb::addr_t addr, in SetSoftwareBreakpoint()
377 Status NativeProcessProtocol::RemoveSoftwareBreakpoint(lldb::addr_t addr) { in RemoveSoftwareBreakpoint()
441 llvm::Expected<NativeProcessProtocol::SoftwareBreakpoint>
442 NativeProcessProtocol::EnableSoftwareBreakpoint(lldb::addr_t addr, in EnableSoftwareBreakpoint()
520 NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode(size_t size_hint) { in GetSoftwareBreakpointTrapOpcode()
556 size_t NativeProcessProtocol::GetSoftwareBreakpointPCOffset() { in GetSoftwareBreakpointPCOffset()
579 void NativeProcessProtocol::FixupBreakpointPCAsNeeded( in FixupBreakpointPCAsNeeded()
629 Status NativeProcessProtocol::RemoveBreakpoint(lldb::addr_t addr, in RemoveBreakpoint()
637 Status NativeProcessProtocol::ReadMemoryWithoutTrap(lldb::addr_t addr, in ReadMemoryWithoutTrap()
665 lldb::StateType NativeProcessProtocol::GetState() const { in GetState()
670 void NativeProcessProtocol::SetState(lldb::StateType state, in SetState()
694 uint32_t NativeProcessProtocol::GetStopID() const { in GetStopID()
699 void NativeProcessProtocol::DoStopIDBumped(uint32_t /* newBumpId */) { in DoStopIDBumped()
703 NativeProcessProtocol::Factory::~Factory() = default;