Searched refs:opt (Results 1 - 25 of 691) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dvic_opt.c5 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 Dgic_opt.c5 init_common(krb5_get_init_creds_opt *opt) argument
7 opt->flags |= KRB5_GET_INIT_CREDS_OPT_CHG_PWD_PRMPT;
11 krb5_get_init_creds_opt_init(krb5_get_init_creds_opt *opt) argument
13 opt->flags = 0;
14 init_common(opt);
18 krb5_get_init_creds_opt_set_tkt_life(krb5_get_init_creds_opt *opt, krb5_deltat tkt_life) argument
20 opt->flags |= KRB5_GET_INIT_CREDS_OPT_TKT_LIFE;
21 opt->tkt_life = tkt_life;
25 krb5_get_init_creds_opt_set_renew_life(krb5_get_init_creds_opt *opt, krb5_deltat renew_life) argument
27 opt
32 krb5_get_init_creds_opt_set_forwardable(krb5_get_init_creds_opt *opt, int forwardable) argument
39 krb5_get_init_creds_opt_set_proxiable(krb5_get_init_creds_opt *opt, int proxiable) argument
46 krb5_get_init_creds_opt_set_etype_list(krb5_get_init_creds_opt *opt, krb5_enctype *etype_list, int etype_list_length) argument
54 krb5_get_init_creds_opt_set_address_list(krb5_get_init_creds_opt *opt, krb5_address **addresses) argument
61 krb5_get_init_creds_opt_set_preauth_list(krb5_get_init_creds_opt *opt, krb5_preauthtype *preauth_list, int preauth_list_length) argument
69 krb5_get_init_creds_opt_set_salt(krb5_get_init_creds_opt *opt, krb5_data *salt) argument
76 krb5_get_init_creds_opt_set_change_password_prompt(krb5_get_init_creds_opt *opt, int prompt) argument
167 krb5_get_init_creds_opt_alloc(krb5_context context, krb5_get_init_creds_opt **opt) argument
189 krb5_get_init_creds_opt_free(krb5_context context, krb5_get_init_creds_opt *opt) argument
209 krb5int_gic_opte_copy(krb5_context context, krb5_get_init_creds_opt *opt, krb5_gic_opt_ext **opte) argument
248 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
333 krb5_get_init_creds_opt_set_pa(krb5_context context, krb5_get_init_creds_opt *opt, const char *attr, const char *value) argument
369 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
[all...]
/illumos-gate/usr/src/lib/krb5/ss/
H A Doptions.c29 register struct option *opt; local
30 for (opt = options; opt->text; opt++)
31 if (!strcmp(opt->text, string))
32 return(opt->value);
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Drpc_td.c60 struct opthdr *opt; local
63 t_optreq.opt.maxlen = MAXOPTSIZE;
64 t_optreq.opt.buf = malloc(MAXOPTSIZE);
65 if (t_optreq.opt.buf == NULL) {
71 opt = (struct opthdr *)(t_optreq.opt.buf);
72 opt->name = TCP_NODELAY;
73 opt->len = 4;
74 opt->level = IPPROTO_TCP;
75 (void) memcpy((caddr_t)(t_optreq.opt
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_history/
H A Dzpool_history_002_pos.ksh49 for opt in $options; do
50 log_must eval "zpool history $opt $TESTPOOL > /dev/null 2>&1"
/illumos-gate/usr/src/ucbcmd/file/
H A Dfile.sh39 while getopts cLf:m: opt
41 case $opt in
42 c) CFLAG=-$opt;;
44 m) MFLAG=-$opt; MARG=$OPTARG;;
45 f) FFLAG=-$opt; FARG=$OPTARG;;
/illumos-gate/usr/src/lib/libeti/menu/common/
H A Ditemopts.c39 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 Dmenuopts.c39 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));
/illumos-gate/usr/src/lib/libshell/common/tests/
H A Doptions.sh227 for opt in \
241 do old=$opt
242 if [[ ! -o $opt ]]
243 then old=no$opt
246 set --$opt || err_exit "set --$opt failed"
247 [[ -o $opt ]] || err_exit "[[ -o $opt ]] failed"
248 [[ -o no$opt ]] && err_exit "[[ -o no$opt ]] faile
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_create/
H A Dzpool_create_009_neg.ksh70 typeset opt
71 for opt in "" "mirror" "raidz" "raidz1"; do
73 (( ${#opt} == 0 )) && disk=${DISKS%% *}
76 if (( count < 2 && ${#opt} != 0 )) ; then
81 create_pool $TESTPOOL $opt $disk
82 log_mustnot zpool create -f $TESTPOOL1 $opt $disk
86 create_pool $TESTPOOL $opt $disk
87 log_mustnot zpool create -f $TESTPOOL1 $opt ${DISKS% *}
91 log_mustnot zpool create -f $TESTPOOL $opt $disk $disk
H A Dzpool_create_012_neg.ksh62 for opt in "-n" "" "-f"; do
63 log_mustnot zpool create $opt $TESTPOOL $sdisk
/illumos-gate/usr/src/test/zfs-tests/tests/functional/acl/nontrivial/
H A Dzfs_acl_chmod_rwx_001_pos.ksh65 function test_chmod_ACE_list #$opt $num $ace-spec $node
67 typeset opt=A$2$1
74 case $opt in
78 *) log_fail "Error option: '$opt'" ;;
82 if [[ $opt == A[0-9]*+ || $opt == A[0-9]*= ]]; then
83 log_must usr_exec chmod "$opt$ace" "$node"
85 log_must usr_exec chmod "$opt" "$node"
94 if [[ $opt == A[0-9]*+ || $opt
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_rollback/
H A Dzfs_rollback_001_pos.ksh64 function test_n_check #opt num_snap_clone num_rollback
66 typeset opt=$1
84 case $opt in
97 [[ $opt == *R* ]] && exist_clone=$TESTCLONE
101 [[ $opt == *R* ]] && exist_clone="$TESTCLONE $TESTCLONE1"
113 if [[ $opt == *f* ]]; then
116 opt=${opt%f}
121 log_must zfs rollback $opt $dtst@$snap_point
125 log_must zfs rollback $opt
[all...]
H A Dzfs_rollback_004_neg.ksh71 for opt in "" "-r" "-R" "-f" "-rR" "-rf" "-rRf"; do
72 log_mustnot eval "zfs rollback $opt $ds >/dev/null 2>&1"
73 log_mustnot eval "zfs rollback $opt ${ds}@$TESTSNAP \
75 log_mustnot eval "zfs rollback $opt >/dev/null 2>&1"
77 log_mustnot eval "zfs rollback $opt ${ds}@nosnap >/dev/null 2>&1"
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_unmount/
H A Dzfs_unmount.kshlib33 function do_unmount #cmd #opt #mnt #expect
36 typeset opt=$2
45 log_must zfs $cmd $opt $mnt
49 log_note "Successfully zfs $cmd $opt $mnt"
52 log_note "zfs $cmd $opt $mnt"
54 zfs $cmd $opt $mnt
57 log_fail "'zfs $cmd $opt $mnt' " \
H A Dzfs_unmount_008_neg.ksh101 for opt in "" "-f"; do
102 log_mustnot eval "zfs unmount $opt $ds >/dev/null 2>&1"
116 for opt in "" "-f"; do
117 log_mustnot eval "zfs unmount $opt $mpt >/dev/null 2>&1"
123 for opt in "" "-f"; do
124 log_mustnot eval "zfs unmount $opt >/dev/null 2>&1"
125 log_mustnot eval "zfs unmount $opt $fs $fs1 >/dev/null 2>&1"
130 for opt in "" "-f"; do
131 log_mustnot eval "zfs unmount $opt $fs1 >/dev/null 2>&1"
138 for opt i
[all...]
/illumos-gate/usr/src/cmd/bnu/
H A Dxqt.c64 char opt[100]; local
77 (void) sprintf(opt, "-s%s", rmtname);
79 opt[0] = '\0';
80 (void) execle(UUCICO, "UUCICO", "-r1", opt, (char *) 0, Env);
94 char opt[100]; local
98 (void) sprintf(opt, "-s%s", rmtname);
100 opt[0] = '\0';
131 (void) execle(UUXQT, "UUXQT", opt, (char *) 0, Env);
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_tcp.c56 #define GET_UINT32(opt) (((uint_t)*((uchar_t *)(opt) + 0) << 24) | \
57 ((uint_t)*((uchar_t *)(opt) + 1) << 16) | \
58 ((uint_t)*((uchar_t *)(opt) + 2) << 8) | \
59 ((uint_t)*((uchar_t *)(opt) + 3)))
224 print_tcpoptions(opt, optlen)
225 uchar_t *opt;
235 (void) sprintf(get_line((char *)&opt - dlc_header, 1),
240 (void) sprintf(get_line((char *)&opt - dlc_header, 1),
244 line = get_line((char *)&opt
339 print_tcpoptions_summary(uchar_t *opt, int optlen, char *line) argument
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_destroy/
H A Dzfs_destroy_001_pos.ksh53 # run 'zfs destroy $opt <dataset>'. 3rd, check the system status.
60 typeset opt=$1
71 if [[ $opt == -f ]]; then
85 case $opt in
89 *) log_fail "Incorrect option: '$opt'." ;;
99 if [[ $opt == *f* ]]; then
111 if [[ $opt == *f* ]]; then
122 if [[ $opt == *f* ]]; then
134 if [[ $opt == *f* ]]; then
153 log_must zfs destroy $opt
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/rsend/
H A Dsend-c_props.ksh50 for opt in "-p" "-R"; do
55 log_must eval "zfs send -c $opt $POOL@final > $BACKDIR/pool-final$opt"
56 log_must eval "zfs receive -d -F $POOL2 < $BACKDIR/pool-final$opt"
64 [[ $opt = "-p" ]] && cleanup
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Doptions.c172 static int process_option __P((option_t *opt, char **argv, int sline));
173 static int n_arguments __P((option_t *opt));
184 opt_t opt; member in struct:_hashentry_t
393 option_t *opt; local
407 opt = find_option(arg);
408 if (opt != NULL) {
409 int n = n_arguments(opt);
415 if (!process_option(opt, argv, 0))
457 option_t *opt; local
506 opt
631 option_t *opt; local
948 option_t *opt; local
999 option_t *opt; local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.ndpd/
H A Dtrace.c32 static void print_opt(struct nd_opt_hdr *opt, int len);
38 struct nd_opt_hdr *opt; local
47 opt = (struct nd_opt_hdr *)&rs[1];
48 print_opt(opt, len);
55 struct nd_opt_hdr *opt; local
77 opt = (struct nd_opt_hdr *)&ra[1];
78 print_opt(opt, len);
82 print_opt(struct nd_opt_hdr *opt, int len) argument
92 optlen = opt->nd_opt_len * 8;
97 switch (opt
[all...]
/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_trace.c74 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;
/illumos-gate/usr/src/lib/libnsl/nsl/
H A Dt_free.c48 struct t_optmgmt *opt; member in union:structptrs
72 if (p.call->opt.buf != NULL)
73 free(p.call->opt.buf);
80 p.opt = (struct t_optmgmt *)ptr;
81 if (p.opt->opt.buf != NULL)
82 free(p.opt->opt.buf);
97 if (p.udata->opt.buf != NULL)
98 free(p.udata->opt
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_unshare/
H A Dzfs_unshare_004_neg.ksh72 for opt in "" "-f"; do
73 log_mustnot eval "zfs unshare $opt $TESTPOOL/$TESTFS >/dev/null 2>&1"
74 log_mustnot eval "zfs unshare $opt $mpt >/dev/null 2>&1"
79 for opt in "" "-f"; do
80 log_mustnot eval "zfs unshare $opt $TESTPOOL/$TESTFS >/dev/null 2>&1"
81 log_mustnot eval "zfs unshare $opt $mpt >/dev/null 2>&1"

Completed in 150 milliseconds

1234567891011>>