MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / linesStartingWith

Function linesStartingWith

tests/perf_telemetry_test.cpp:57–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55}
56
57QStringList linesStartingWith(const char* prefix)
58{
59 QStringList out;
60 for (const auto& line : g_capturedLines)
61 if (line.startsWith(QLatin1String(prefix)))
62 out << line;
63 return out;
64}
65
66QStringList stallLines() { return linesStartingWith("PerfStall"); }
67QStringList summaryLines() { return linesStartingWith("PerfSummary"); }

Callers 2

stallLinesFunction · 0.85
summaryLinesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected