Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp1181 list_command_object->SetCommandName("watchpoint list"); in CommandObjectMultiwordWatchpoint()
1182 enable_command_object->SetCommandName("watchpoint enable"); in CommandObjectMultiwordWatchpoint()
1183 disable_command_object->SetCommandName("watchpoint disable"); in CommandObjectMultiwordWatchpoint()
1184 delete_command_object->SetCommandName("watchpoint delete"); in CommandObjectMultiwordWatchpoint()
1185 ignore_command_object->SetCommandName("watchpoint ignore"); in CommandObjectMultiwordWatchpoint()
1186 command_command_object->SetCommandName("watchpoint command"); in CommandObjectMultiwordWatchpoint()
1187 modify_command_object->SetCommandName("watchpoint modify"); in CommandObjectMultiwordWatchpoint()
1188 set_command_object->SetCommandName("watchpoint set"); in CommandObjectMultiwordWatchpoint()
H A DCommandObjectWatchpointCommand.cpp680 add_command_object->SetCommandName("watchpoint command add"); in CommandObjectWatchpointCommand()
681 delete_command_object->SetCommandName("watchpoint command delete"); in CommandObjectWatchpointCommand()
682 list_command_object->SetCommandName("watchpoint command list"); in CommandObjectWatchpointCommand()
H A DCommandObjectBreakpointCommand.cpp748 add_command_object->SetCommandName("breakpoint command add"); in CommandObjectBreakpointCommand()
749 delete_command_object->SetCommandName("breakpoint command delete"); in CommandObjectBreakpointCommand()
750 list_command_object->SetCommandName("breakpoint command list"); in CommandObjectBreakpointCommand()
H A DCommandObjectBreakpoint.cpp2554 list_command_object->SetCommandName("breakpoint list"); in CommandObjectMultiwordBreakpoint()
2555 enable_command_object->SetCommandName("breakpoint enable"); in CommandObjectMultiwordBreakpoint()
2556 disable_command_object->SetCommandName("breakpoint disable"); in CommandObjectMultiwordBreakpoint()
2557 clear_command_object->SetCommandName("breakpoint clear"); in CommandObjectMultiwordBreakpoint()
2558 delete_command_object->SetCommandName("breakpoint delete"); in CommandObjectMultiwordBreakpoint()
2559 set_command_object->SetCommandName("breakpoint set"); in CommandObjectMultiwordBreakpoint()
2560 command_command_object->SetCommandName("breakpoint command"); in CommandObjectMultiwordBreakpoint()
2561 modify_command_object->SetCommandName("breakpoint modify"); in CommandObjectMultiwordBreakpoint()
2562 name_command_object->SetCommandName("breakpoint name"); in CommandObjectMultiwordBreakpoint()
2563 write_command_object->SetCommandName("breakpoint write"); in CommandObjectMultiwordBreakpoint()
[all …]
H A DCommandObjectType.cpp2981 SetCommandName(name.GetString()); in CommandObjectFormatterInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandObject.h222 void SetCommandName(llvm::StringRef name);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandObject.cpp84 void CommandObject::SetCommandName(llvm::StringRef name) { m_cmd_name = name; } in SetCommandName() function in CommandObject