Searched refs:options (Results 151 - 175 of 865) sorted by relevance

1234567891011>>

/freebsd-9.3-release/usr.sbin/bsdconfig/include/
H A DMakefile7 options.hlp tcp.hlp usage.hlp
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Dcommandline.h46 isc_commandline_parse(int argc, char * const *argv, const char *options);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DDriver.cpp88 getOpts().getOption(options::OPT_driver_mode).getPrefixedName();
129 // Check for unsupported options.
133 if (A->getOption().hasFlag(options::Unsupported)) {
139 if (A->getOption().matches(options::OPT_mcpu_EQ) &&
146 for (arg_iterator it = Args->filtered_begin(options::OPT_UNKNOWN),
154 // Determine which compilation mode we are in. We look for options which
164 (PhaseArg = DAL.getLastArg(options::OPT_E)) ||
165 (PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM))) {
169 } else if ((PhaseArg = DAL.getLastArg(options
[all...]
H A DSanitizerArgs.cpp75 Args.hasArg(options::OPT_fcatch_undefined_behavior) ||
76 Args.hasFlag(options::OPT_fsanitize_undefined_trap_on_error,
77 options::OPT_fno_sanitize_undefined_trap_on_error, false);
79 if (Args.hasArg(options::OPT_fcatch_undefined_behavior) &&
80 !Args.hasFlag(options::OPT_fsanitize_undefined_trap_on_error,
81 options::OPT_fno_sanitize_undefined_trap_on_error, true)) {
87 // Warn about undefined sanitizer options that require runtime support.
89 if (Args.hasArg(options::OPT_fcatch_undefined_behavior))
93 else if (Args.hasFlag(options::OPT_fsanitize_undefined_trap_on_error,
94 options
[all...]
H A DToolChain.cpp41 return Args.hasFlag(options::OPT_integrated_as,
42 options::OPT_no_integrated_as,
169 // (and the Mach-O slice) regardless of any -mcpu options.
173 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
178 if (Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
271 if (Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
272 // x86_64h goes in the triple. Other -march options just use the
296 Args.hasFlag(options::OPT_mthumb, options::OPT_mno_thumb, ThumbDefault))
308 if (Arg *A = Args.getLastArg(options
[all...]
/freebsd-9.3-release/contrib/xz/src/liblzma/common/
H A Dfilter_encoder.c29 /// Calculates memory usage of the encoder. If the options are
31 uint64_t (*memusage)(const void *options);
37 lzma_vli (*chunk_size)(const void *options);
39 /// Tells the size of the Filter Properties field. If options are
42 lzma_ret (*props_size_get)(uint32_t *size, const void *options);
48 /// - LZMA_OPTIONS_ERROR: Unsupported options
49 /// - LZMA_PROG_ERROR: Invalid options or not enough
51 lzma_ret (*props_encode)(const void *options, uint8_t *out);
200 const lzma_filter *options)
203 options, (lzma_filter_fin
199 lzma_raw_encoder_init(lzma_next_coder *next, lzma_allocator *allocator, const lzma_filter *options) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAnalysisManager.h45 AnalyzerOptions &options; member in class:clang::ento::AnalysisManager
70 return options;
102 return options.visualizeExplodedGraphWithGraphViz ||
103 options.visualizeExplodedGraphWithUbiGraph;
107 return options.getIPAMode() != IPAK_None;
/freebsd-9.3-release/contrib/file/src/
H A Dgetopt_long.c76 #define IGNORE_FIRST (*options == '-' || *options == '+')
77 #define PRINT_ERROR ((opterr) && ((*options != ':') \
78 || (IGNORE_FIRST && options[1] != ':')))
81 /* XXX: GNU ignores PC if *options == '-' */
82 #define IN_ORDER (!IS_POSIXLY_CORRECT && *options == '-')
86 #define BADARG ((IGNORE_FIRST && options[1] == ':') \
87 || (*options == ':') ? (int)':' : (int)'?')
100 static int nonopt_end = -1; /* first option after non options (for permute) */
174 * Returns -2 if -- is found (can be long option or end of options marke
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Dclient.h146 dns_client_create(dns_client_t **clientp, unsigned int options);
151 unsigned int options, dns_client_t **clientp);
156 isc_timermgr_t *timermgr, unsigned int options,
177 * If the DNS_CLIENTCREATEOPT_USECACHE flag is set in 'options',
267 unsigned int options, dns_namelist_t *namelist);
272 unsigned int options, isc_task_t *task,
281 * in 'options', DNSSEC validation is disabled regardless of the configured
297 * set in 'options', this function performs the synchronous service even if
399 unsigned int options, unsigned int parseoptions,
406 unsigned int options, unsigne
[all...]
H A Dbyaddr.h79 unsigned int options, isc_task_t *task,
154 dns_byaddr_createptrname2(isc_netaddr_t *address, unsigned int options,
161 * set. 'options' are the same as for dns_byaddr_create().
/freebsd-9.3-release/tools/regression/sbin/dhclient/
H A Doption-domain-search.c21 p.options[DHO_DOMAIN_SEARCH] = option;
27 if (p.options[DHO_DOMAIN_SEARCH].len != 0 ||
28 p.options[DHO_DOMAIN_SEARCH].data != NULL)
42 option = &p.options[DHO_DOMAIN_SEARCH];
67 option = &p.options[DHO_DOMAIN_SEARCH];
91 option = &p.options[DHO_DOMAIN_SEARCH];
116 option = &p.options[DHO_DOMAIN_SEARCH];
141 option = &p.options[DHO_DOMAIN_SEARCH];
165 option = &p.options[DHO_DOMAIN_SEARCH];
190 option = &p.options[DHO_DOMAIN_SEARC
[all...]
H A DMakefile5 SRCS= alloc.c convert.c hash.c options.c tables.c \
/freebsd-9.3-release/sbin/ping/
H A Dping.c118 /* various options */
119 int options; variable
275 options |= F_MISSED;
278 options |= F_AUDIBLE;
289 options |= F_HDRINCL;
293 options |= F_SO_DEBUG;
300 options |= F_FLOOD;
314 options |= F_SWEEP;
328 options |= F_SWEEP;
342 options |
[all...]
/freebsd-9.3-release/crypto/heimdal/appl/telnet/telnet/
H A Dexterns.h103 options[], /* All the little options */
123 #define my_state_is_do(opt) (options[opt]&MY_STATE_DO)
124 #define my_state_is_will(opt) (options[opt]&MY_STATE_WILL)
125 #define my_want_state_is_do(opt) (options[opt]&MY_WANT_STATE_DO)
126 #define my_want_state_is_will(opt) (options[opt]&MY_WANT_STATE_WILL)
133 #define set_my_state_do(opt) {options[opt] |= MY_STATE_DO;}
134 #define set_my_state_will(opt) {options[opt] |= MY_STATE_WILL;}
135 #define set_my_want_state_do(opt) {options[opt] |= MY_WANT_STATE_DO;}
136 #define set_my_want_state_will(opt) {options[op
[all...]
/freebsd-9.3-release/contrib/binutils/include/
H A Ddemangle.h124 cplus_demangle (const char *mangled, int options);
127 cplus_demangle_opname (const char *opname, char *result, int options);
130 cplus_mangle_opname (const char *opname, int options);
150 cplus_demangle_v3_callback (const char *mangled, int options,
154 cplus_demangle_v3 (const char *mangled, int options);
526 The second argument is DMGL_* options. This returns a pointer to a
533 cplus_demangle_v3_components (const char *mangled, int options, void **mem);
537 options. The second is the tree to demangle. The third is a guess
548 cplus_demangle_print (int options,
555 The first argument is DMGL_* options
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/des/times/
H A Dalpha.cc4 options des ecb/s
H A Dhpux.cc3 options des ecb/s
/freebsd-9.3-release/tools/regression/atm/proto_uni/
H A DRunTest.sh10 $LOCALBASE/bin/ats_sig $options $DATA/Funcs $DATA/L3MU_Funcs $DATA/Restart.??? \
/freebsd-9.3-release/contrib/ntp/sntp/libevent/include/event2/
H A Dbufferevent_ssl.h64 @param options One or more bufferevent_options
73 int options);
82 @param options One or more bufferevent_options
91 int options);
/freebsd-9.3-release/bin/pax/
H A DMakefile30 gen_subs.c getoldopt.c options.c pat_rep.c pax.c sel_subs.c \
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/zfs/
H A Dzfs_iter.h51 int zfs_for_each(int, char **, int options, zfs_type_t,
/freebsd-9.3-release/sys/compat/linux/
H A Dlinux_misc.h75 int options, struct rusage *ru);
/freebsd-9.3-release/crypto/openssl/apps/
H A Dversion.c143 int cflags = 0, version = 0, date = 0, options = 0, platform = 0, dir = 0; local
161 options = 1;
167 date = version = cflags = options = platform = dir = 1;
187 if (options) {
188 printf("options: ");
/freebsd-9.3-release/contrib/cvs/lib/
H A Dwaitpid.c36 pid_t waitpid (pid, status, options)
39 int options;
67 pid_t p = wait3 (status, options, (struct rusage *) 0);
/freebsd-9.3-release/contrib/xz/src/liblzma/lzma/
H A Dlzma2_decoder.c52 lzma_options_lzma options; member in struct:lzma_coder_s
108 &coder->options);
154 if (lzma_lzma_lclppb_decode(&coder->options, in[(*in_pos)++]))
157 coder->lzma.reset(coder->lzma.coder, &coder->options);
238 const lzma_options_lzma *options = opt; local
242 lz->coder->need_dictionary_reset = options->preset_dict == NULL
243 || options->preset_dict_size == 0;
246 allocator, options, lz_options);
264 lzma_lzma2_decoder_memusage(const void *options) argument
267 + lzma_lzma_decoder_memusage_nocheck(options);
272 lzma_lzma2_props_decode(void **options, lzma_allocator *allocator, const uint8_t *props, size_t props_size) argument
[all...]

Completed in 239 milliseconds

1234567891011>>