Searched refs:options (Results 401 - 425 of 1356) sorted by relevance

<<11121314151617181920>>

/openbsd-current/usr.bin/lex/
H A Dscanopt.c70 const optspec_t *options; /* List of options. */
71 struct _aux *aux; /* Auxiliary data about options. */
72 int optc; /* Number of options. */
97 return s->options[i].opt_fmt +
112 return s->options[i].r_val;
126 return s->options[i].desc ? s->options[i].desc : "";
165 scanopt_t *scanopt_init (options, argc, argv, flags)
166 const optspec_t *options;
69 const optspec_t *options; /* List of options. */ member in struct:_scanopt_t
[all...]
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/
H A DAVR.cpp375 if (!Args.hasArg(options::OPT_nostdlib) &&
376 !Args.hasArg(options::OPT_nodefaultlibs) && GCCInstallation.isValid()) {
385 if (DriverArgs.hasArg(options::OPT_nostdinc) ||
386 DriverArgs.hasArg(options::OPT_nostdlibinc))
405 if (!DriverArgs.hasFlag(options::OPT_fuse_init_array,
406 options::OPT_fno_use_init_array, false))
410 if (!DriverArgs.hasFlag(options::OPT_fuse_cxa_atexit,
411 options::OPT_fno_use_cxa_atexit, false))
450 const Arg *A = Args.getLastArg(options::OPT_fuse_ld_EQ);
463 Args.AddAllArgs(CmdArgs, options
[all...]
/openbsd-current/usr.bin/libtool/LT/
H A DGetopt.pm213 my @options = ();
235 push(@options,
238 return @options;
243 my @options = $self->create_options(@l);
252 for my $opt (@options) {
267 my @options = $self->create_options(@l);
278 for my $opt (@options) {
/openbsd-current/gnu/llvm/lldb/source/Expression/
H A DLLVMUserExpression.cpp46 const EvaluateExpressionOptions &options)
47 : UserExpression(exe_scope, expr, prefix, language, desired_type, options),
65 const EvaluateExpressionOptions &options,
153 exe_ctx.GetThreadRef(), wrapper_address, args, options,
178 exe_ctx.GetProcessRef().RunThreadPlan(exe_ctx, call_plan_sp, options,
204 options.DoesUnwindOnError()) ||
206 options.DoesIgnoreBreakpoints()))
41 LLVMUserExpression(ExecutionContextScope &exe_scope, llvm::StringRef expr, llvm::StringRef prefix, lldb::LanguageType language, ResultType desired_type, const EvaluateExpressionOptions &options) argument
63 DoExecute(DiagnosticManager &diagnostic_manager, ExecutionContext &exe_ctx, const EvaluateExpressionOptions &options, lldb::UserExpressionSP &shared_ptr_to_me, lldb::ExpressionVariableSP &result) argument
/openbsd-current/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_allocator.cpp318 void CheckOptions(const AllocatorOptions &options) const {
319 CHECK_GE(options.min_redzone, 16);
320 CHECK_GE(options.max_redzone, options.min_redzone);
321 CHECK_LE(options.max_redzone, 2048);
322 CHECK(IsPowerOfTwo(options.min_redzone));
323 CHECK(IsPowerOfTwo(options.max_redzone));
326 void SharedInitCode(const AllocatorOptions &options) { argument
327 CheckOptions(options);
328 quarantine.Init((uptr)options
336 InitLinkerInitialized(const AllocatorOptions &options) argument
372 ReInitialize(const AllocatorOptions &options) argument
915 InitializeAllocator(const AllocatorOptions &options) argument
919 ReInitializeAllocator(const AllocatorOptions &options) argument
923 GetAllocatorOptions(AllocatorOptions *options) argument
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Harness/t/
H A Dtestargs.t29 my ( $type, $options ) = ( shift, shift );
30 my $name = join( ', ', sort keys %$options ) . ", $type";
32 my $parser = TAP::Parser->new( { %$options, test_args => \@args } );
/openbsd-current/bin/ksh/
H A Dc_ulimit.c47 /* Do not use options -H, -S or -a or change the order. */
59 const char *options = "HSat#f#c#d#s#l#m#n#p#"; local
65 while ((optc = ksh_getopt(wp, &builtin_opt, options)) != -1)
89 while ((optc = ksh_getopt(wp, &builtin_opt, options)) != -1)
/openbsd-current/gnu/llvm/lldb/source/API/
H A DSBTypeFilter.cpp21 SBTypeFilter::SBTypeFilter(uint32_t options) argument
22 : m_opaque_sp(TypeFilterImplSP(new TypeFilterImpl(options))) {
23 LLDB_INSTRUMENT_VA(this, options);
/openbsd-current/gnu/llvm/lldb/include/lldb/DataFormatters/
H A DStringPrinter.h134 const ReadStringAndDumpToStreamOptions &options);
150 ReadStringAndDumpToStream(const ReadStringAndDumpToStreamOptions &options);
154 ReadBufferAndDumpToStream(const ReadBufferAndDumpToStreamOptions &options);
H A DValueObjectPrinter.h28 const DumpValueObjectOptions &options);
43 const DumpValueObjectOptions &options,
51 const DumpValueObjectOptions &options,
/openbsd-current/usr.sbin/tftpd/
H A Dtftpd.c135 struct opt_client *options; member in struct:tftp_client
328 errx(1, "options -i and -r are incompatible");
339 errx(1, "options -i and -r are incompatible");
657 free(client->options);
785 struct opt_client *options)
812 options[i].o_request = ++cp;
828 struct opt_client *options; local
879 client->options = options = calloc(NOPT, sizeof(*client->options));
784 parse_options(struct tftp_client *client, char *cp, size_t size, struct opt_client *options) argument
973 struct opt_client *options = client->options; local
1511 struct opt_client *options = client->options; local
[all...]
/openbsd-current/gnu/llvm/lldb/source/Plugins/Platform/Windows/
H A DPlatformWindows.cpp359 EvaluateExpressionOptions options; local
360 options.SetExecutionPolicy(eExecutionPolicyAlways);
361 options.SetLanguage(eLanguageTypeC_plus_plus);
362 options.SetIgnoreBreakpoints(true);
363 options.SetUnwindOnError(true);
367 options.SetTrapExceptions(false);
368 options.SetTimeout(process->GetUtilityExpressionTimeout());
369 options.SetIsForUtilityExpr(true);
372 invocation->ExecuteFunction(context, &injected_parameters, options,
767 EvaluateExpressionOptions options; local
[all...]
/openbsd-current/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp50 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) {
72 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) {
120 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) {
163 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) {
714 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) {
841 StringPrinter::ReadBufferAndDumpToStreamOptions options(valobj);
846 options.SetIsTruncated(true);
866 options.SetData(std::move(extractor));
867 options.SetStream(&stream);
868 options
49 LibcxxOptionalSummaryProvider( ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) argument
71 LibcxxFunctionSummaryProvider( ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) argument
119 LibcxxSmartPointerSummaryProvider( ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) argument
162 LibcxxUniquePointerSummaryProvider( ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) argument
713 LibcxxContainerSummaryProvider( ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) argument
[all...]
/openbsd-current/usr.sbin/smtpd/
H A Dparse.y138 uint32_t options;
2108 if (listen_opts.options & LO_FILTER) {
2119 listen_opts.options |= LO_FILTER;
2125 if (listen_opts.options & LO_FILTER) {
2134 listen_opts.options |= LO_FILTER;
2150 if (listen_opts.options & LO_NODSN) {
2154 listen_opts.options |= LO_NODSN;
2158 if (listen_opts.options & LO_TAG) {
2162 listen_opts.options |= LO_TAG;
2174 if (listen_opts.options
[all...]
/openbsd-current/gnu/lib/libiberty/src/
H A Dcp-demint.c183 cplus_demangle_v3_components (const char *mangled, int options, void **mem) argument
196 if ((options & DMGL_TYPES) == 0)
201 cplus_demangle_init_info (mangled, options, len, &di);
223 if ((options & DMGL_PARAMS) != 0 && d_peek_char (&di) != '\0')
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dobjc-lang.h44 extern char *objc_demangle (const char *mangled, int options);
/openbsd-current/gnu/usr.bin/cvs/src/
H A Dentries.c36 Entnode_Create(type, user, vn, ts, options, tag, date, ts_conflict)
41 const char *options;
48 /* Note that timestamp and options must be non-NULL */
54 ent->options = xstrdup (options ? options : "");
74 free (ent->options);
210 Register (list, fname, vn, ts, options, tag, date, ts_conflict)
215 char *options;
226 server_register (fname, vn, ts, options, ta
297 char *l, *user, *vn, *ts, *options; local
[all...]
/openbsd-current/gnu/usr.bin/perl/
H A Dconfigure.gnu41 Usage: configure.gnu [options]
43 It emulates the following GNU configure options (must be fully spelled out):
/openbsd-current/gnu/usr.bin/perl/vms/
H A Dgenopt.com1 $! generates options file for vms link
4 $! p3 is list of items to be written, one per line, into options file
/openbsd-current/regress/usr.sbin/syslogd/
H A Dargs-client-tcp-maxline.pl41 options => ["-T", "127.0.0.1:514"],
H A Dargs-client-tcp-nontransp-maxline.pl41 options => ["-T", "127.0.0.1:514"],
H A Dargs-client-tcp-octet-maxline.pl45 options => ["-T", "127.0.0.1:514"],
/openbsd-current/usr.sbin/dhcpd/
H A Dtree.h99 struct option *options[256]; member in struct:universe
/openbsd-current/usr.sbin/pppd/
H A DMakefile7 lcp.c magic.c main.c options.c sys-bsd.c upap.c
/openbsd-current/gnu/usr.bin/perl/cpan/parent/t/
H A Dparent-pmc.t28 if Config::Perl::V::myconfig()->{options}{PERL_DISABLE_PMC};

Completed in 208 milliseconds

<<11121314151617181920>>