Searched refs:GDBRemoteRegisterContext (Results 1 – 5 of 5) sorted by relevance
1 //===-- GDBRemoteRegisterContext.cpp --------------------------------------===//9 #include "GDBRemoteRegisterContext.h"32 // GDBRemoteRegisterContext constructor in GDBRemoteRegisterContext() function in GDBRemoteRegisterContext 33 GDBRemoteRegisterContext::GDBRemoteRegisterContext( in GDBRemoteRegisterContext() 54 GDBRemoteRegisterContext::~GDBRemoteRegisterContext() = default;56 void GDBRemoteRegisterContext::InvalidateAllRegisters() { in InvalidateAllRegisters() 60 void GDBRemoteRegisterContext::SetAllRegisterValid(bool b) { in SetAllRegisterValid() 67 size_t GDBRemoteRegisterContext in GetRegisterCount() [all...]
1 //===-- GDBRemoteRegisterContext.h ------------------------------*- C++ -*-===//45 class GDBRemoteRegisterContext : public RegisterContext {47 GDBRemoteRegisterContext(ThreadGDBRemote &thread, uint32_t concrete_frame_idx,51 ~GDBRemoteRegisterContext() override;133 GDBRemoteRegisterContext(const GDBRemoteRegisterContext &) = delete;134 const GDBRemoteRegisterContext &135 operator=(const GDBRemoteRegisterContext &) = delete;
317 reg_ctx_sp = std::make_shared<GDBRemoteRegisterContext>( in CreateRegisterContextForFrame()329 GDBRemoteRegisterContext *gdb_reg_ctx = in PrivateSetRegisterValue()330 static_cast<GDBRemoteRegisterContext *>(GetRegisterContext().get()); in PrivateSetRegisterValue()336 GDBRemoteRegisterContext *gdb_reg_ctx = in PrivateSetRegisterValue()337 static_cast<GDBRemoteRegisterContext *>(GetRegisterContext().get()); in PrivateSetRegisterValue()
246 friend class GDBRemoteRegisterContext; variable
555 SRCS+= Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp