Home
last modified time | relevance | path

Searched refs:reg_checkpoint (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextThreadMemory.cpp120 lldb_private::RegisterCheckpoint &reg_checkpoint) { in ReadAllRegisterValues() argument
123 return m_reg_ctx_sp->ReadAllRegisterValues(reg_checkpoint); in ReadAllRegisterValues()
136 const lldb_private::RegisterCheckpoint &reg_checkpoint) { in WriteAllRegisterValues() argument
139 return m_reg_ctx_sp->WriteAllRegisterValues(reg_checkpoint); in WriteAllRegisterValues()
H A DRegisterContextThreadMemory.h56 lldb_private::RegisterCheckpoint &reg_checkpoint) override;
60 const lldb_private::RegisterCheckpoint &reg_checkpoint) override;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.cpp475 RegisterCheckpoint &reg_checkpoint) {
488 reg_checkpoint.SetID(save_id); in ReadAllRegisterValues()
489 reg_checkpoint.GetData().reset(); in ReadAllRegisterValues()
492 reg_checkpoint.SetID(0); // Invalid save ID is zero in ReadAllRegisterValues()
493 return ReadAllRegisterValues(reg_checkpoint.GetData()); in ReadAllRegisterValues()
498 const RegisterCheckpoint &reg_checkpoint) {
499 uint32_t save_id = reg_checkpoint.GetID(); in WriteAllRegisterValues()
513 return WriteAllRegisterValues(reg_checkpoint.GetData()); in WriteAllRegisterValues()
477 ReadAllRegisterValues(RegisterCheckpoint & reg_checkpoint) ReadAllRegisterValues() argument
500 WriteAllRegisterValues(const RegisterCheckpoint & reg_checkpoint) WriteAllRegisterValues() argument
H A DGDBRemoteRegisterContext.h73 bool ReadAllRegisterValues(RegisterCheckpoint &reg_checkpoint) override;
76 WriteAllRegisterValues(const RegisterCheckpoint &reg_checkpoint) override;
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRegisterContext.cpp421 lldb_private::RegisterCheckpoint &reg_checkpoint) { in ReadAllRegisterValues() argument
422 return ReadAllRegisterValues(reg_checkpoint.GetData()); in ReadAllRegisterValues()
426 const lldb_private::RegisterCheckpoint &reg_checkpoint) { in WriteAllRegisterValues() argument
427 return WriteAllRegisterValues(reg_checkpoint.GetData()); in WriteAllRegisterValues()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRegisterContext.h71 ReadAllRegisterValues(lldb_private::RegisterCheckpoint &reg_checkpoint);
74 const lldb_private::RegisterCheckpoint &reg_checkpoint);