Searched refs:options (Results 1 - 25 of 3146) sorted by relevance

1234567891011>>

/macosx-10.10.1/xnu-2782.1.97/config/
H A DMASTER56 options INET # # <inet>
57 options HW_AST # Hardware ast support # <hw_ast>
58 options HW_FOOTPRINT # Cache footprint support # <hw_foot>
60 options MACH # Standard Mach features # <mach>
61 options MACH_COMPAT # Vendor syscall compatibility # <mach>
62 options MACH_FASTLINK # Fast symbolic links
63 options MACH_HOST # Mach host (resource alloc.) # <host>
64 options MACH_IPC_COMPAT # Enable old IPC interface # <ipc_compat>
65 options MACH_IPC_TEST # Testing code/printfs # <ipc_test>
66 options MACH_N
[all...]
H A DMASTER.x86_6455 options PAL_I386
57 options CONFIG_MCA # Machine Check Architecture # <config_mca>
58 options CONFIG_VMX # Virtual Machine Extensions # <config_vmx>
59 options CONFIG_MTRR # Memory Type Range Registers # <config_mtrr>
61 options NO_NESTED_PMAP # <no_nested_pmap>
63 options HYPERVISOR # Apple hypervisor kext support # <hypervisor>
65 options CONFIG_MACH_APPROXIMATE_TIME
/macosx-10.10.1/cups-408/cups/tools/
H A Dpdftops-darwin.sh6 options=""
14 options="$options fit-to-page"
17 echo "Usage: pdftops [options] filename"
40 /usr/libexec/cups/filter/cgpdftops job user title 1 "$options" "$option"
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/
H A Dinstall_update_options.rb17 # Mixin methods for install and update options for Gem::Commands
22 # Add the install/update options to the option parser.
38 'gems') do |value, options|
39 options[:install_dir] = File.expand_path(value)
44 'located') do |value, options|
45 options[:bin_dir] = File.expand_path(value)
51 'generate. For example: rdoc,ri') do |value, options|
52 options[:document] = case value
60 'Disable documentation generation') do |value, options|
61 options[
[all...]
H A Dlocal_remote_options.rb11 # Mixin methods for local and remote Gem::Command options.
35 # Add local/remote options to the command line parser.
39 'Restrict operations to the LOCAL domain') do |value, options|
40 options[:domain] = :local
44 'Restrict operations to the REMOTE domain') do |value, options|
45 options[:domain] = :remote
49 'Allow LOCAL and REMOTE operations') do |value, options|
50 options[:domain] = :both
67 |value, options|
77 'Clear the gem sources') do |value, options|
[all...]
H A Dversion_option.rb10 # Mixin methods for --version and --platform Gem::Command options.
28 |value, options|
29 unless options[:added_platform] then
31 options[:added_platform] = true
43 "Allow prerelease versions of a gem", *wrap) do |value, options|
44 options[:prerelease] = value
58 |value, options|
59 options[:version] = value
60 options[:prerelease] = true if value.prerelease?
/macosx-10.10.1/ICU-531.30/icuSources/tools/gencmn/
H A Dgencmn.c34 static UOption options[]={ variable
55 /* preset then read command line options */
56 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
67 if(argc<0 || options[0].doesOccur || options[1].doesOccur) {
76 if (options[0].doesOccur || options[1].doesOccur) {
100 sourceTOC=options[
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/unisetperf/
H A Dunisetperf.pl16 my $options = {
64 runTests($options, $tests, $dataFiles);
66 $options = {
89 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/checkconf/
H A Ddnssec.119 options {
/macosx-10.10.1/patch_cmds-17/diffstat/porting/
H A Dgetopt.h4 int getopt (int argc, char *const*argv, const char *options);
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dreadconf.c51 # 1. command line options
96 # Defaults for various options
271 * Adds a local TCP/IP port forward to options. Never returns if there is an
276 add_local_forward(Options *options, const Forward *newfwd) argument
284 options->local_forwards = xrealloc(options->local_forwards,
285 options->num_local_forwards + 1,
286 sizeof(*options->local_forwards));
287 fwd = &options->local_forwards[options
301 add_remote_forward(Options *options, const Forward *newfwd) argument
319 clear_forwardings(Options *options) argument
347 add_identity_file(Options *options, const char *dir, const char *filename, int userprovided) argument
391 process_config_line(Options *options, const char *host, char *line, const char *filename, int linenum, int *activep, int userconfig) argument
1138 read_config_file(const char *filename, const char *host, Options *options, int flags) argument
1189 initialize_options(Options * options) argument
1284 fill_default_options(Options * options) argument
[all...]
H A Dssh.c160 * General data structure for command line options and options configurable
163 Options options; variable
325 initialize_options(&options);
337 options.protocol = SSH_PROTO_1;
340 options.protocol = SSH_PROTO_2;
343 options.address_family = AF_INET;
346 options.address_family = AF_INET6;
356 options.forward_x11 = 0;
359 options
[all...]
H A Dservconf.c61 /* Initializes the server options to their default values. */
64 initialize_server_options(ServerOptions *options) argument
66 memset(options, 0, sizeof(*options));
68 /* Portable-specific options */
69 options->use_pam = -1;
72 options->num_ports = 0;
73 options->ports_from_cmdline = 0;
74 options->listen_addrs = NULL;
75 options
155 fill_default_server_options(ServerOptions *options) argument
548 add_listen_addr(ServerOptions *options, char *addr, int port) argument
564 add_one_listen_addr(ServerOptions *options, char *addr, int port) argument
830 process_server_config_line(ServerOptions *options, char *line, const char *filename, int linenum, int *activep, struct connection_info *connectinfo) argument
1663 parse_server_match_config(ServerOptions *options, struct connection_info *connectinfo) argument
1789 parse_server_config(ServerOptions *options, const char *filename, Buffer *conf, struct connection_info *connectinfo) argument
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/convperf/
H A Dconvperf_ansi.pl22 my $options = {
56 runTests($options, $tests, $dataFiles);
H A Dconvperf_iml.pl22 my $options = {
62 runTests($options, $tests, $dataFiles);
H A DConvPerf_r.pl22 my $options = {
66 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/normperf/
H A DNormPerf.pl15 my $options = {
59 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/bind9-45.101/bind9/doc/misc/
H A Dsort-options.pl17 # $Id: sort-options.pl,v 1.3 2007/09/24 23:46:48 tbox Exp $
20 my @options = ();
33 push(@options, $sec . sortlevel());
35 push(@options, $_);
41 foreach my $i (sort @options) {
/macosx-10.10.1/ICU-531.30/icuSources/tools/genccode/
H A Dgenccode.c74 static UOption options[]={ variable
98 options[kOptDestDir].value = ".";
100 /* read command line options */
101 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
109 if(argc<0 || options[kOptHelpH].doesOccur || options[kOptHelpQuestionMark].doesOccur) {
111 "usage: %s [-options] filename1 filename2 ...\n"
114 "options
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dun.rb35 def setup(options = "", *long_options)
39 options.scan(/.:?/) do |s|
78 setup("pr") do |argv, options|
80 cmd += "_r" if options.delete :r
81 options[:preserve] = true if options.delete :p
84 FileUtils.send cmd, argv, dest, options
99 setup("sf") do |argv, options|
101 cmd += "_s" if options.delete :s
102 options[
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/net/
H A Dtelnet.rb179 # +options+ is a hash of options. The following example lists
180 # all options and their default values.
197 # The options have the following meanings:
211 # the newline conversion is also affected by the telnet options
273 def initialize(options) # :yield: mesg
274 @options = options
275 @options["Host"] = "localhost" unless @options
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/commands/
H A Duninstall_command.rb21 ) do |value, options|
22 options[:all] = value
27 'uninstalling') do |value, options|
28 options[:ignore] = value
33 '(default: false)') do |value, options|
34 options[:check_dev] = value
39 'confirmation') do |value, options|
40 options[:executables] = value
44 'Directory to uninstall gem from') do |value, options|
45 options[
[all...]
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/
H A Dpacket.pl60 my %options={};
61 getopts("a:p:t:", \%options);
64 $addr = $options{a} if defined $options{a};
67 $port = $options{p} if defined $options{p};
70 $proto = lc $options{t} if defined $options{t};
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/charperf/
H A DCharPerf.pl17 my $options = {
55 runTests($options, $tests, $dataFiles);
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/ustrperf/
H A DStringPerf.pl17 my $options = {
72 runTests($options, $tests, $dataFiles);

Completed in 203 milliseconds

1234567891011>>