Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Core/
DIOHandler.cpp350 prompt = GetPrompt(); in GetLine()
462 const char *IOHandlerEditline::GetPrompt() { in GetPrompt() function in IOHandlerEditline
465 return m_editline_up->GetPrompt(); in GetPrompt()
533 GetPrompt() == nullptr ? " " : ""); in GetLines()
621 const char *prompt = GetPrompt(); in PrintAsync()
DDebugger.cpp201 llvm::StringRef new_prompt = GetPrompt(); in SetPropertyValue()
214 SetPrompt(GetPrompt()); in SetPropertyValue()
267 llvm::StringRef Debugger::GetPrompt() const { in GetPrompt() function in Debugger
276 llvm::StringRef new_prompt = GetPrompt(); in SetPrompt()
345 SetPrompt(GetPrompt()); in SetUseColor()
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_debugger.py53 obj.GetPrompt()
/external/llvm-project/lldb/utils/lui/
Ddebuggerdriver.py90 return self.debugger.GetPrompt()
/external/llvm-project/lldb/include/lldb/Core/
DIOHandler.h102 virtual const char *GetPrompt() { in GetPrompt() function
394 const char *GetPrompt() override;
DDebugger.h261 llvm::StringRef GetPrompt() const;
/external/llvm-project/lldb/include/lldb/Host/
DEditline.h179 const char *GetPrompt();
/external/llvm-project/lldb/bindings/interface/
DSBDebugger.i429 GetPrompt() const;
/external/llvm-project/lldb/include/lldb/API/
DSBDebugger.h257 const char *GetPrompt() const;
/external/llvm-project/lldb/source/API/
DSBDebugger.cpp1329 const char *SBDebugger::GetPrompt() const { in GetPrompt() function in SBDebugger
1330 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBDebugger, GetPrompt); in GetPrompt()
1336 (m_opaque_sp ? m_opaque_sp->GetPrompt().str().c_str() : "")); in GetPrompt()
1338 return (m_opaque_sp ? ConstString(m_opaque_sp->GetPrompt()).GetCString() in GetPrompt()
1802 LLDB_REGISTER_METHOD_CONST(const char *, SBDebugger, GetPrompt, ()); in RegisterMethods()
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp2302 m_debugger.GetPrompt().str().c_str(), cmd); in HandleCommands()
2545 debugger.GetPrompt(), llvm::StringRef(), in HandleCommandsFromFile()
2834 "%s%s\n", io_handler.GetPrompt(), line.c_str()); in IOHandlerInputComplete()
3054 m_debugger.GetErrorStreamSP(), flags, "lldb", m_debugger.GetPrompt(), in GetIOHandler()
/external/llvm-project/lldb/source/Host/common/
DEditline.cpp1423 const char *Editline::GetPrompt() { return m_set_prompt.c_str(); } in GetPrompt() function in Editline