Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp1165 list_command_object->SetCommandName("watchpoint list"); in CommandObjectMultiwordWatchpoint()
1166 enable_command_object->SetCommandName("watchpoint enable"); in CommandObjectMultiwordWatchpoint()
1167 disable_command_object->SetCommandName("watchpoint disable"); in CommandObjectMultiwordWatchpoint()
1168 delete_command_object->SetCommandName("watchpoint delete"); in CommandObjectMultiwordWatchpoint()
1169 ignore_command_object->SetCommandName("watchpoint ignore"); in CommandObjectMultiwordWatchpoint()
1170 command_command_object->SetCommandName("watchpoint command"); in CommandObjectMultiwordWatchpoint()
1171 modify_command_object->SetCommandName("watchpoint modify"); in CommandObjectMultiwordWatchpoint()
1172 set_command_object->SetCommandName("watchpoint set"); in CommandObjectMultiwordWatchpoint()
H A DCommandObjectWatchpointCommand.cpp582 add_command_object->SetCommandName("watchpoint command add"); in CommandObjectWatchpointCommand()
583 delete_command_object->SetCommandName("watchpoint command delete"); in CommandObjectWatchpointCommand()
584 list_command_object->SetCommandName("watchpoint command list"); in CommandObjectWatchpointCommand()
H A DCommandObjectBreakpointCommand.cpp646 add_command_object->SetCommandName("breakpoint command add"); in CommandObjectBreakpointCommand()
647 delete_command_object->SetCommandName("breakpoint command delete"); in CommandObjectBreakpointCommand()
648 list_command_object->SetCommandName("breakpoint command list"); in CommandObjectBreakpointCommand()
H A DCommandObjectMemoryTag.cpp310 read_command_object->SetCommandName("memory tag read"); in CommandObjectMemoryTag()
315 write_command_object->SetCommandName("memory tag write"); in CommandObjectMemoryTag()
H A DCommandObjectBreakpoint.cpp2424 list_command_object->SetCommandName("breakpoint list"); in CommandObjectMultiwordBreakpoint()
2425 enable_command_object->SetCommandName("breakpoint enable"); in CommandObjectMultiwordBreakpoint()
2426 disable_command_object->SetCommandName("breakpoint disable"); in CommandObjectMultiwordBreakpoint()
2427 clear_command_object->SetCommandName("breakpoint clear"); in CommandObjectMultiwordBreakpoint()
2428 delete_command_object->SetCommandName("breakpoint delete"); in CommandObjectMultiwordBreakpoint()
2429 set_command_object->SetCommandName("breakpoint set"); in CommandObjectMultiwordBreakpoint()
2430 command_command_object->SetCommandName("breakpoint command"); in CommandObjectMultiwordBreakpoint()
2431 modify_command_object->SetCommandName("breakpoint modify"); in CommandObjectMultiwordBreakpoint()
2432 name_command_object->SetCommandName("breakpoint name"); in CommandObjectMultiwordBreakpoint()
2433 write_command_object->SetCommandName("breakpoint write"); in CommandObjectMultiwordBreakpoint()
[all …]
H A DCommandObjectType.cpp803 SetCommandName(s.GetData()); in CommandObjectTypeFormatterDelete()
2735 SetCommandName(name.GetString()); in CommandObjectFormatterInfo()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObject.h249 void SetCommandName(llvm::StringRef name);
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandObject.cpp83 void CommandObject::SetCommandName(llvm::StringRef name) { in SetCommandName() function in CommandObject