Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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;
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBPlatform.cpp56 m_command = shell_command.str(); in PlatformShellCommand()
61 m_command = shell_command.str(); in PlatformShellCommand()
67 std::string m_command; member
221 if (m_opaque_ptr->m_command.empty()) in GetCommand()
223 return m_opaque_ptr->m_command.c_str(); in GetCommand()
230 m_opaque_ptr->m_command = shell_command; in SetCommand()
232 m_opaque_ptr->m_command.clear(); in SetCommand()
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DCompletionRequest.cpp17 : m_command(command_line), m_raw_cursor_pos(raw_cursor_pos), in CompletionRequest()