Searched refs:options (Results 176 - 200 of 3091) sorted by relevance

1234567891011>>

/netbsd-current/external/mit/libuv/dist/test/
H A Dtest-thread.c258 uv_thread_options_t options; local
260 options.flags = UV_THREAD_HAS_STACK_SIZE;
261 options.stack_size = 1024 * 1024;
262 ASSERT(0 == uv_thread_create_ex(&thread, &options,
263 thread_check_stack, &options));
266 options.stack_size = 8 * 1024 * 1024; /* larger than most default os sizes */
267 ASSERT(0 == uv_thread_create_ex(&thread, &options,
268 thread_check_stack, &options));
271 options.stack_size = 0;
272 ASSERT(0 == uv_thread_create_ex(&thread, &options,
[all...]
H A Dbenchmark-spawn.c33 static uv_process_options_t options; variable
113 options.file = exepath;
114 options.args = args;
115 options.exit_cb = exit_cb;
119 options.stdio = stdio;
120 options.stdio_count = 2;
121 options.stdio[0].flags = UV_IGNORE;
122 options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE;
123 options.stdio[1].data.stream = (uv_stream_t*)&out;
125 r = uv_spawn(loop, &process, &options);
[all...]
H A Dtest-process-title.c87 uv_process_options_t options; local
115 memset(&options, 0, sizeof(options));
116 options.file = exepath;
117 options.args = args;
118 options.exit_cb = exit_cb;
120 ASSERT(0 == uv_spawn(uv_default_loop(), &process, &options));
/netbsd-current/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DSolaris.cpp35 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler);
58 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_shared)) {
63 if (Args.hasArg(options::OPT_static)) {
68 if (Args.hasArg(options::OPT_shared)) {
74 Args.ClaimAllArgs(options::OPT_pthread);
75 Args.ClaimAllArgs(options::OPT_pthreads);
85 if (!Args.hasArg(options::OPT_nostdlib, options
[all...]
H A DFuchsia.cpp43 Args.ClaimAllArgs(options::OPT_g_Group);
45 Args.ClaimAllArgs(options::OPT_emit_llvm);
46 // and for "clang -w foo.o -o foo". Other warning options are already
48 Args.ClaimAllArgs(options::OPT_w);
69 if (!Args.hasArg(options::OPT_shared) && !Args.hasArg(options::OPT_r))
72 if (Args.hasArg(options::OPT_rdynamic))
75 if (Args.hasArg(options::OPT_s))
78 if (Args.hasArg(options::OPT_r)) {
87 if (Args.hasArg(options
[all...]
H A DCommonArgs.cpp66 if (const Arg *A = Args.getLastArg(options::OPT_Rpass_EQ))
70 if (const Arg *A = Args.getLastArg(options::OPT_Rpass_missed_EQ))
74 if (const Arg *A = Args.getLastArg(options::OPT_Rpass_analysis_EQ))
84 if (const Arg *A = Args.getLastArg(options::OPT_fsave_optimization_record_EQ))
88 const Arg *A = Args.getLastArg(options::OPT_foptimization_record_file_EQ);
101 Args.getLastArg(options::OPT_foptimization_record_passes_EQ))
111 if (Args.hasFlag(options::OPT_fdiagnostics_show_hotness,
112 options::OPT_fno_diagnostics_show_hotness, false))
116 Args.getLastArg(options::OPT_fdiagnostics_hotness_threshold_EQ))
231 Args.AddAllArgValues(CmdArgs, options
[all...]
/netbsd-current/crypto/external/bsd/openssh/dist/
H A Dsshd.c111 #include "auth-options.h"
143 /* Server configuration options. */
144 ServerOptions options; variable
247 /* global key/cert auth options. XXX move to permanent ssh->authctxt? */
285 for (i = 0; i < options.max_startups; i++)
310 if (options.pid_file != NULL)
311 unlink(options.pid_file);
376 for (i = 0; i < options.num_host_key_files; i++) {
396 for (i = 0; i < options.num_host_key_files; i++) {
576 if (match_pattern_list(s, options
[all...]
/netbsd-current/external/public-domain/xz/dist/src/liblzma/common/
H A Dfilter_common.c20 /// Size of the filter-specific options structure
143 if (src[i].options == NULL) {
144 dest[i].options = NULL;
147 // options is not NULL. This might be convenient
151 // When options is not NULL, the Filter ID must be
153 // how big the options are.
162 // Allocate and copy the options.
163 dest[i].options = lzma_alloc(features[j].options_size,
165 if (dest[i].options == NULL) {
170 memcpy(dest[i].options, sr
242 lzma_raw_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter *options, lzma_filter_find coder_find, bool is_encoder) argument
[all...]
/netbsd-current/libexec/telnetd/
H A Ddefs.h116 #define TD_OPTIONS 0x10 /* Report just telnet options */
132 #define my_state_is_do(opt) (options[opt]&MY_STATE_DO)
133 #define my_state_is_will(opt) (options[opt]&MY_STATE_WILL)
134 #define my_want_state_is_do(opt) (options[opt]&MY_WANT_STATE_DO)
135 #define my_want_state_is_will(opt) (options[opt]&MY_WANT_STATE_WILL)
142 #define set_my_state_do(opt) (options[opt] |= MY_STATE_DO)
143 #define set_my_state_will(opt) (options[opt] |= MY_STATE_WILL)
144 #define set_my_want_state_do(opt) (options[opt] |= MY_WANT_STATE_DO)
145 #define set_my_want_state_will(opt) (options[opt] |= MY_WANT_STATE_WILL)
147 #define set_my_state_dont(opt) (options[op
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/gold/
H A Dgold.cc32 #include "options.h"
67 && parameters->options().has_plugins())
68 parameters->options().plugins()->cleanup();
70 unlink_if_ordinary(parameters->options().output_file_name());
111 Middle_runner(const General_options& options, argument
115 : options_(options), input_objects_(input_objects), symtab_(symtab),
142 Gc_runner(const General_options& options, argument
146 : options_(options), input_objects_(input_objects), symtab_(symtab),
172 queue_initial_tasks(const General_options& options, argument
181 if (options
438 queue_middle_gc_tasks(const General_options& options, const Task* , const Input_objects* input_objects, Symbol_table* symtab, Layout* layout, Workqueue* workqueue, Mapfile* mapfile) argument
483 queue_middle_tasks(const General_options& options, const Task* task, const Input_objects* input_objects, Symbol_table* symtab, Layout* layout, Workqueue* workqueue, Mapfile* mapfile) argument
796 queue_final_tasks(const General_options& options, const Input_objects* input_objects, const Symbol_table* symtab, Layout* layout, Workqueue* workqueue, Output_file* of) argument
[all...]
H A Dmain.cc35 #include "options.h"
163 // Handle the command line options.
168 if (command_line.options().stats())
174 // Store some options in the globally accessible parameters.
175 set_parameters_options(&command_line.options());
178 write_debug_script(command_line.options().output_file_name(),
183 if (command_line.options().user_set_Map())
186 if (!mapfile->open(command_line.options().Map()))
200 if (parameters->options().relocatable())
204 Workqueue workqueue(command_line.options());
[all...]
/netbsd-current/external/gpl3/binutils/dist/gold/
H A Dgold.cc32 #include "options.h"
67 && parameters->options().has_plugins())
68 parameters->options().plugins()->cleanup();
70 unlink_if_ordinary(parameters->options().output_file_name());
111 Middle_runner(const General_options& options, argument
115 : options_(options), input_objects_(input_objects), symtab_(symtab),
142 Gc_runner(const General_options& options, argument
146 : options_(options), input_objects_(input_objects), symtab_(symtab),
172 queue_initial_tasks(const General_options& options, argument
181 if (options
438 queue_middle_gc_tasks(const General_options& options, const Task* , const Input_objects* input_objects, Symbol_table* symtab, Layout* layout, Workqueue* workqueue, Mapfile* mapfile) argument
483 queue_middle_tasks(const General_options& options, const Task* task, const Input_objects* input_objects, Symbol_table* symtab, Layout* layout, Workqueue* workqueue, Mapfile* mapfile) argument
796 queue_final_tasks(const General_options& options, const Input_objects* input_objects, const Symbol_table* symtab, Layout* layout, Workqueue* workqueue, Output_file* of) argument
[all...]
H A Dmain.cc35 #include "options.h"
163 // Handle the command line options.
168 if (command_line.options().stats())
174 // Store some options in the globally accessible parameters.
175 set_parameters_options(&command_line.options());
178 write_debug_script(command_line.options().output_file_name(),
183 if (command_line.options().user_set_Map())
186 if (!mapfile->open(command_line.options().Map()))
200 if (parameters->options().relocatable())
204 Workqueue workqueue(command_line.options());
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gold/
H A Dgold.cc32 #include "options.h"
67 && parameters->options().has_plugins())
68 parameters->options().plugins()->cleanup();
70 unlink_if_ordinary(parameters->options().output_file_name());
111 Middle_runner(const General_options& options, argument
115 : options_(options), input_objects_(input_objects), symtab_(symtab),
142 Gc_runner(const General_options& options, argument
146 : options_(options), input_objects_(input_objects), symtab_(symtab),
172 queue_initial_tasks(const General_options& options, argument
181 if (options
438 queue_middle_gc_tasks(const General_options& options, const Task* , const Input_objects* input_objects, Symbol_table* symtab, Layout* layout, Workqueue* workqueue, Mapfile* mapfile) argument
483 queue_middle_tasks(const General_options& options, const Task* task, const Input_objects* input_objects, Symbol_table* symtab, Layout* layout, Workqueue* workqueue, Mapfile* mapfile) argument
796 queue_final_tasks(const General_options& options, const Input_objects* input_objects, const Symbol_table* symtab, Layout* layout, Workqueue* workqueue, Output_file* of) argument
[all...]
H A Dmain.cc35 #include "options.h"
163 // Handle the command line options.
168 if (command_line.options().stats())
174 // Store some options in the globally accessible parameters.
175 set_parameters_options(&command_line.options());
178 write_debug_script(command_line.options().output_file_name(),
183 if (command_line.options().user_set_Map())
186 if (!mapfile->open(command_line.options().Map()))
200 if (parameters->options().relocatable())
204 Workqueue workqueue(command_line.options());
[all...]
/netbsd-current/external/mit/libuv/dist/docs/code/cgi/
H A Dmain.c9 uv_process_options_t options; variable
29 options.stdio_count = 3;
35 options.stdio = child_stdio;
37 options.exit_cb = cleanup_handles;
38 options.file = args[0];
39 options.args = args;
44 if ((r = uv_spawn(loop, &child_req, &options))) {
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dverify_init.c39 krb5_verify_init_creds_opt_init(krb5_verify_init_creds_opt *options) argument
41 memset (options, 0, sizeof(*options));
45 krb5_verify_init_creds_opt_set_ap_req_nofail(krb5_verify_init_creds_opt *options, argument
48 options->flags |= KRB5_VERIFY_INIT_CREDS_OPT_AP_REQ_NOFAIL;
49 options->ap_req_nofail = ap_req_nofail;
58 krb5_verify_init_creds_opt *options)
61 if (options && (options->flags & KRB5_VERIFY_INIT_CREDS_OPT_AP_REQ_NOFAIL)
62 && options
57 fail_verify_is_ok(krb5_context context, krb5_verify_init_creds_opt *options) argument
76 krb5_verify_init_creds(krb5_context context, krb5_creds *creds, krb5_principal ap_req_server, krb5_keytab ap_req_keytab, krb5_ccache *ccache, krb5_verify_init_creds_opt *options) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/Arch/
H A DAArch64.cpp35 if ((A = Args.getLastArg(options::OPT_mcpu_EQ))) {
59 if (Args.getLastArg(options::OPT_arch) || Triple.isOSDarwin())
193 if ((A = Args.getLastArg(options::OPT_march_EQ)))
195 else if ((A = Args.getLastArg(options::OPT_mcpu_EQ)))
197 else if (Args.hasArg(options::OPT_arch) || isCPUDeterminedByTriple(Triple))
201 if (success && (A = Args.getLastArg(clang::driver::options::OPT_mtune_EQ)))
204 else if (success && (A = Args.getLastArg(options::OPT_mcpu_EQ)))
208 (Args.hasArg(options::OPT_arch) || isCPUDeterminedByTriple(Triple)))
215 if (Args.getLastArg(options::OPT_mgeneral_regs_only)) {
221 if (Arg *A = Args.getLastArg(options
[all...]
/netbsd-current/external/mpl/bind/dist/bin/tests/system/
H A Dstart.pl28 # perl start.pl [--noclean] [--restart] [--port port] [--taskset cpus] test [server [options]]
54 # options Alternate options for the server.
56 # NOTE: options must be specified with '-- "<option list>"',
63 # the file is ignored). If "options" is already set, then
66 my $usage = "usage: $0 [--noclean] [--restart] [--port <port>] [--taskset <cpus>] test-directory [server-directory [server-options]]";
145 my $options = "";
166 my $options = "";
170 $options = "-i $1";
176 my $return = system("$PERL $srcdir/testsock.pl -p $port $options");
[all...]
/netbsd-current/external/cddl/osnet/dist/lib/pyzfs/common/
H A Dallow.py134 def args_to_perms(parser, options, who, perms):
171 if options.set:
173 elif options.create:
177 if options.user:
181 elif options.group:
198 if options.local:
200 if options.descend:
340 (options, args) = parser.parse_args(sys.argv[2:])
342 if sum((bool(options.everyone), bool(options
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dm2-valprint.c35 const struct value_print_options *options,
40 const struct value_print_options *options,
161 const struct value_print_options *options)
179 m2_print_array_contents (val, stream, recurse, options, len);
186 const struct value_print_options *options,
196 print_function_pointer_address (options, gdbarch, addr, stream);
201 if (options->addressprint && options->format != 's')
212 && (options->format == 0 || options
159 m2_print_unbounded_array(struct value *value, struct ui_file *stream, int recurse, const struct value_print_options *options) argument
184 print_unpacked_pointer(struct type *type, CORE_ADDR address, CORE_ADDR addr, const struct value_print_options *options, struct ui_file *stream) argument
225 print_variable_at_address(struct type *type, const gdb_byte *valaddr, struct ui_file *stream, int recurse, const struct value_print_options *options) argument
258 m2_print_array_contents(struct value *val, struct ui_file *stream, int recurse, const struct value_print_options *options, int len) argument
301 m2_value_print_inner(struct value *val, struct ui_file *stream, int recurse, const struct value_print_options *options) argument
[all...]
H A Dd-valprint.c35 const struct value_print_options *options)
66 d_value_print_inner (ival, stream, recurse + 1, options);
76 const struct value_print_options *options)
86 stream, recurse, val, options);
91 c_value_print_inner (val, stream, recurse, options);
31 dynamic_array_type(struct type *type, LONGEST embedded_offset, CORE_ADDR address, struct ui_file *stream, int recurse, struct value *val, const struct value_print_options *options) argument
75 d_value_print_inner(struct value *val, struct ui_file *stream, int recurse, const struct value_print_options *options) argument
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dm2-valprint.c35 const struct value_print_options *options,
40 const struct value_print_options *options,
161 const struct value_print_options *options)
179 m2_print_array_contents (val, stream, recurse, options, len);
186 const struct value_print_options *options,
196 print_function_pointer_address (options, gdbarch, addr, stream);
201 if (options->addressprint && options->format != 's')
212 && (options->format == 0 || options
159 m2_print_unbounded_array(struct value *value, struct ui_file *stream, int recurse, const struct value_print_options *options) argument
184 print_unpacked_pointer(struct type *type, CORE_ADDR address, CORE_ADDR addr, const struct value_print_options *options, struct ui_file *stream) argument
225 print_variable_at_address(struct type *type, const gdb_byte *valaddr, struct ui_file *stream, int recurse, const struct value_print_options *options) argument
258 m2_print_array_contents(struct value *val, struct ui_file *stream, int recurse, const struct value_print_options *options, int len) argument
[all...]
/netbsd-current/external/bsd/ntp/dist/lib/isc/
H A Dcommandline.c101 isc_commandline_parse(int argc, char * const *argv, const char *options) { argument
103 char *option; /* Index into *options of option. */
105 REQUIRE(argc >= 0 && argv != NULL && options != NULL);
131 * Found '--' to signal end of options. Advance
141 option = strchr(options, isc_commandline_option);
144 * Ensure valid option has been passed as specified by options string.
146 * distinguish ':' from the argument specifier in the options string.
152 if (isc_commandline_errprint && *options != ':')
200 * when ':' starts options string, per historical spec.
202 if (*options
[all...]
/netbsd-current/external/mit/libuv/dist/docs/src/sphinx-plugins/
H A Dmanpage.py18 def make_link_node(rawtext, app, name, manpage_num, options):
25 set_classes(options)
26 node = nodes.reference(rawtext, "%s(%s)" % (name, manpage_num), refuri=ref, **options)
30 def man_role(name, rawtext, text, lineno, inliner, options={}, content=[]):
37 node = make_link_node(rawtext, app, name, manpage_num, options)

Completed in 276 milliseconds

1234567891011>>