Searched defs:option (Results 1 - 7 of 7) sorted by relevance
/bind-9.6-ESV-R11/lib/isc/ |
H A D | commandline.c | 75 /*% Argument associated with option. */ 97 char *option; /* Index into *options of option. */ local 117 * Index out of range or points to non-option. 126 * index to next argv, the first non-option. 135 option = strchr(options, isc_commandline_option); 138 * Ensure valid option has been passed as specified by options string. 139 * '-:' is never a valid command line option because it could not 142 if (isc_commandline_option == ':' || option == NULL) { 152 "illegal option"), [all...] |
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/ |
H A D | application.hpp | 56 // The "option" class. 59 class option { class in namespace:atf::application 67 option(char, const std::string&, const std::string&); 69 bool operator<(const option&) const; 85 typedef std::set< option > options_set;
|
H A D | application.cpp | 92 impl::option::option(char ch, function in class:impl::option 102 impl::option::operator<(const impl::option& o) 138 opts.insert(option('h', "", "Shows this help message")); 177 const option& opt = (*iter); 200 throw usage_error("Unknown option -%c.", ::optopt); 235 const option& opt = (*iter); 242 const option& opt = (*iter);
|
/bind-9.6-ESV-R11/lib/dns/ |
H A D | gen-win32.h | 62 * directly portable between Unix-like systems and Windows NT, option 85 char *isc_commandline_argument; /* Argument associated with option. */ 104 char *option; /* Index into *options of option. */ local 119 * Index out of range or points to non-option. 128 * index to next argv, the first non-option. 137 option = strchr(options, isc_commandline_option); 140 * Ensure valid option has been passed as specified by options string. 141 * '-:' is never a valid command line option because it could not 144 if (isc_commandline_option == ':' || option [all...] |
H A D | zone.c | 3260 dns_zone_setoption(dns_zone_t *zone, unsigned int option, isc_boolean_t value) argument 3266 zone->options |= option; 3268 zone->options &= ~option;
|
/bind-9.6-ESV-R11/lib/dns/rdata/generic/ |
H A D | opt_41.c | 54 isc_uint16_t option; local 66 option = uint16_fromregion(&r); 70 sprintf(buf, "%u %u", option, length);
|
/bind-9.6-ESV-R11/bin/dig/ |
H A D | dig.c | 709 plus_option(char *option, isc_boolean_t is_batchfile, argument 719 strncpy(option_store, option, sizeof(option_store)); 724 printf(";; Invalid option %s\n", option_store); 1117 fprintf(stderr, "Invalid option: +%s\n", 1118 option); 1130 dash_option(char *option, char *next, dig_lookup_t **lookup, argument 1147 while (strpbrk(option, single_dash_opts) == &option[0]) { 1153 opt = option[0]; 1174 ptr = strpbrk(&option[ 1459 char *option; local [all...] |
Completed in 200 milliseconds