Symbol: _RegisterCommand
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
302
if (_RegisterCommand("bt sc", new(std::nothrow) CliStackTraceCommand)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
303
&& _RegisterCommand("continue", new(std::nothrow) CliContinueCommand)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
304
&& _RegisterCommand("db", new(std::nothrow)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
306
&& _RegisterCommand("ds", new(std::nothrow)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
308
&& _RegisterCommand("dw", new(std::nothrow)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
310
&& _RegisterCommand("dl", new(std::nothrow)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
312
&& _RegisterCommand("frame", new(std::nothrow) CliStackFrameCommand)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
313
&& _RegisterCommand("help", new(std::nothrow) HelpCommand(this))
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
314
&& _RegisterCommand("print", new(std::nothrow) CliPrintVariableCommand)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
315
&& _RegisterCommand("quit", new(std::nothrow) CliQuitCommand)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
316
&& _RegisterCommand("save-report",
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
318
&& _RegisterCommand("stop", new(std::nothrow) CliStopCommand)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
319
&& _RegisterCommand("string", new(std::nothrow)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
321
&& _RegisterCommand("thread", new(std::nothrow) CliThreadCommand)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
322
&& _RegisterCommand("threads", new(std::nothrow) CliThreadsCommand)
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
323
&& _RegisterCommand("variables",
src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp
325
&& _RegisterCommand("write-core",
src/apps/debugger/user_interface/cli/CommandLineUserInterface.h
69
bool _RegisterCommand(const BString& name,