Searched refs:opt (Results 101 - 125 of 1527) sorted by relevance

1234567891011>>

/macosx-10.9.5/Heimdal-323.92.1/kcm/
H A Dacquire.c48 krb5_get_init_creds_opt *opt = NULL; local
87 ret = krb5_get_init_creds_opt_alloc(context, &opt);
90 krb5_get_init_creds_opt_set_default_flags(context, "kcm", realm, opt);
92 krb5_get_init_creds_opt_set_tkt_life(opt, ccache->tkt_life);
94 krb5_get_init_creds_opt_set_renew_life(opt, ccache->renew_life);
105 opt);
113 opt);
145 if (opt)
146 krb5_get_init_creds_opt_free(context, opt);
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tk/
H A Dcomposite.rb222 opt, wins = tbl[-1]
223 opt = slot if opt == 'DEFAULT'
225 # return wins[-1].cget(opt)
226 return wins[-1].cget_strict(opt)
281 opt, wins = tbl[-1]
282 opt = slot if opt == 'DEFAULT'
284 return wins[-1].cget(opt)
319 tbl.each{|opt, win
[all...]
/macosx-10.9.5/cups-372.4/cups/ppdc/
H A Dppdi.cxx47 char *opt; // Current option local
61 for (opt = argv[i] + 1; *opt; opt ++)
62 switch (*opt)
/macosx-10.9.5/ruby-104/ruby/lib/irb/
H A Dinit.rb130 while opt = ARGV.shift
131 case opt
142 opt = $1 || ARGV.shift
143 case opt
152 opt = $1 || ARGV.shift
153 @CONF[:LOAD_MODULES].push opt if opt
155 opt = $1 || ARGV.shift
156 load_path.concat(opt.split(File::PATH_SEPARATOR)) if opt
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/
H A Dun.rb277 opt = options[:d] and opt.split(/:/).each {|n| dir_config(*n.split(/,/))}
278 opt = options[:h] and opt.split(/:/).each {|n| have_header(*n.split(/,/))}
279 opt = options[:l] and opt.split(/:/).each {|n| have_library(*n.split(/,/))}
280 opt = options[:f] and opt.split(/:/).each {|n| have_func(*n.split(/,/))}
281 opt = options[:v] and opt
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclsoap/tclsoap/
H A Dftp.tcl56 proc ::SOAP::Transport::ftp::method:configure {procVarName opt value} {
58 switch -glob -- $opt {
67 return -code error "unknown option \"$opt\""
81 foreach {opt value} [array get options] {
82 lappend r "-$opt" $value
87 foreach {opt value} $args {
88 switch -- $opt {
90 return -code error "invalid option \"$opt\":\
/macosx-10.9.5/xar-202/xar/lib/
H A Ddata.c140 const char *opt; local
150 xar_prop_get(f, "type", &opt);
151 if(!opt) return 0;
152 if( strcmp(opt, "file") != 0 ) {
153 if( strcmp(opt, "hardlink") == 0 ) {
154 opt = xar_attr_get(f, "type", "link");
155 if( !opt )
157 if( strcmp(opt, "original") != 0 )
197 const char *opt; local
205 xar_prop_get(f, "type", &opt);
257 const char *opt; local
[all...]
H A Dbzxar.c85 const char *opt; local
96 opt = NULL;
99 opt = xar_attr_pget(f, tmpp, "style");
100 if( !opt ) return 0;
101 if( strcmp(opt, "application/x-bzip2") != 0 ) return 0;
146 opt = NULL;
149 opt = xar_attr_pget(f, tmpp, "style");
150 if( !opt ) return 0;
151 if( strcmp(opt, "application/x-bzip2") != 0 ) return 0;
183 const char *opt; local
[all...]
/macosx-10.9.5/lsof-52/lsof/lib/
H A Dptti.c127 int opt; local
129 if ((opt = Lf->lts.opt)
144 if (opt & SO_ACCEPTCONN) {
146 opt &= ~SO_ACCEPTCONN;
152 if (opt & SO_ACCEPTFILTER) {
154 opt &= ~SO_ACCEPTFILTER;
160 if (opt & SO_AUDIT) {
162 opt &= ~SO_AUDIT;
168 if (opt
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/apps/comm/
H A Dlink-checker.xotcl33 set opt(-url) http://localhost:8000/
34 set opt(-url) http://nm.wu-wien.ac.at/Lehre/
35 set opt(-verbose) 0; # 0, 1 (show check), or 2 (show ignore)
36 set opt(-foreign) 1; # 0, 1 (check foreign links on local pages)
37 set opt(-restrict) 0; # 0, 1
40 array set opt $argv
41 if {$opt(-restrict)} {
42 regexp {://(.*)$} $opt(-url) _ opt(-local)
43 set opt(
[all...]
/macosx-10.9.5/Heimdal-323.92.1/kadmin/
H A Dank.c226 add_new_key(struct add_options *opt, int argc, char **argv) argument
235 if (opt->random_key_flag)
237 if (opt->random_password_flag)
239 if (opt->password_string)
241 if (opt->key_string)
250 if (opt->key_string) {
253 if (parse_des_key (opt->key_string, key_data, &error)) {
255 opt->key_string, error);
263 opt->random_key_flag,
264 opt
[all...]
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dargp-help.c125 { "short-opt-col", 0, offsetof (struct uparams, short_opt_col) },
126 { "long-opt-col", 0, offsetof (struct uparams, long_opt_col) },
127 { "doc-opt-col", 0, offsetof (struct uparams, doc_opt_col) },
128 { "opt-doc-col", 0, offsetof (struct uparams, opt_doc_col) },
260 #define ovisible(opt) (! ((opt)->flags & OPTION_HIDDEN))
263 #define oalias(opt) ((opt)->flags & OPTION_ALIAS)
266 #define odoc(opt) ((opt)
356 const struct argp_option *opt; member in struct:hol_entry
549 hol_entry_short_iterate(const struct hol_entry *entry, int (*func)(const struct argp_option *opt, const struct argp_option *real, const char *domain, void *cookie), const char *domain, void *cookie) argument
557 const struct argp_option *opt, *real = entry->opt; local
575 hol_entry_long_iterate(const struct hol_entry *entry, int (*func)(const struct argp_option *opt, const struct argp_option *real, const char *domain, void *cookie), const char *domain, void *cookie) argument
583 const struct argp_option *opt, *real = entry->opt; local
599 until_short(const struct argp_option *opt, const struct argp_option *real, const char *domain, void *cookie) argument
617 const struct argp_option *opt; local
635 const struct argp_option *opt = entry->opt; local
904 const struct argp_option *opt; local
1103 const struct argp_option *real = entry->opt, *opt; local
1268 add_argless_short_opt(const struct argp_option *opt, const struct argp_option *real, const char *domain, void *cookie) argument
1282 usage_argful_short_opt(const struct argp_option *opt, const struct argp_option *real, const char *domain, void *cookie) argument
1314 usage_long_opt(const struct argp_option *opt, const struct argp_option *real, const char *domain, void *cookie) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/kuser/
H A Dkdigest.c66 digest_probe(struct digest_probe_options *opt, argument
73 realm = opt->realm_string;
88 digest_server_init(struct digest_server_init_options *opt, argument
98 ret = krb5_digest_set_type(context, digest, opt->type_string);
102 if (opt->cb_type_string && opt->cb_value_string) {
104 opt->cb_type_string,
105 opt->cb_value_string);
111 opt->kerberos_realm_string,
116 printf("type=%s\n", opt
132 digest_server_request(struct digest_server_request_options *opt, int argc, char **argv) argument
359 digest_client_request(struct digest_client_request_options *opt, int argc, char **argv) argument
430 ntlm_server_init(struct ntlm_server_init_options *opt, int argc, char ** argv) argument
521 help(void *opt, int argc, char **argv) argument
[all...]
/macosx-10.9.5/bash-92/bash-3.2/builtins/
H A Dsuspend.c49 int opt, force; local
53 while ((opt = internal_getopt (list, "f")) != -1)
54 switch (opt)
/macosx-10.9.5/bash-92/bash-3.2/examples/loadables/
H A Dpush.c27 int xstatus, opt; local
31 while ((opt = internal_getopt (list, "")) != -1)
33 switch (opt)
H A Dhead.c77 int nline, opt, rval; local
87 while ((opt = internal_getopt (list, "n:")) != -1)
89 switch (opt)
109 for (rval = EXECUTION_SUCCESS, opt = 1, l = list; l; l = l->next)
119 printf ("%s==> %s <==\n", opt ? "" : "\n", l->word->word);
120 opt = 0;
/macosx-10.9.5/cups-372.4/cups/systemv/
H A Dcupsctl.c35 static void usage(const char *opt) __attribute__((noreturn));
49 const char *opt; /* Current option character */ local
103 for (opt = argv[i] + 1; *opt; opt ++)
104 switch (*opt)
127 usage(opt);
190 usage(const char *opt) /* I - Option character/string */ argument
192 if (opt)
194 if (*opt
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/Hexagon/
H A DHexagonSubtarget.cpp25 static cl::opt<bool>
29 static cl::opt<bool>
35 static cl::opt<bool>
/macosx-10.9.5/screen-22/screen/
H A Dteln.c401 TelDocmd(p, cmd, opt)
403 int cmd, opt;
409 debug2("[WONT %c %d]\n", TO_S[opt], opt);
411 debug2("[WILL %c %d]\n", TO_S[opt], opt);
413 debug2("[DONT %c %d]\n", TO_S[opt], opt);
415 debug2("[DO %c %d]\n", TO_S[opt], opt);
[all...]
/macosx-10.9.5/libpcap-42/libpcap/
H A Dpcap-snoop.c217 (void)strncpy(sr.sr_ifname, p->opt.source, sizeof(sr.sr_ifname));
229 if (p->opt.buffer_size != 0)
230 v = p->opt.buffer_size;
237 if (strncmp("et", p->opt.source, 2) == 0 || /* Challenge 10 Mbit */
238 strncmp("ec", p->opt.source, 2) == 0 || /* Indigo/Indy 10 Mbit,
240 strncmp("ef", p->opt.source, 2) == 0 || /* O200/2000 10/100 Mbit */
241 strncmp("eg", p->opt.source, 2) == 0 || /* Octane/O2xxx/O3xxx Gigabit */
242 strncmp("gfe", p->opt.source, 3) == 0 || /* GIO 100 Mbit */
243 strncmp("fxp", p->opt.source, 3) == 0 || /* Challenge VME Enet */
244 strncmp("ep", p->opt
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-as/
H A Dllvm-as.cpp33 static cl::opt<std::string>
36 static cl::opt<std::string>
40 static cl::opt<bool>
43 static cl::opt<bool>
46 static cl::opt<bool>
49 static cl::opt<bool>
/macosx-10.9.5/ncurses-42/ncurses/menu/
H A Dm_opts.c70 if ((opts & O_ROWMAJOR) != (menu->opt & O_ROWMAJOR))
82 menu->opt = opts;
97 _nc_Default_Menu.opt = opts;
130 opts = cmenu->opt & ~opts;
163 opts = cmenu->opt | opts;
180 returnMenuOpts(ALL_MENU_OPTS & Normalize_Menu(menu)->opt);
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-objdump/
H A Dllvm-objdump.h20 extern cl::opt<std::string> TripleName;
21 extern cl::opt<std::string> ArchName;
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/
H A Dttk_wrapper.rb13 opt = OptionParser.new("Usage: #{$0} [options] rubytk_script" << "\n " <<
15 opt.version = version
22 opt.on('-l', '--list', 'list available theme names'){|v| OPTS[:list] = true}
23 opt.on('-t', '--theme theme', 'theme name'){|v| OPTS[:theme] = v}
24 opt.on('-d', '--themedir themes_dir', 'directory of theme definitions'){|v|
27 opt.on('-r', '--rubytheme rb_theme', 'theme definition file (ruby script)'){|v|
30 opt.on('-v', '--verbose', 'print verbose messages'){|v| OPTS[:verbose] = true}
32 opt.parse!(ARGV)
152 print opt.help
/macosx-10.9.5/xnu-2422.115.4/tools/tests/libMicro/apple/
H A Dlmbench_openclose.c64 benchmark_optswitch(int opt, char *optarg) argument
66 switch (opt) {

Completed in 409 milliseconds

1234567891011>>