/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/ |
H A D | vic_opt.c | 5 krb5_verify_init_creds_opt_init(krb5_verify_init_creds_opt *opt) argument 7 opt->flags = 0; 11 krb5_verify_init_creds_opt_set_ap_req_nofail(krb5_verify_init_creds_opt *opt, int ap_req_nofail) argument 13 opt->flags |= KRB5_VERIFY_INIT_CREDS_OPT_AP_REQ_NOFAIL; 14 opt->ap_req_nofail = ap_req_nofail;
|
H A D | gic_opt.c | 6 init_common(krb5_get_init_creds_opt *opt) argument 8 opt->flags |= KRB5_GET_INIT_CREDS_OPT_CHG_PWD_PRMPT; 12 krb5_get_init_creds_opt_init(krb5_get_init_creds_opt *opt) argument 14 opt->flags = 0; 15 init_common(opt); 19 krb5_get_init_creds_opt_set_tkt_life(krb5_get_init_creds_opt *opt, krb5_deltat tkt_life) argument 21 opt->flags |= KRB5_GET_INIT_CREDS_OPT_TKT_LIFE; 22 opt->tkt_life = tkt_life; 26 krb5_get_init_creds_opt_set_renew_life(krb5_get_init_creds_opt *opt, krb5_deltat renew_life) argument 28 opt 33 krb5_get_init_creds_opt_set_forwardable(krb5_get_init_creds_opt *opt, int forwardable) argument 40 krb5_get_init_creds_opt_set_proxiable(krb5_get_init_creds_opt *opt, int proxiable) argument 47 krb5_get_init_creds_opt_set_canonicalize(krb5_get_init_creds_opt *opt, int canonicalize) argument 56 krb5_get_init_creds_opt_set_anonymous(krb5_get_init_creds_opt *opt, int anonymous) argument 65 krb5_get_init_creds_opt_set_etype_list(krb5_get_init_creds_opt *opt, krb5_enctype *etype_list, int etype_list_length) argument 73 krb5_get_init_creds_opt_set_address_list(krb5_get_init_creds_opt *opt, krb5_address **addresses) argument 80 krb5_get_init_creds_opt_set_preauth_list(krb5_get_init_creds_opt *opt, krb5_preauthtype *preauth_list, int preauth_list_length) argument 88 krb5_get_init_creds_opt_set_salt(krb5_get_init_creds_opt *opt, krb5_data *salt) argument 95 krb5_get_init_creds_opt_set_change_password_prompt(krb5_get_init_creds_opt *opt, int prompt) argument 188 krb5_get_init_creds_opt_alloc(krb5_context context, krb5_get_init_creds_opt **opt) argument 210 krb5_get_init_creds_opt_free(krb5_context context, krb5_get_init_creds_opt *opt) argument 230 krb5int_gic_opte_copy(krb5_context context, krb5_get_init_creds_opt *opt, krb5_gic_opt_ext **opte) argument 280 krb5int_gic_opt_to_opte(krb5_context context, krb5_get_init_creds_opt *opt, krb5_gic_opt_ext **opte, unsigned int force, const char *where) argument 365 krb5_get_init_creds_opt_set_pa(krb5_context context, krb5_get_init_creds_opt *opt, const char *attr, const char *value) argument 401 krb5_get_init_creds_opt_get_pa(krb5_context context, krb5_get_init_creds_opt *opt, int *num_preauth_data, krb5_gic_opt_pa_data **preauth_data) argument 482 krb5_get_init_creds_opt_set_fast_ccache_name(krb5_context context, krb5_get_init_creds_opt *opt, const char *ccache_name) argument 503 krb5_get_init_creds_opt_set_out_ccache(krb5_context context, krb5_get_init_creds_opt *opt, krb5_ccache ccache) argument 519 krb5_get_init_creds_opt_set_fast_flags(krb5_context context, krb5_get_init_creds_opt *opt, krb5_flags flags) argument 535 krb5_get_init_creds_opt_get_fast_flags(krb5_context context, krb5_get_init_creds_opt *opt, krb5_flags *out_flags) argument [all...] |
/osnet-11/usr/src/lib/krb5/ss/ |
H A D | options.c | 28 register struct option *opt; local 29 for (opt = options; opt->text; opt++) 30 if (!strcmp(opt->text, string)) 31 return(opt->value);
|
/osnet-11/usr/src/lib/libnsl/rpc/ |
H A D | rpc_td.c | 56 struct opthdr *opt; local 59 t_optreq.opt.maxlen = MAXOPTSIZE; 60 t_optreq.opt.buf = malloc(MAXOPTSIZE); 61 if (t_optreq.opt.buf == NULL) { 66 opt = (struct opthdr *)(t_optreq.opt.buf); 67 opt->name = TCP_NODELAY; 68 opt->len = 4; 69 opt->level = IPPROTO_TCP; 70 (void) memcpy((caddr_t)t_optreq.opt [all...] |
H A D | ti_opts.c | 157 struct T_opthdr *opt = (struct T_opthdr *)bufp; local 160 syslog(LOG_INFO, "find_ucred_opt opt: %p %x, %d %d", opt, 161 opt->len, opt->name, opt->level); 163 if (opt->len > maxbufp - bufp || (opt->len & 3)) 165 if (opt->level == SOL_SOCKET && opt 277 struct T_opthdr *opt, *opt_start = NULL, *opt_end; local [all...] |
/osnet-11/usr/src/lib/libeti/menu/common/ |
H A D | itemopts.c | 39 set_item_opts(ITEM *i, OPTIONS opt) argument 42 if (Iopt(i) != opt) { 43 Iopt(i) = opt; 45 if ((opt & O_SELECTABLE) == 0) { 56 Iopt(Dfl_Item) = opt; 62 item_opts_off(ITEM *i, OPTIONS opt) argument 64 return (set_item_opts(i, (Iopt(i ? i : Dfl_Item)) & ~opt)); 68 item_opts_on(ITEM *i, OPTIONS opt) argument 70 return (set_item_opts(i, (Iopt(i ? i : Dfl_Item)) | opt));
|
H A D | menuopts.c | 39 set_menu_opts(MENU *m, int opt) argument 50 if ((opt & O_ROWMAJOR) != RowMajor(m)) { 57 if ((opt & O_NONCYCLIC) != (Mopt(m) & O_NONCYCLIC)) { 61 Mopt(m) = opt; 70 Mopt(Dfl_Menu) = opt; 76 menu_opts_off(MENU *m, OPTIONS opt) argument 78 return (set_menu_opts(m, (Mopt(m ? m : Dfl_Menu)) & ~opt)); 82 menu_opts_on(MENU *m, OPTIONS opt) argument 84 return (set_menu_opts(m, (Mopt(m ? m : Dfl_Menu)) | opt));
|
/osnet-11/usr/src/grub/grub2/grub-core/lib/ |
H A D | arg.c | 41 auto struct grub_arg_option *fnd_short (const struct grub_arg_option *opt); 43 struct grub_arg_option *fnd_short (const struct grub_arg_option *opt) argument 45 while (opt->doc) 47 if (opt->shortarg == c) 48 return (struct grub_arg_option *) opt; 49 opt++; 81 auto struct grub_arg_option *fnd_long (const struct grub_arg_option *opt); 83 struct grub_arg_option *fnd_long (const struct grub_arg_option *opt) argument 85 while (opt->doc) 87 if (opt 117 showargs(const struct grub_arg_option *opt) argument 180 parse_option(grub_extcmd_t cmd, const struct grub_arg_option *opt, char *arg, struct grub_arg_list *usr) argument 240 struct grub_arg_option *opt; local [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Getopt/ |
H A D | Std.t | 12 our ($warning, $opt_f, $opt_i, $opt_o, $opt_x, $opt_y, %opt); 23 getopt 'il', \%opt; 26 ok( $opt{h} && $opt{i} eq 'j', 'option -h and -i correctly set' ); 27 ok( !defined $opt{l}, 'option -l not set' ); 39 %opt = (); $opt_i = undef; 42 ok( getopts('hi:kl', \%opt), 'getopts succeeded (2)' ); 44 ok( $opt{h} && $opt{k}, 'options -h and -k set' ); 45 is( $opt{ [all...] |
/osnet-11/usr/src/lib/libsldap/common/ |
H A D | ns_trace.c | 74 struct option *opt; local 79 for (opt = options; opt->name; opt++) { 80 if (strcasecmp(name, opt->name) == 0) { 81 switch (opt->type) { 84 *((char **)opt->address) = p; 91 *((int *)opt->address) = n; 102 *((int *)opt->address) = fd;
|
/osnet-11/usr/src/lib/libnsl/nsl/ |
H A D | t_free.c | 44 struct t_optmgmt *opt; member in union:structptrs 66 if (p.call->opt.buf != NULL) 67 free(p.call->opt.buf); 73 p.opt = (struct t_optmgmt *)ptr; 74 if (p.opt->opt.buf != NULL) 75 free(p.opt->opt.buf); 88 if (p.udata->opt.buf != NULL) 89 free(p.udata->opt [all...] |
H A D | t_optmgmt.c | 69 struct t_opthdr *opt, *next_opt; local 107 optlen = req->opt.len; 115 if (req->opt.buf == NULL || 122 opt_start = (struct t_opthdr *)req->opt.buf; 128 * "opt.buf" at start of buffer and in combination with 131 * applies to output buffer "ret->opt.buf" is an "interesting 161 for (opt = opt_start; opt < opt_end; opt = next_opt) { 174 * 'opt [all...] |
/osnet-11/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/ |
H A D | ldap_create.c | 90 char *opt = NULL, *val = NULL; local 92 if ((status = krb5_ldap_get_db_opt(*t_ptr, &opt, &val)) != 0) { 95 if (opt && !strcmp(opt, "binddn")) { 97 free (opt); 106 free(opt); 111 free (opt); 116 } else if (opt && !strcmp(opt, "nconns")) { 118 free (opt); [all...] |
H A D | kdb_ldap.c | 55 krb5_ldap_get_db_opt(char *input, char **opt, char **val) argument 61 *opt = strdup(input); 62 if (*opt == NULL) { 67 *opt = malloc((unsigned) len + 1); 68 if (!*opt) { 71 memcpy(*opt, input, (unsigned) len); 73 while (isblank((*opt)[len-1])) 75 (*opt)[len] = '\0'; 83 free (*opt); 335 char *opt local [all...] |
/osnet-11/usr/src/lib/brand/solaris/zone/ |
H A D | detach.ksh | 34 while getopts "nR:z:" opt; do 35 case $opt in
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/ |
H A D | perlcc.PL | 66 sub opt(*); # imal quoting 94 if (opt(B)) { 98 if (opt(S) && opt(c)) { 102 $Backend = 'CC' if opt(O); 112 if (opt(shared)) { 121 exit(0) if (!opt('r')); 143 if (opt(v) > $level) 145 print "$0: $msg" if !opt('log'); 146 print $logfh "$0: $msg" if opt('lo [all...] |
/osnet-11/usr/src/lib/libwrap/ |
H A D | fix_options.c | 49 unsigned int opt; local 87 opt = cp[IPOPT_OPTVAL]; 88 if (opt == IPOPT_LSRR || opt == IPOPT_SSRR) { 95 if (opt == IPOPT_EOL) 97 if (opt == IPOPT_NOP) {
|
/osnet-11/usr/src/lib/libfuse/common/ |
H A D | options.c | 114 fuse_opt_add_opt(char **opts, const char *opt) argument 123 *opts = libfuse_strdup(opt); 130 optlen = strlen(opt); 136 (void) strlcat(newopts, opt, newlen); 206 const struct fuse_opt *opt; local 210 for (opt = opts; opt->templ != NULL; opt++) { 211 chop = strrchr(opt->templ, '='); 213 chop = strrchr(opt 262 fuse_opt_apply(struct fuse_args *new, const char *arg, const struct fuse_opt *opt, fuse_opt_proc_t proc, void *data) argument 291 const struct fuse_opt *opt; local 347 char buffy[BUFSIZ], *opt, *lasts; local [all...] |
/osnet-11/usr/src/lib/libshell/common/sh/ |
H A D | bash.c | 194 Shopt_t newflags=shp->options, opt; local 197 memset(&opt,0,sizeof(opt)); 240 opt=newflags; 243 opt.v[n]=~newflags.v[n]; 245 memset(&opt,0xff,sizeof(opt)); 253 && (is_option(&opt,SH_INTERACTIVE) 254 || is_option(&opt,SH_RESTRICTED) 255 || is_option(&opt,SH_RESTRICTED [all...] |
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/ |
H A D | argp-help.c | 124 { "short-opt-col", 0, offsetof (struct uparams, short_opt_col) }, 125 { "long-opt-col", 0, offsetof (struct uparams, long_opt_col) }, 126 { "doc-opt-col", 0, offsetof (struct uparams, doc_opt_col) }, 127 { "opt-doc-col", 0, offsetof (struct uparams, opt_doc_col) }, 259 #define ovisible(opt) (! ((opt)->flags & OPTION_HIDDEN)) 262 #define oalias(opt) ((opt)->flags & OPTION_ALIAS) 265 #define odoc(opt) ((opt) 355 const struct argp_option *opt; member in struct:hol_entry 548 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 556 const struct argp_option *opt, *real = entry->opt; local 574 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 582 const struct argp_option *opt, *real = entry->opt; local 598 until_short(const struct argp_option *opt, const struct argp_option *real, const char *domain, void *cookie) argument 616 const struct argp_option *opt; local 634 const struct argp_option *opt = entry->opt; local 901 const struct argp_option *opt; local 1100 const struct argp_option *real = entry->opt, *opt; local 1265 add_argless_short_opt(const struct argp_option *opt, const struct argp_option *real, const char *domain, void *cookie) argument 1279 usage_argful_short_opt(const struct argp_option *opt, const struct argp_option *real, const char *domain, void *cookie) argument 1311 usage_long_opt(const struct argp_option *opt, const struct argp_option *real, const char *domain, void *cookie) argument [all...] |
/osnet-11/usr/src/cmd/hal/tools/ |
H A D | hal_find_by_capability.c | 91 const char *opt; local 107 opt = long_options[option_index].name; 109 if (strcmp (opt, "help") == 0) { 112 } else if (strcmp (opt, "verbose") == 0) { 114 } else if (strcmp (opt, "version") == 0) { 116 } else if (strcmp (opt, "capability") == 0) {
|
H A D | hal-is-caller-privileged.c | 121 const char *opt; local 138 opt = long_options[option_index].name; 140 if (strcmp (opt, "help") == 0) { 143 } else if (strcmp (opt, "version") == 0) { 145 } else if (strcmp (opt, "udi") == 0) { 147 } else if (strcmp (opt, "caller") == 0) { 149 } else if (strcmp (opt, "action") == 0) {
|
H A D | hal_find_by_property.c | 96 const char *opt; local 113 opt = long_options[option_index].name; 115 if (strcmp (opt, "help") == 0) { 118 } else if (strcmp (opt, "verbose") == 0) { 120 } else if (strcmp (opt, "version") == 0) { 122 } else if (strcmp (opt, "key") == 0) { 124 } else if (strcmp (opt, "string") == 0) {
|
/osnet-11/usr/src/lib/brand/solaris10/zone/ |
H A D | detach.ksh | 43 while getopts "n" opt; do 44 case $opt in
|
H A D | uninstall.ksh | 73 opt=`echo $OPT | sed 's/-\+//'` 75 echo $options_repeat | grep $opt >/dev/null 78 ( echo $options_seen | grep $opt >/dev/null ) && 80 options_seen="${options_seen}${opt}"
|