Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DIOHandler.h100 virtual bool SetPrompt(llvm::StringRef prompt) { in SetPrompt() function
104 bool SetPrompt(const char *) = delete;
398 bool SetPrompt(llvm::StringRef prompt) override;
399 bool SetPrompt(const char *prompt) = delete;
H A DDebugger.h261 void SetPrompt(llvm::StringRef p);
262 void SetPrompt(const char *) = delete;
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmnStreamStdin.h38 bool SetPrompt(const CMIUtilString &vNewPrompt);
H A DMICmnStreamStdin.cpp129 bool CMICmnStreamStdin::SetPrompt(const CMIUtilString &vNewPrompt) { in SetPrompt() function in CMICmnStreamStdin
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DEditline.h160 void SetPrompt(const char *prompt);
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBDebugger.h229 void SetPrompt(const char *prompt);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDebugger.cpp347 SetPrompt(GetPrompt()); in SetPropertyValue()
405 void Debugger::SetPrompt(llvm::StringRef p) { in SetPrompt() function in Debugger
474 SetPrompt(GetPrompt()); in SetUseColor()
H A DIOHandler.cpp166 SetPrompt(prompt_stream.GetString()); in IOHandlerConfirm()
295 SetPrompt(prompt); in IOHandlerEditline()
319 SetPrompt(prompt); in IOHandlerEditline()
456 bool IOHandlerEditline::SetPrompt(llvm::StringRef prompt) { in SetPrompt() function in IOHandlerEditline
461 m_editline_ap->SetPrompt(m_prompt.empty() ? nullptr : m_prompt.c_str()); in SetPrompt()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBDebugger.cpp1059 void SBDebugger::SetPrompt(const char *prompt) { in SetPrompt() function in SBDebugger
1061 m_opaque_sp->SetPrompt(llvm::StringRef::withNullAsEmpty(prompt)); in SetPrompt()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DEditline.cpp1212 void Editline::SetPrompt(const char *prompt) { in SetPrompt() function in Editline
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1904 m_command_io_handler_sp->SetPrompt(new_prompt); in UpdatePrompt()