MCPcopy Create free account
hub / github.com/KDE/kdevelop / fetchMoreChildren

Method fetchMoreChildren

plugins/debuggercommon/mivariable.cpp:248–260  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246};
247
248void MIVariable::fetchMoreChildren()
249{
250 int c = childItems.size();
251 // FIXME: should not even try this if app is not started.
252 // Probably need to disable open, or something
253 if (sessionIsAlive()) {
254 m_debugSession->addCommand(VarListChildren,
255 QStringLiteral("--all-values \"%1\" %2 %3")
256 // fetch from .. to ..
257 .arg(m_varobj).arg(c).arg(c + s_fetchStep),
258 new FetchMoreChildrenHandler(this, m_debugSession));
259 }
260}
261
262void MIVariable::handleUpdate(const Value& var)
263{

Callers 2

verifyVariableMethod · 0.45
handleMethod · 0.45

Calls 2

addCommandMethod · 0.60
sizeMethod · 0.45

Tested by 1

verifyVariableMethod · 0.36