Home
last modified time | relevance | path

Searched refs:GetPrompt (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/lldb/source/Core/
H A DIOHandler.cpp373 prompt = GetPrompt(); in GetLine()
469 const char *IOHandlerEditline::GetPrompt() { in GetPrompt() function in IOHandlerEditline
472 return m_editline_up->GetPrompt(); in GetPrompt()
540 GetPrompt() == nullptr ? " " : ""); in GetLines()
630 const char *prompt = GetPrompt(); in PrintAsync()
H A DDebugger.cpp214 llvm::StringRef new_prompt = GetPrompt(); in SetPropertyValue()
227 SetPrompt(GetPrompt()); in SetPropertyValue()
286 llvm::StringRef Debugger::GetPrompt() const { in GetPrompt() function in Debugger
295 llvm::StringRef new_prompt = GetPrompt(); in SetPrompt()
378 SetPrompt(GetPrompt()); in SetUseColor()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_debugger.py54 obj.GetPrompt()
/llvm-project-15.0.7/lldb/utils/lui/
H A Ddebuggerdriver.py90 return self.debugger.GetPrompt()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DIOHandler.h102 virtual const char *GetPrompt() { in GetPrompt() function
394 const char *GetPrompt() override;
H A DDebugger.h291 llvm::StringRef GetPrompt() const;
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DEditline.h179 const char *GetPrompt();
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBDebugger.i451 GetPrompt() const;
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBDebugger.h308 const char *GetPrompt() const;
/llvm-project-15.0.7/lldb/source/API/
H A DSBDebugger.cpp1345 const char *SBDebugger::GetPrompt() const { in GetPrompt() function in SBDebugger
1352 (m_opaque_sp ? m_opaque_sp->GetPrompt().str().c_str() : "")); in GetPrompt()
1354 return (m_opaque_sp ? ConstString(m_opaque_sp->GetPrompt()).GetCString() in GetPrompt()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2504 m_debugger.GetPrompt().str().c_str(), cmd); in HandleCommands()
2743 debugger.GetPrompt(), llvm::StringRef(), in HandleCommandsFromFile()
3044 "%s%s\n", io_handler.GetPrompt(), line.c_str()); in IOHandlerInputComplete()
3287 m_debugger.GetErrorStreamSP(), flags, "lldb", m_debugger.GetPrompt(), in GetIOHandler()
/llvm-project-15.0.7/lldb/source/Host/common/
H A DEditline.cpp1474 const char *Editline::GetPrompt() { return m_set_prompt.c_str(); } in GetPrompt() function in Editline