Searched defs:getopt_table (Results 1 - 1 of 1) sorted by relevance

/external/lldb/tools/driver/
H A DDriver.cpp354 BuildGetOptTable (OptionDefinition *expanded_option_table, std::vector<struct option> &getopt_table, argument
364 getopt_table.resize (num_options + 1);
372 getopt_table[j].name = expanded_option_table[i].long_option;
373 getopt_table[j].has_arg = expanded_option_table[i].option_has_arg;
374 getopt_table[j].flag = NULL;
375 getopt_table[j].val = expanded_option_table[i].short_option;
381 getopt_table[j].name = NULL;
382 getopt_table[j].has_arg = 0;
383 getopt_table[j].flag = NULL;
384 getopt_table[
[all...]

Completed in 59 milliseconds