MCPcopy Create free account
hub / github.com/Vector35/debugger / Update

Method Update

core/debuggerstate.cpp:46–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44
45
46void DebuggerRegisters::Update()
47{
48 DebugAdapter* adapter = m_state->GetAdapter();
49 if (!adapter)
50 return;
51
52 if (!m_state->IsConnected())
53 return;
54
55 m_registerCache = adapter->ReadAllRegisters();
56 m_dirty = false;
57}
58
59
60uint64_t DebuggerRegisters::GetRegisterValue(const std::string& name)

Callers 2

UpdateCachesMethod · 0.80
SetActiveThreadMethod · 0.80

Calls 6

GetAdapterMethod · 0.45
IsConnectedMethod · 0.45
ReadAllRegistersMethod · 0.45
GetThreadListMethod · 0.45
GetFramesOfThreadMethod · 0.45
GetModuleListMethod · 0.45

Tested by

no test coverage detected