Home
last modified time | relevance | path

Searched refs:m_command (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h121 return m_command.substr(0, GetRawCursorPos()); in GetRawLine()
130 llvm::StringRef GetRawLineWithUnusedSuffix() const { return m_command; } in GetRawLineWithUnusedSuffix()
223 llvm::StringRef m_command;
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp55 : m_command(), m_working_dir(), m_status(0), m_signo(0) { in PlatformShellCommand()
60 m_command = shell_command.str(); in PlatformShellCommand()
64 : m_shell(), m_command(), m_working_dir() { in PlatformShellCommand()
66 m_command = shell_command.str(); in PlatformShellCommand()
72 std::string m_command; member
242 if (m_opaque_ptr->m_command.empty()) in GetCommand()
244 return m_opaque_ptr->m_command.c_str(); in GetCommand()
252 m_opaque_ptr->m_command = shell_command; in SetCommand()
254 m_opaque_ptr->m_command.clear(); in SetCommand()
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DCompletionRequest.cpp17 : m_command(command_line), m_raw_cursor_pos(raw_cursor_pos), in CompletionRequest()