LLDB mainline
|
#include "lldb/Host/Config.h"
#include <locale>
#include <sstream>
#include <vector>
#include "lldb/lldb-private.h"
#include <histedit.h>
#include <csignal>
#include <mutex>
#include <optional>
#include <string>
#include "lldb/Host/ConnectionFileDescriptor.h"
#include "lldb/Utility/CompletionRequest.h"
#include "lldb/Utility/FileSpec.h"
#include "lldb/Utility/Predicate.h"
#include "lldb/Utility/StringList.h"
#include "llvm/ADT/FunctionExtras.h"
Go to the source code of this file.
Classes | |
class | lldb_private::Editline |
Instances of Editline provide an abstraction over libedit's EditLine facility. More... | |
Namespaces | |
namespace | lldb_private |
A class that represents a running process on the host machine. | |
namespace | lldb_private::line_editor |
Enumerations | |
enum class | lldb_private::line_editor::EditorStatus { lldb_private::line_editor::Editing , lldb_private::line_editor::Complete , lldb_private::line_editor::EndOfInput , lldb_private::line_editor::Interrupted } |
Status used to decide when and how to start editing another line in multi-line sessions. More... | |
enum class | lldb_private::line_editor::CursorLocation { lldb_private::line_editor::BlockStart , lldb_private::line_editor::EditingPrompt , lldb_private::line_editor::EditingCursor , lldb_private::line_editor::BlockEnd } |
Established locations that can be easily moved among with MoveCursor. More... | |
enum class | lldb_private::line_editor::HistoryOperation { lldb_private::line_editor::Oldest , lldb_private::line_editor::Older , lldb_private::line_editor::Current , lldb_private::line_editor::Newer , lldb_private::line_editor::Newest } |
Operation for the history. More... | |