Searched refs:options (Results 126 - 150 of 1021) sorted by relevance

1234567891011>>

/freebsd-11-stable/usr.sbin/autofs/
H A Dautomountd.c181 char *key, *options, *fstype, *nobrowse, *retrycnt, *tmp; local
186 "key \"%s\", options \"%s\"", adr->adr_id, adr->adr_from,
248 options = node_options(node);
251 * Append options from auto_master.
253 options = concat(options, ',', adr->adr_options);
256 * Prepend options passed via automountd(8) command line.
258 options = concat(cmdline_options, ',', options);
264 nobrowse = pick_option("nobrowse", &options);
441 char *options = NULL; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DGetOptInc.cpp27 #define PRINT_ERROR ((opterr) && (*options != ':'))
29 #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */
30 #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */
35 #define BADARG ((*options == ':') ? (int)':' : (int)'?')
51 static int nonopt_end = -1; /* first option after non options (for permute) */
109 * Parse long options in argc/argv argument vector.
112 static int parse_long_options(char *const *nargv, const char *options, argument
223 static int getopt_internal(int nargc, char *const *nargv, const char *options, argument
230 if (options == NULL)
241 * Disable GNU extensions if POSIXLY_CORRECT is set or options
412 getopt(int nargc, char *const *nargv, const char *options) argument
431 getopt_long(int nargc, char *const *nargv, const char *options, const struct option *long_options, int *idx) argument
443 getopt_long_only(int nargc, char *const *nargv, const char *options, const struct option *long_options, int *idx) argument
[all...]
/freebsd-11-stable/sbin/dhclient/
H A Doptions.c1 /* $OpenBSD: options.c,v 1.15 2004/12/26 03:17:07 deraadt Exp $ */
3 /* DHCP options parsing and reassembly. */
44 __FBSDID("$FreeBSD: stable/11/sbin/dhclient/options.c 365011 2020-08-31 21:28:57Z emaste $");
65 * Parse all available options out of the specified packet.
71 memset(packet->options, 0, sizeof(packet->options));
74 if (memcmp(packet->raw->options, DHCP_OPTIONS_COOKIE, 4)) {
80 * Go through the options field, up to the end of the packet or
83 parse_option_buffer(packet, &packet->raw->options[4],
88 * options ou
381 cons_options(struct packet *inpacket, struct dhcp_packet *outpacket, int mms, struct tree_cache **options, int overload, int terminate, int bootpp, u_int8_t *prl, int prl_len) argument
527 store_options(unsigned char *buffer, int buflen, struct tree_cache **options, unsigned char *priority_list, int priority_len, int first_cutoff, int second_cutoff, int terminate) argument
[all...]
H A Dtree.h62 struct option *options[256]; member in struct:universe
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Dcommandline.h46 isc_commandline_parse(int argc, char * const *argv, const char *options);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dgetopt1.c70 getopt_long (int argc, char *const *argv, const char *options,
73 return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
82 getopt_long_only (int argc, char *const *argv, const char *options,
85 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
69 getopt_long(int argc, char *const *argv, const char *options, const struct option *long_options, int *opt_index) argument
81 getopt_long_only(int argc, char *const *argv, const char *options, const struct option *long_options, int *opt_index) argument
H A Dwaitpid.c27 waitpid (pid_t pid, int *stat_loc, int options ATTRIBUTE_UNUSED)
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dwaitpid.c27 waitpid (pid_t pid, int *stat_loc, int options ATTRIBUTE_UNUSED)
/freebsd-11-stable/contrib/xz/src/liblzma/api/lzma/
H A Dstream_flags.h111 * \param options Stream Header options to be encoded.
112 * options->backward_size is ignored and doesn't
118 * - LZMA_OPTIONS_ERROR: options->version is not supported by
120 * - LZMA_PROG_ERROR: Invalid options.
123 const lzma_stream_flags *options, uint8_t *out)
130 * \param options Stream Footer options to be encoded.
135 * - LZMA_OPTIONS_ERROR: options->version is not supported by
137 * - LZMA_PROG_ERROR: Invalid options
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/common/
H A Deasy_preset.c23 opt_easy->filters[0].options = &opt_easy->opt_lzma;
H A Dfilter_common.h28 /// Calculates memory usage of the encoder. If the options are
30 uint64_t (*memusage)(const void *options);
/freebsd-11-stable/usr.sbin/bsdconfig/include/
H A DMakefile5 options.hlp tcp.hlp usage.hlp
/freebsd-11-stable/contrib/xz/src/liblzma/delta/
H A Ddelta_common.c45 // Validate the options.
46 if (lzma_delta_coder_memusage(filters[0].options) == UINT64_MAX)
50 const lzma_options_delta *opt = filters[0].options;
63 lzma_delta_coder_memusage(const void *options) argument
65 const lzma_options_delta *opt = options;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxAtomic.h24 const TypeSummaryOptions &options);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DXRayArgs.cpp35 if (Args.hasFlag(options::OPT_fxray_instrument,
36 options::OPT_fnoxray_instrument, false)) {
76 if (Arg *A = Args.getLastArg(options::OPT_fpatchable_function_entry_EQ))
82 Args.getLastArg(options::OPT_fxray_instruction_threshold_,
83 options::OPT_fxray_instruction_threshold_EQ)) {
93 if (Args.hasFlag(options::OPT_fxray_always_emit_customevents,
94 options::OPT_fnoxray_always_emit_customevents, false))
97 if (Args.hasFlag(options::OPT_fxray_always_emit_typedevents,
98 options::OPT_fnoxray_always_emit_typedevents, false))
101 if (!Args.hasFlag(options
[all...]
H A DSanitizerArgs.cpp175 if (Arg->getOption().matches(options::OPT_fsanitize_trap_EQ)) {
186 } else if (Arg->getOption().matches(options::OPT_fno_sanitize_trap_EQ)) {
190 options::OPT_fsanitize_undefined_trap_on_error)) {
196 options::OPT_fno_sanitize_undefined_trap_on_error)) {
256 CfiCrossDso = Args.hasFlag(options::OPT_fsanitize_cfi_cross_dso,
257 options::OPT_fno_sanitize_cfi_cross_dso, false);
266 Args.hasFlag(options::OPT_fsanitize_minimal_runtime,
267 options::OPT_fno_sanitize_minimal_runtime, MinimalRuntime);
270 Arg *OptLevel = Args.getLastArg(options::OPT_O_Group);
272 !OptLevel || OptLevel->getOption().matches(options
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/
H A DClangHighlighter.cpp39 /// \param options
50 const HighlightStyle &options, bool &in_pp_directive) {
56 return options.comment;
61 return options.pp_directive;
63 return options.string_literal;
65 return options.scalar_literal;
67 return options.keyword;
72 return options.identifier;
75 return options.braces;
78 return options
48 determineClangStyle(const ClangHighlighter &highlighter, const clang::Token &token, llvm::StringRef tok_str, const HighlightStyle &options, bool &in_pp_directive) argument
131 Highlight(const HighlightStyle &options, llvm::StringRef line, llvm::Optional<size_t> cursor_pos, llvm::StringRef previous_lines, Stream &result) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DNaCl.cpp60 !Args.hasArg(options::OPT_dynamic) && !Args.hasArg(options::OPT_shared);
65 Args.ClaimAllArgs(options::OPT_g_Group);
67 Args.ClaimAllArgs(options::OPT_emit_llvm);
68 // and for "clang -w foo.o -o foo". Other warning options are already
70 Args.ClaimAllArgs(options::OPT_w);
75 if (Args.hasArg(options::OPT_rdynamic))
78 if (Args.hasArg(options::OPT_s))
103 else if (Args.hasArg(options::OPT_shared))
108 if (!Args.hasArg(options
[all...]
H A DBareMetal.cpp75 if (DriverArgs.hasArg(options::OPT_nostdinc))
78 if (!DriverArgs.hasArg(options::OPT_nobuiltininc)) {
84 if (!DriverArgs.hasArg(options::OPT_nostdlibinc)) {
99 if (DriverArgs.hasArg(options::OPT_nostdinc) ||
100 DriverArgs.hasArg(options::OPT_nostdlibinc) ||
101 DriverArgs.hasArg(options::OPT_nostdincxx))
178 Args.AddAllArgs(CmdArgs, {options::OPT_L, options::OPT_T_Group,
179 options::OPT_e, options
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/MemoryHistory/asan/
H A DMemoryHistoryASan.cpp172 EvaluateExpressionOptions options; local
173 options.SetUnwindOnError(true);
174 options.SetTryAllThreads(true);
175 options.SetStopOthers(true);
176 options.SetIgnoreBreakpoints(true);
177 options.SetTimeout(process_sp->GetUtilityExpressionTimeout());
178 options.SetPrefix(memory_history_asan_command_prefix);
179 options.SetAutoApplyFixIts(false);
180 options.SetLanguage(eLanguageTypeObjC_plus_plus);
183 exe_ctx, options, exp
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupValueObjectDisplay.cpp56 nullptr, {}, 0, eArgTypeNone, "Don't use formatting options."},
190 DumpValueObjectOptions options; local
191 options.SetMaximumPointerDepth(
194 options.SetShowSummary(false);
196 options.SetOmitSummaryDepth(no_summary_depth);
197 options.SetMaximumDepth(max_depth)
210 options.SetHideRootType(use_objc).SetHideName(use_objc).SetHideValue(
214 options.SetRawDisplay();
216 options.SetRunValidator(run_validator);
218 options
[all...]
/freebsd-11-stable/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-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/
H A DPPC.cpp25 if (Arg *A = Args.getLastArg(clang::driver::options::OPT_mcpu_EQ)) {
110 handleTargetFeaturesGroup(Args, Features, options::OPT_m_ppc_Features_Group);
123 if (Args.getLastArg(options::OPT_msecure_plt))
135 Args.getLastArg(options::OPT_msoft_float, options::OPT_mhard_float,
136 options::OPT_mfloat_abi_EQ)) {
137 if (A->getOption().matches(options::OPT_msoft_float))
139 else if (A->getOption().matches(options::OPT_mhard_float))
162 Arg *A = Args.getLastArg(options::OPT_mabi_EQ);
/freebsd-11-stable/sbin/dhclient/tests/
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...]
/freebsd-11-stable/sbin/ping/
H A Dping.c124 /* various options */
125 static int options; variable
313 options |= F_MISSED;
316 options |= F_AUDIBLE;
327 options |= F_HDRINCL;
331 options |= F_SO_DEBUG;
338 options |= F_FLOOD;
352 options |= F_SWEEP;
366 options |= F_SWEEP;
380 options |
[all...]

Completed in 463 milliseconds

1234567891011>>