LLDB
mainline
|
Public Types | |
typedef std::vector< std::pair< char, uint32_t > > | FormatWidthCollection |
Public Member Functions | |
CommandOptions () | |
~CommandOptions () override=default | |
Status | SetOptionValue (uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override |
Set the value of an option. More... | |
void | OptionParsingStarting (ExecutionContext *execution_context) override |
llvm::ArrayRef< OptionDefinition > | GetDefinitions () override |
![]() | |
Options () | |
virtual | ~Options () |
void | BuildGetoptTable () |
void | BuildValidOptionSets () |
uint32_t | NumCommandOptions () |
Option * | GetLongOptions () |
Get the option definitions to use when parsing Args options. More... | |
void | OptionSeen (int short_option) |
bool | VerifyOptions (CommandReturnObject &result) |
bool | VerifyPartialOptions (CommandReturnObject &result) |
void | OutputFormattedUsageText (Stream &strm, const OptionDefinition &option_def, uint32_t output_max_columns) |
void | GenerateOptionUsage (Stream &strm, CommandObject *cmd, uint32_t screen_width) |
bool | SupportsLongOption (const char *long_option) |
void | NotifyOptionParsingStarting (ExecutionContext *execution_context) |
llvm::Expected< Args > | Parse (const Args &args, ExecutionContext *execution_context, lldb::PlatformSP platform_sp, bool require_validation) |
Parse the provided arguments. More... | |
llvm::Expected< Args > | ParseAlias (const Args &args, OptionArgVector *option_arg_vector, std::string &input_line) |
OptionElementVector | ParseForCompletion (const Args &args, uint32_t cursor_index) |
Status | NotifyOptionParsingFinished (ExecutionContext *execution_context) |
bool | HandleOptionCompletion (lldb_private::CompletionRequest &request, OptionElementVector &option_map, CommandInterpreter &interpreter) |
Handles the generic bits of figuring out whether we are in an option, and if so completing it. More... | |
virtual void | HandleOptionArgumentCompletion (lldb_private::CompletionRequest &request, OptionElementVector &opt_element_vector, int opt_element_index, CommandInterpreter &interpreter) |
Handles the generic bits of figuring out whether we are in an option, and if so completing it. More... | |
Public Attributes | |
FormatWidthCollection | m_format_array |
bool | m_use_global_module_list |
lldb::addr_t | m_module_addr |
Additional Inherited Members | |
![]() | |
typedef std::set< int > | OptionSet |
typedef std::vector< OptionSet > | OptionSetVector |
![]() | |
OptionSetVector & | GetRequiredOptions () |
OptionSetVector & | GetOptionalOptions () |
bool | IsASubset (const OptionSet &set_a, const OptionSet &set_b) |
size_t | OptionsSetDiff (const OptionSet &set_a, const OptionSet &set_b, OptionSet &diffs) |
void | OptionsSetUnion (const OptionSet &set_a, const OptionSet &set_b, OptionSet &union_set) |
virtual Status | OptionParsingFinished (ExecutionContext *execution_context) |
![]() | |
std::vector< Option > | m_getopt_table |
OptionSet | m_seen_options |
OptionSetVector | m_required_options |
OptionSetVector | m_optional_options |
Definition at line 2904 of file CommandObjectTarget.cpp.
typedef std::vector<std::pair<char, uint32_t> > CommandObjectTargetModulesList::CommandOptions::FormatWidthCollection |
Definition at line 2941 of file CommandObjectTarget.cpp.
|
inline |
Definition at line 2906 of file CommandObjectTarget.cpp.
|
overridedefault |
|
inlineoverridevirtual |
Reimplemented from lldb_private::Options.
Definition at line 2936 of file CommandObjectTarget.cpp.
|
inlineoverridevirtual |
Implements lldb_private::Options.
Definition at line 2930 of file CommandObjectTarget.cpp.
References LLDB_INVALID_ADDRESS.
|
inlineoverridevirtual |
Set the value of an option.
[in] | option_idx | The index into the "struct option" array that was returned by Options::GetLongOptions(). |
[in] | option_arg | The argument value for the option that the user entered, or nullptr if there is no argument for the current option. |
[in] | execution_context | The execution context to use for evaluating the option. May be nullptr if the option is to be evaluated outside any particular context. |
Implements lldb_private::Options.
Definition at line 2912 of file CommandObjectTarget.cpp.
References error(), and LLDB_INVALID_ADDRESS.
FormatWidthCollection CommandObjectTargetModulesList::CommandOptions::m_format_array |
Definition at line 2942 of file CommandObjectTarget.cpp.
lldb::addr_t CommandObjectTargetModulesList::CommandOptions::m_module_addr |
Definition at line 2944 of file CommandObjectTarget.cpp.
bool CommandObjectTargetModulesList::CommandOptions::m_use_global_module_list |
Definition at line 2943 of file CommandObjectTarget.cpp.