Searched refs:opt (Results 251 - 275 of 1826) sorted by relevance

<<11121314151617181920>>

/freebsd-current/crypto/heimdal/kuser/
H A Dkgetcred.c87 krb5_get_creds_opt opt; local
124 ret = krb5_get_creds_opt_alloc(context, &opt);
135 krb5_get_creds_opt_set_enctype(context, opt, enctype);
142 krb5_get_creds_opt_set_impersonate(context, opt, impersonate);
143 krb5_get_creds_opt_add_options(context, opt, KRB5_GC_NO_STORE);
147 krb5_get_creds_opt_add_options(context, opt, KRB5_GC_NO_STORE);
150 krb5_get_creds_opt_add_options(context, opt, KRB5_GC_FORWARDABLE);
152 krb5_get_creds_opt_add_options(context, opt, KRB5_GC_NO_TRANSIT_CHECK);
154 krb5_get_creds_opt_add_options(context, opt, KRB5_GC_CANONICALIZE);
181 ret = krb5_get_creds_opt_set_ticket(context, opt,
[all...]
/freebsd-current/contrib/openpam/bin/pamtest/
H A Dpamtest.c280 opt_num_once(int opt, long *num, const char *arg) argument
288 "The -%c option expects a numeric argument\n", opt);
298 opt_str_once(int opt, const char **p, const char *arg) argument
302 fprintf(stderr, "The -%c option can only be used once\n", opt);
324 int opt; local
326 while ((opt = getopt(argc, argv, "dH:h:kMPsT:t:U:u:v")) != -1)
327 switch (opt) {
332 opt_str_once(opt, &rhost, optarg);
335 opt_str_once(opt, &host, optarg);
352 opt_num_once(opt,
[all...]
/freebsd-current/sbin/mount/
H A Dgetmntopts.c55 char *opt, *optbuf, *p; local
62 for (opt = optbuf; (opt = strtok(opt, ",")) != NULL; opt = NULL) {
64 if (opt[0] == 'n' && opt[1] == 'o') {
66 opt += 2;
74 p = strchr(opt, '=');
81 if (strncasecmp(opt,
[all...]
/freebsd-current/contrib/xz/src/xz/
H A Doptions.c34 /// opt=val,opt=val,opt=val
154 lzma_options_delta *opt = options; local
157 opt->dist = value;
198 lzma_options_bcj *opt = options; local
201 opt->start_offset = value;
254 lzma_options_lzma *opt = options; local
282 opt->dict_size = value;
286 opt
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dopt-debug.mk1 # $NetBSD: opt-debug.mk,v 1.5 2020/10/05 19:27:48 rillig Exp $
/freebsd-current/crypto/openssh/contrib/hpux/
H A Degd.rc28 WHAT_PATH=/opt/perl/bin/egd.pl
30 WHAT_LOG=/etc/opt/egd/egd.log
36 # and /opt.
/freebsd-current/contrib/ncurses/menu/
H A Dm_item_val.c66 if ((!(item->opt & O_SELECTABLE)) ||
67 (menu && (menu->opt & O_ONEVALUE)))
/freebsd-current/crypto/heimdal/kadmin/
H A Ddump.c41 dump(struct dump_options *opt, int argc, char **argv) argument
69 hdb_foreach(context, db, opt->decrypt_flag ? HDB_F_DECRYPT : 0,
/freebsd-current/crypto/heimdal/kpasswd/
H A Dkpasswd-generator.c93 krb5_get_init_creds_opt *opt; local
100 krb5_get_init_creds_opt_alloc (context, &opt);
101 krb5_get_init_creds_opt_set_tkt_life (opt, 300);
102 krb5_get_init_creds_opt_set_forwardable (opt, FALSE);
103 krb5_get_init_creds_opt_set_proxiable (opt, FALSE);
120 opt);
137 opt);
158 krb5_get_init_creds_opt_free(context, opt);
/freebsd-current/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DTCE.cpp15 using namespace llvm::opt;
37 bool TCEToolChain::isPIEDefault(const llvm::opt::ArgList &Args) const {
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_mount/
H A Dzfs_mount_011_neg.ksh67 for opt in "-o abc" "-O"; do
68 log_mustnot eval "zfs mount $opt /$fs >/dev/null 2>&1"
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_unmount/
H A Dzfs_unmount_005_pos.ksh65 typeset opt=$1
80 do_unmount "${cmd[i]}" "$opt" \
H A Dzfs_unmount_003_pos.ksh64 typeset opt=$1
77 do_unmount "${cmd[i]}" "$opt" \
H A Dzfs_unmount_004_pos.ksh64 typeset opt=$1
76 do_unmount "${cmd[i]}" "$opt" \
H A Dzfs_unmount_002_pos.ksh63 typeset opt=$1
75 do_unmount "${cmd[i]}" "$opt" \
/freebsd-current/sys/contrib/openzfs/lib/libspl/include/os/linux/sys/
H A Dmnttab.h77 static inline char *_sol_hasmntopt(struct mnttab *mnt, const char *opt) argument
83 return (hasmntopt(&mnt_new, opt));
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_inherit/
H A Dzfs_inherit_002_neg.ksh74 for opt in ${badopts[@]}; do
76 log_mustnot eval "zfs inherit $opt $prop $ds \
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_create/
H A Dzpool_create_014_neg.ksh82 for opt in options; do
83 log_mustnot zpool create $opt $TESTPOOL $TMP_FILE
H A Dzpool_create_015_neg.ksh82 for opt in "${opts[@]}"; do
83 log_mustnot zpool create $opt $TESTPOOL1 ${ZVOL_DEVDIR}/${vol_name}
/freebsd-current/contrib/openpam/bin/openpam_dump_policy/
H A Dopenpam_dump_policy.c72 char *modname, **opt, *p; local
87 for (opt = chain->optv; *opt; ++opt) {
89 for (p = *opt; *p; ++p) {
173 int i, opt; local
175 while ((opt = getopt(argc, argv, "d")) != -1)
176 switch (opt) {
/freebsd-current/tools/tools/fetchbench/
H A Dfetchbench48 while getopts "i:n:X" opt; do
49 case "$opt" in
/freebsd-current/usr.sbin/ppp/
H A Dtcpmss.c107 u_char *opt; local
121 for (olen = hlen - sizeof(struct tcphdr), opt = (u_char *)(tc + 1);
122 olen > 0; olen -= optlen, opt += optlen) {
123 if (*opt == TCPOPT_EOL)
125 else if (*opt == TCPOPT_NOP)
128 optlen = *(opt + 1);
131 if (*opt == TCPOPT_MAXSEG) {
134 mss = (u_int16_t *)(opt + 2);
/freebsd-current/usr.sbin/vigr/
H A Dvigr.sh39 while getopts d: opt ; do
40 case $opt in
/freebsd-current/tools/test/stress2/misc/
H A Dnewfs.sh53 for opt in -O1 -O2 -U -j; do
58 echo "newfs $opt -b $blocksize -f $fragsize"\
60 newfs $opt -b $blocksize -f $fragsize \
82 echo "Timed out in $opt"
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zfs_unmount/
H A Dzfs_unmount_003_pos.ksh73 typeset opt=$1
86 do_unmount "${cmd[i]}" "$opt" \

Completed in 222 milliseconds

<<11121314151617181920>>