MCPcopy Index your code
hub / github.com/Audio4Linux/JDSP4Linux / listKeys

Method listKeys

src/utils/CliRemoteController.cpp:221–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219}
220
221bool CliRemoteController::listKeys() const
222{
223 QStringList keys;
224 if(checkConnectionAndLog()) {
225 auto reply = service->getKeys();
226 keys = handleReply(reply).value_or(keys);
227 }
228 keys = keys.empty() ? DspConfig::getKeys() : keys;
229 Log::console(keys.join("\n"), true);
230 return !keys.empty();
231}
232
233bool CliRemoteController::listPresets() const
234{

Callers

nothing calls this directly

Calls 3

handleReplyFunction · 0.85
getKeysMethod · 0.45
emptyMethod · 0.45

Tested by

no test coverage detected