Home
last modified time | relevance | path

Searched refs:SetCommandName (Results 1 – 6 of 6) sorted by relevance

/external/lldb/source/Commands/
DCommandObjectWatchpoint.cpp1372 list_command_object->SetCommandName ("watchpoint list"); in CommandObjectMultiwordWatchpoint()
1373 enable_command_object->SetCommandName("watchpoint enable"); in CommandObjectMultiwordWatchpoint()
1374 disable_command_object->SetCommandName("watchpoint disable"); in CommandObjectMultiwordWatchpoint()
1375 delete_command_object->SetCommandName("watchpoint delete"); in CommandObjectMultiwordWatchpoint()
1376 ignore_command_object->SetCommandName("watchpoint ignore"); in CommandObjectMultiwordWatchpoint()
1377 command_command_object->SetCommandName ("watchpoint command"); in CommandObjectMultiwordWatchpoint()
1378 modify_command_object->SetCommandName("watchpoint modify"); in CommandObjectMultiwordWatchpoint()
1379 set_command_object->SetCommandName("watchpoint set"); in CommandObjectMultiwordWatchpoint()
DCommandObjectBreakpoint.cpp1747 list_command_object->SetCommandName ("breakpoint list"); in CommandObjectMultiwordBreakpoint()
1748 enable_command_object->SetCommandName("breakpoint enable"); in CommandObjectMultiwordBreakpoint()
1749 disable_command_object->SetCommandName("breakpoint disable"); in CommandObjectMultiwordBreakpoint()
1750 clear_command_object->SetCommandName("breakpoint clear"); in CommandObjectMultiwordBreakpoint()
1751 delete_command_object->SetCommandName("breakpoint delete"); in CommandObjectMultiwordBreakpoint()
1752 set_command_object->SetCommandName("breakpoint set"); in CommandObjectMultiwordBreakpoint()
1753 command_command_object->SetCommandName ("breakpoint command"); in CommandObjectMultiwordBreakpoint()
1754 modify_command_object->SetCommandName ("breakpoint modify"); in CommandObjectMultiwordBreakpoint()
DCommandObjectWatchpointCommand.cpp837 add_command_object->SetCommandName ("watchpoint command add"); in CommandObjectWatchpointCommand()
838 delete_command_object->SetCommandName ("watchpoint command delete"); in CommandObjectWatchpointCommand()
839 list_command_object->SetCommandName ("watchpoint command list"); in CommandObjectWatchpointCommand()
DCommandObjectBreakpointCommand.cpp902 add_command_object->SetCommandName ("breakpoint command add"); in CommandObjectBreakpointCommand()
903 delete_command_object->SetCommandName ("breakpoint command delete"); in CommandObjectBreakpointCommand()
904 list_command_object->SetCommandName ("breakpoint command list"); in CommandObjectBreakpointCommand()
/external/lldb/include/lldb/Interpreter/
DCommandObject.h308 SetCommandName (const char *name);
/external/lldb/source/Interpreter/
DCommandObject.cpp114 CommandObject::SetCommandName (const char *name) in SetCommandName() function in CommandObject