Home
last modified time | relevance | path

Searched refs:SetPrompt (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DIOHandler.h107 virtual bool SetPrompt(llvm::StringRef prompt) { in SetPrompt() function
111 bool SetPrompt(const char *) = delete;
396 bool SetPrompt(llvm::StringRef prompt) override;
397 bool SetPrompt(const char *prompt) = delete;
H A DDebugger.h293 void SetPrompt(llvm::StringRef p);
294 void SetPrompt(const char *) = delete;
/llvm-project-15.0.7/lldb/source/Core/
H A DIOHandler.cpp158 SetPrompt(prompt_stream.GetString()); in IOHandlerConfirm()
261 SetPrompt(prompt); in IOHandlerEditline()
306 SetPrompt(prompt); in IOHandlerEditline()
483 bool IOHandlerEditline::SetPrompt(llvm::StringRef prompt) { in SetPrompt() function in IOHandlerEditline
488 m_editline_up->SetPrompt(m_prompt.empty() ? nullptr : m_prompt.c_str()); in SetPrompt()
H A DDebugger.cpp227 SetPrompt(GetPrompt()); in SetPropertyValue()
292 void Debugger::SetPrompt(llvm::StringRef p) { in SetPrompt() function in Debugger
378 SetPrompt(GetPrompt()); in SetUseColor()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_debugger.py55 obj.SetPrompt("Hi, Mom!")
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp67 SetPrompt(llvm::StringRef("..> ")); in IOHandlerActivated()
74 SetPrompt(llvm::StringRef("..> ")); in IOHandlerActivated()
/llvm-project-15.0.7/lldb/test/API/python_api/debugger/
H A DTestDebuggerAPI.py30 self.dbg.SetPrompt(None)
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DEditline.h168 void SetPrompt(const char *prompt);
/llvm-project-15.0.7/lldb/unittests/Editline/
H A DEditlineTest.cpp122 _editline_sp->SetPrompt("> "); in EditlineAdapter()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBDebugger.i454 SetPrompt (const char *prompt);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBDebugger.h310 void SetPrompt(const char *prompt);
/llvm-project-15.0.7/lldb/source/API/
H A DSBDebugger.cpp1358 void SBDebugger::SetPrompt(const char *prompt) { in SetPrompt() function in SBDebugger
1362 m_opaque_sp->SetPrompt(llvm::StringRef(prompt)); in SetPrompt()
/llvm-project-15.0.7/lldb/source/Host/common/
H A DEditline.cpp1436 void Editline::SetPrompt(const char *prompt) { in SetPrompt() function in Editline
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2086 m_command_io_handler_sp->SetPrompt(new_prompt); in UpdatePrompt()